forked from RevenueMonster/rm-go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.go
253 lines (243 loc) · 8.87 KB
/
model.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
package sdk
import "time"
// PaymentTransactionQRCode :
type PaymentTransactionQRCode struct {
Store struct {
ID string `json:"id"`
Name string `json:"name"`
AddressLine1 string `json:"addressLine1"`
AddressLine2 string `json:"addressLine2"`
PostCode string `json:"postCode"`
City string `json:"city"`
State string `json:"state"`
Country string `json:"country"`
CountryCode string `json:"countryCode"`
PhoneNumber string `json:"phoneNumber"`
GeoLocation struct {
Latitude float64 `json:"latitude"`
Longitude float64 `json:"longitude"`
} `json:"geoLocation"`
Status string `json:"status"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
} `json:"store"`
Type string `json:"type"`
IsPreFillAmount bool `json:"isPreFillAmount"`
CurrencyType string `json:"currencyType"`
Amount uint64 `json:"amount"`
Platform string `json:"platform"`
Method []string `json:"method"`
Expiry struct {
Type string `json:"type"`
Day int `json:"day"`
ExpiredAt time.Time `json:"expiredAt"`
} `json:"expiry"`
Code string `json:"code"`
Status string `json:"status"`
QrCodeURL string `json:"qrCodeUrl"`
RedirectURL string `json:"redirectUrl"`
Order struct {
Title string `json:"title"`
Detail string `json:"detail"`
} `json:"order"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
// PaymentTransaction :
type PaymentTransaction struct {
Store struct {
ID string `json:"id"`
Name string `json:"name"`
AddressLine1 string `json:"addressLine1"`
AddressLine2 string `json:"addressLine2"`
PostCode string `json:"postCode"`
City string `json:"city"`
State string `json:"state"`
Country string `json:"country"`
CountryCode string `json:"countryCode"`
PhoneNumber string `json:"phoneNumber"`
GeoLocation struct {
Latitude float64 `json:"latitude"`
Longitude float64 `json:"longitude"`
} `json:"geoLocation"`
Status string `json:"status"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
} `json:"store"`
TransactionID string `json:"transactionId"`
ReferenceID string `json:"referenceId"`
Order struct {
ID string `json:"id"`
Title string `json:"title"`
Detail string `json:"detail"`
AdditionalData string `json:"additionalData"`
Amount int `json:"amount"`
} `json:"order"`
CurrencyType string `json:"currencyType"`
BalanceAmount int `json:"balanceAmount"`
Platform string `json:"platform"`
Method string `json:"method"`
Payee struct {
UserID string `json:"userId"`
SubUserID string `json:"subUserId"`
} `json:"payee"`
Error struct {
Code string `json:"code"`
Message string `json:"message"`
} `json:"error"`
TransactionAt time.Time `json:"transactionAt"`
Type string `json:"type"`
Status string `json:"status"`
Region string `json:"region"`
ExtraInfo struct {
ExtraFee []struct {
Type string `json:"type"`
ReferenceId string `json:"referenceId"`
Amount uint `json:"amount"`
IsRefundAllowed bool `json:"isRefundAllowed"`
FeeType string `json:"feeType"`
FeeValue uint `json:"feeValue"`
IsIncludedMDR bool `json:"isIncludedMDR"`
} `json:"extraFee"`
} `json:"extraInfo"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
// Merchant :
type Merchant struct {
ID string `json:"id"`
BrandName string `json:"brandName"`
CompanyName string `json:"companyName"`
CompanyType string `json:"companyType"`
CompanyLogoURL string `json:"companyLogoUrl"`
RegistrationNumber string `json:"registrationNumber"`
BusinessCategory string `json:"businessCategory"`
BusinessScope string `json:"businessScope"`
SourceOfFunds string `json:"sourceOfFunds"`
CustomerOrigin string `json:"customerOrigin"`
WebsiteURL string `json:"websiteUrl"`
EstablishedAt time.Time `json:"establishedAt"`
CountryCode string `json:"countryCode"`
PhoneNumber string `json:"phoneNumber"`
AddressLine1 string `json:"addressLine1"`
AddressLine2 string `json:"addressLine2"`
Postcode string `json:"postcode"`
City string `json:"city"`
State string `json:"state"`
Country string `json:"country"`
InvoiceAddress struct {
AddressLine1 string `json:"addressLine1"`
AddressLine2 string `json:"addressLine2"`
Postcode string `json:"postcode"`
City string `json:"city"`
State string `json:"state"`
Country string `json:"country"`
} `json:"invoiceAddress"`
IsActive bool `json:"isActive"`
Status string `json:"status"`
IsMasterMerchant bool `json:"isMasterMerchant"`
MasterMerchantID string `json:"masterMerchantId"`
IsPartner bool `json:"isPartner"`
PartnerID string `json:"partnerId"`
GstNo string `json:"gstNo"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
// MerchantSubscription :
type MerchantSubscription struct {
ID uint64 `json:"id"`
GracePeriod uint64 `json:"gracePeriod"`
ExpiryAt time.Time `json:"expiryAt"`
TerminateAt time.Time `json:"terminateAt"`
Status string `json:"status"`
}
// Store :
type Store struct {
ID string `json:"id"`
Name string `json:"name"`
AddressLine1 string `json:"addressLine1"`
AddressLine2 string `json:"addressLine2"`
PostCode string `json:"postCode"`
City string `json:"city"`
State string `json:"state"`
Country string `json:"country"`
CountryCode string `json:"countryCode"`
PhoneNumber string `json:"phoneNumber"`
GeoLocation struct {
Latitude float64 `json:"latitude"`
Longitude float64 `json:"longitude"`
} `json:"geoLocation"`
Status string `json:"status"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
// User :
type User struct {
ID string `json:"id"`
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
CountryCode string `json:"countryCode"`
PhoneNumber string `json:"phoneNumber"`
Email string `json:"email"`
AvatarURL string `json:"avatarUrl"`
Status string `json:"status"`
StoreID string `json:"storeId"`
IsActive bool `json:"isActive"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
// Voucher :
type Voucher struct {
Key string `json:"key"`
Label string `json:"label"`
VoucherBatchKey string `json:"voucherBatchKey"`
Type string `json:"type"`
Amount int `json:"amount"`
DiscountRate int `json:"discountRate"`
MinimumSpendAmount int `json:"minimumSpendAmount"`
Origin string `json:"origin"`
ImageURL string `json:"imageUrl"`
AssignedAt time.Time `json:"assignedAt"`
QrURL string `json:"qrUrl"`
Code string `json:"code"`
IsShipping bool `json:"isShipping"`
Address string `json:"address"`
Expiry struct {
Type string `json:"type"`
Day int `json:"day"`
ExpiredAt time.Time `json:"expiredAt"`
} `json:"expiry"`
UsedAt time.Time `json:"usedAt"`
RedeemedAt time.Time `json:"redeemedAt"`
IsDeviceRedeem bool `json:"isDeviceRedeem"`
Status string `json:"status"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
// VoucherBatch :
type VoucherBatch struct {
ID string `json:"id"`
Key string `json:"key"`
Label string `json:"label"`
Type string `json:"type"`
Amount int `json:"amount"`
DiscountRate int `json:"discountRate"`
MinimumSpendAmount int `json:"minimumSpendAmount"`
ImageURL string `json:"imageUrl"`
Quantity int `json:"quantity"`
BalanceQuantity int `json:"balanceQuantity"`
UsedQuantity int `json:"usedQuantity"`
Status string `json:"status"`
Expiry struct {
Type string `json:"type"`
Day int `json:"day"`
ExpiredAt time.Time `json:"expiredAt"`
} `json:"expiry"`
Origin string `json:"origin"`
IsShipping bool `json:"isShipping"`
IsStatic bool `json:"isStatic"`
StaticCode string `json:"staticCode"`
IsDeviceRedeem bool `json:"isDeviceRedeem"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}