forked from omise/omise-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list_types.go
367 lines (309 loc) · 9.85 KB
/
list_types.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
/* !!! DO NOT MODIFY !!!
*
* This file is auto-generated by internal/generator package.
*/
package omise
// AccountList represents the list structure returned by Omise's REST API that contains
// Account struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type AccountList struct {
List
Data []*Account `json:"data"`
}
// Find finds and returns Account with the given id. Returns nil if not found.
func (list *AccountList) Find(id string) *Account {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// BalanceList represents the list structure returned by Omise's REST API that contains
// Balance struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type BalanceList struct {
List
Data []*Balance `json:"data"`
}
// Find finds and returns Balance with the given id. Returns nil if not found.
func (list *BalanceList) Find(id string) *Balance {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// BankAccountList represents the list structure returned by Omise's REST API that contains
// BankAccount struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type BankAccountList struct {
List
Data []*BankAccount `json:"data"`
}
// Find finds and returns BankAccount with the given id. Returns nil if not found.
func (list *BankAccountList) Find(id string) *BankAccount {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// CardList represents the list structure returned by Omise's REST API that contains
// Card struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type CardList struct {
List
Data []*Card `json:"data"`
}
// Find finds and returns Card with the given id. Returns nil if not found.
func (list *CardList) Find(id string) *Card {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// ChargeList represents the list structure returned by Omise's REST API that contains
// Charge struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type ChargeList struct {
List
Data []*Charge `json:"data"`
}
// Find finds and returns Charge with the given id. Returns nil if not found.
func (list *ChargeList) Find(id string) *Charge {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// CustomerList represents the list structure returned by Omise's REST API that contains
// Customer struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type CustomerList struct {
List
Data []*Customer `json:"data"`
}
// Find finds and returns Customer with the given id. Returns nil if not found.
func (list *CustomerList) Find(id string) *Customer {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// DeletionList represents the list structure returned by Omise's REST API that contains
// Deletion struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type DeletionList struct {
List
Data []*Deletion `json:"data"`
}
// Find finds and returns Deletion with the given id. Returns nil if not found.
func (list *DeletionList) Find(id string) *Deletion {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// DisputeList represents the list structure returned by Omise's REST API that contains
// Dispute struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type DisputeList struct {
List
Data []*Dispute `json:"data"`
}
// Find finds and returns Dispute with the given id. Returns nil if not found.
func (list *DisputeList) Find(id string) *Dispute {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// DocumentList represents the list structure returned by Omise's REST API that contains
// Document struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type DocumentList struct {
List
Data []*Document `json:"data"`
}
// Find finds and returns Document with the given id. Returns nil if not found.
func (list *DocumentList) Find(id string) *Document {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// EventList represents the list structure returned by Omise's REST API that contains
// Event struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type EventList struct {
List
Data []*Event `json:"data"`
}
// Find finds and returns Event with the given id. Returns nil if not found.
func (list *EventList) Find(id string) *Event {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// LinkList represents the list structure returned by Omise's REST API that contains
// Link struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type LinkList struct {
List
Data []*Link `json:"data"`
}
// Find finds and returns Link with the given id. Returns nil if not found.
func (list *LinkList) Find(id string) *Link {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// OccurrenceList represents the list structure returned by Omise's REST API that contains
// Occurrence struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type OccurrenceList struct {
List
Data []*Occurrence `json:"data"`
}
// Find finds and returns Occurrence with the given id. Returns nil if not found.
func (list *OccurrenceList) Find(id string) *Occurrence {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// ReceiptList represents the list structure returned by Omise's REST API that contains
// Receipt struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type ReceiptList struct {
List
Data []*Receipt `json:"data"`
}
// Find finds and returns Receipt with the given id. Returns nil if not found.
func (list *ReceiptList) Find(id string) *Receipt {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// RecipientList represents the list structure returned by Omise's REST API that contains
// Recipient struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type RecipientList struct {
List
Data []*Recipient `json:"data"`
}
// Find finds and returns Recipient with the given id. Returns nil if not found.
func (list *RecipientList) Find(id string) *Recipient {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// RefundList represents the list structure returned by Omise's REST API that contains
// Refund struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type RefundList struct {
List
Data []*Refund `json:"data"`
}
// Find finds and returns Refund with the given id. Returns nil if not found.
func (list *RefundList) Find(id string) *Refund {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// ScheduleList represents the list structure returned by Omise's REST API that contains
// Schedule struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type ScheduleList struct {
List
Data []*Schedule `json:"data"`
}
// Find finds and returns Schedule with the given id. Returns nil if not found.
func (list *ScheduleList) Find(id string) *Schedule {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// TokenList represents the list structure returned by Omise's REST API that contains
// Token struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type TokenList struct {
List
Data []*Token `json:"data"`
}
// Find finds and returns Token with the given id. Returns nil if not found.
func (list *TokenList) Find(id string) *Token {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// TransactionList represents the list structure returned by Omise's REST API that contains
// Transaction struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type TransactionList struct {
List
Data []*Transaction `json:"data"`
}
// Find finds and returns Transaction with the given id. Returns nil if not found.
func (list *TransactionList) Find(id string) *Transaction {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}
// TransferList represents the list structure returned by Omise's REST API that contains
// Transfer struct as member elements. See the pagination and lists documentation at
// https://www.omise.co/api-pagination for more information.
type TransferList struct {
List
Data []*Transfer `json:"data"`
}
// Find finds and returns Transfer with the given id. Returns nil if not found.
func (list *TransferList) Find(id string) *Transfer {
for _, item := range list.Data {
if item.ID == id {
return item
}
}
return nil
}