-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresponse.go
82 lines (76 loc) · 2.6 KB
/
response.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package ammana
type SharedMeta struct {
Hostname string `json:"hostname"`
ClientIP string `json:"client_ip"`
}
type GenerateAccessTokenResponse struct {
Data struct {
AccessToken string `json:"access_token"`
TokenType string `json:"token_type"`
ExpiresIn int `json:"expires_in"`
} `json:"data"`
Meta SharedMeta `json:"meta"`
Message string `json:"message"`
Type string `json:"type"`
}
type OrderResponse struct {
Data struct {
Url string `json:"url"`
ExpiresIn int `json:"expires_in"`
} `json:"data"`
Meta SharedMeta `json:"meta"`
Message string `json:"message"`
Type string `json:"type"`
}
type GetCardDetailResponse struct {
Data struct {
ID string `json:"id"`
Status string `json:"status"`
LimitAmount int `json:"limit_amount"`
UsageAmount int `json:"usage_amount"`
AvailableAmount int `json:"available_amount"`
} `json:"data"`
Meta SharedMeta `json:"meta"`
Message string `json:"message"`
Type string `json:"type"`
}
type GetPaymentDetailResponse struct {
Data struct {
TransactionId string `json:"transaction_id"`
Status string `json:"status"`
InvoiceCode string `json:"invoice_code"`
Total int `json:"total"`
CreatedAt string `json:"created_at"`
PaidAt string `json:"paid_at"`
} `json:"data"`
Meta SharedMeta `json:"meta"`
Message string `json:"message"`
Type string `json:"type"`
}
type SetVoidPaymentResponse struct {
Data struct {
TransactionId string `json:"transaction_id"`
Status string `json:"status"`
InvoiceCode string `json:"invoice_code"`
Total int `json:"total"`
CreatedAt string `json:"created_at"`
VoidAt string `json:"void_at"`
} `json:"data"`
Meta SharedMeta `json:"meta"`
Message string `json:"message"`
Type string `json:"type"`
}
type SetSettlePaymentResponse struct {
Data struct {
TransactionId string `json:"transaction_id"`
Status string `json:"status"`
InvoiceCode string `json:"invoice_code"`
Total int `json:"total"`
CreatedAt string `json:"created_at"`
PaidAt string `json:"paid_at"`
SettledAt string `json:"settled_at"`
} `json:"data"`
Meta SharedMeta `json:"meta"`
Message string `json:"message"`
Type string `json:"type"`
}