-
Notifications
You must be signed in to change notification settings - Fork 27
/
model_payment_instrument.go
567 lines (486 loc) · 18.3 KB
/
model_payment_instrument.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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
/*
Configuration webhooks
API version: 2
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package configurationwebhook
import (
"encoding/json"
"github.com/adyen/adyen-go-api-library/v16/src/common"
)
// checks if the PaymentInstrument type satisfies the MappedNullable interface at compile time
var _ common.MappedNullable = &PaymentInstrument{}
// PaymentInstrument struct for PaymentInstrument
type PaymentInstrument struct {
// Contains optional, additional business account details. Returned when you create a payment instrument with `type` **bankAccount**.
// Deprecated since Configuration webhooks v2
// Please use `bankAccount` object instead
AdditionalBankAccountIdentifications []PaymentInstrumentAdditionalBankAccountIdentificationsInner `json:"additionalBankAccountIdentifications,omitempty"`
// The unique identifier of the [balance account](https://docs.adyen.com/api-explorer/#/balanceplatform/v1/post/balanceAccounts__resParam_id) associated with the payment instrument.
BalanceAccountId string `json:"balanceAccountId"`
BankAccount *BankAccountDetails `json:"bankAccount,omitempty"`
Card *Card `json:"card,omitempty"`
// Your description for the payment instrument, maximum 300 characters.
Description *string `json:"description,omitempty"`
// The unique identifier of the payment instrument.
Id string `json:"id"`
// The two-character [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code where the payment instrument is issued. For example, **NL** or **US**.
IssuingCountryCode string `json:"issuingCountryCode"`
// The unique identifier of the [payment instrument group](https://docs.adyen.com/api-explorer/#/balanceplatform/v1/post/paymentInstrumentGroups__resParam_id) to which the payment instrument belongs.
PaymentInstrumentGroupId *string `json:"paymentInstrumentGroupId,omitempty"`
// Your reference for the payment instrument, maximum 150 characters.
Reference *string `json:"reference,omitempty"`
// The status of the payment instrument. If a status is not specified when creating a payment instrument, it is set to **active** by default. However, there can be exceptions for cards based on the `card.formFactor` and the `issuingCountryCode`. For example, when issuing physical cards in the US, the default status is **inactive**. Possible values: * **active**: The payment instrument is active and can be used to make payments. * **inactive**: The payment instrument is inactive and cannot be used to make payments. * **suspended**: The payment instrument is suspended, either because it was stolen or lost. * **closed**: The payment instrument is permanently closed. This action cannot be undone.
Status *string `json:"status,omitempty"`
// The status comment provides additional information for the statusReason of the payment instrument.
StatusComment *string `json:"statusComment,omitempty"`
// The reason for the status of the payment instrument. Possible values: **accountClosure**, **damaged**, **endOfLife**, **expired**, **lost**, **stolen**, **suspectedFraud**, **transactionRule**, **other**. If the reason is **other**, you must also send the `statusComment` parameter describing the status change.
StatusReason *string `json:"statusReason,omitempty"`
// The type of payment instrument. Possible values: **card**, **bankAccount**.
Type string `json:"type"`
}
// NewPaymentInstrument instantiates a new PaymentInstrument object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewPaymentInstrument(balanceAccountId string, id string, issuingCountryCode string, type_ string) *PaymentInstrument {
this := PaymentInstrument{}
this.BalanceAccountId = balanceAccountId
this.Id = id
this.IssuingCountryCode = issuingCountryCode
this.Type = type_
return &this
}
// NewPaymentInstrumentWithDefaults instantiates a new PaymentInstrument object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewPaymentInstrumentWithDefaults() *PaymentInstrument {
this := PaymentInstrument{}
return &this
}
// GetAdditionalBankAccountIdentifications returns the AdditionalBankAccountIdentifications field value if set, zero value otherwise.
// Deprecated since Configuration webhooks v2
// Please use `bankAccount` object instead
func (o *PaymentInstrument) GetAdditionalBankAccountIdentifications() []PaymentInstrumentAdditionalBankAccountIdentificationsInner {
if o == nil || common.IsNil(o.AdditionalBankAccountIdentifications) {
var ret []PaymentInstrumentAdditionalBankAccountIdentificationsInner
return ret
}
return o.AdditionalBankAccountIdentifications
}
// GetAdditionalBankAccountIdentificationsOk returns a tuple with the AdditionalBankAccountIdentifications field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated since Configuration webhooks v2
// Please use `bankAccount` object instead
func (o *PaymentInstrument) GetAdditionalBankAccountIdentificationsOk() ([]PaymentInstrumentAdditionalBankAccountIdentificationsInner, bool) {
if o == nil || common.IsNil(o.AdditionalBankAccountIdentifications) {
return nil, false
}
return o.AdditionalBankAccountIdentifications, true
}
// HasAdditionalBankAccountIdentifications returns a boolean if a field has been set.
func (o *PaymentInstrument) HasAdditionalBankAccountIdentifications() bool {
if o != nil && !common.IsNil(o.AdditionalBankAccountIdentifications) {
return true
}
return false
}
// SetAdditionalBankAccountIdentifications gets a reference to the given []PaymentInstrumentAdditionalBankAccountIdentificationsInner and assigns it to the AdditionalBankAccountIdentifications field.
// Deprecated since Configuration webhooks v2
// Please use `bankAccount` object instead
func (o *PaymentInstrument) SetAdditionalBankAccountIdentifications(v []PaymentInstrumentAdditionalBankAccountIdentificationsInner) {
o.AdditionalBankAccountIdentifications = v
}
// GetBalanceAccountId returns the BalanceAccountId field value
func (o *PaymentInstrument) GetBalanceAccountId() string {
if o == nil {
var ret string
return ret
}
return o.BalanceAccountId
}
// GetBalanceAccountIdOk returns a tuple with the BalanceAccountId field value
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetBalanceAccountIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.BalanceAccountId, true
}
// SetBalanceAccountId sets field value
func (o *PaymentInstrument) SetBalanceAccountId(v string) {
o.BalanceAccountId = v
}
// GetBankAccount returns the BankAccount field value if set, zero value otherwise.
func (o *PaymentInstrument) GetBankAccount() BankAccountDetails {
if o == nil || common.IsNil(o.BankAccount) {
var ret BankAccountDetails
return ret
}
return *o.BankAccount
}
// GetBankAccountOk returns a tuple with the BankAccount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetBankAccountOk() (*BankAccountDetails, bool) {
if o == nil || common.IsNil(o.BankAccount) {
return nil, false
}
return o.BankAccount, true
}
// HasBankAccount returns a boolean if a field has been set.
func (o *PaymentInstrument) HasBankAccount() bool {
if o != nil && !common.IsNil(o.BankAccount) {
return true
}
return false
}
// SetBankAccount gets a reference to the given BankAccountDetails and assigns it to the BankAccount field.
func (o *PaymentInstrument) SetBankAccount(v BankAccountDetails) {
o.BankAccount = &v
}
// GetCard returns the Card field value if set, zero value otherwise.
func (o *PaymentInstrument) GetCard() Card {
if o == nil || common.IsNil(o.Card) {
var ret Card
return ret
}
return *o.Card
}
// GetCardOk returns a tuple with the Card field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetCardOk() (*Card, bool) {
if o == nil || common.IsNil(o.Card) {
return nil, false
}
return o.Card, true
}
// HasCard returns a boolean if a field has been set.
func (o *PaymentInstrument) HasCard() bool {
if o != nil && !common.IsNil(o.Card) {
return true
}
return false
}
// SetCard gets a reference to the given Card and assigns it to the Card field.
func (o *PaymentInstrument) SetCard(v Card) {
o.Card = &v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *PaymentInstrument) GetDescription() string {
if o == nil || common.IsNil(o.Description) {
var ret string
return ret
}
return *o.Description
}
// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetDescriptionOk() (*string, bool) {
if o == nil || common.IsNil(o.Description) {
return nil, false
}
return o.Description, true
}
// HasDescription returns a boolean if a field has been set.
func (o *PaymentInstrument) HasDescription() bool {
if o != nil && !common.IsNil(o.Description) {
return true
}
return false
}
// SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *PaymentInstrument) SetDescription(v string) {
o.Description = &v
}
// GetId returns the Id field value
func (o *PaymentInstrument) GetId() string {
if o == nil {
var ret string
return ret
}
return o.Id
}
// GetIdOk returns a tuple with the Id field value
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Id, true
}
// SetId sets field value
func (o *PaymentInstrument) SetId(v string) {
o.Id = v
}
// GetIssuingCountryCode returns the IssuingCountryCode field value
func (o *PaymentInstrument) GetIssuingCountryCode() string {
if o == nil {
var ret string
return ret
}
return o.IssuingCountryCode
}
// GetIssuingCountryCodeOk returns a tuple with the IssuingCountryCode field value
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetIssuingCountryCodeOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.IssuingCountryCode, true
}
// SetIssuingCountryCode sets field value
func (o *PaymentInstrument) SetIssuingCountryCode(v string) {
o.IssuingCountryCode = v
}
// GetPaymentInstrumentGroupId returns the PaymentInstrumentGroupId field value if set, zero value otherwise.
func (o *PaymentInstrument) GetPaymentInstrumentGroupId() string {
if o == nil || common.IsNil(o.PaymentInstrumentGroupId) {
var ret string
return ret
}
return *o.PaymentInstrumentGroupId
}
// GetPaymentInstrumentGroupIdOk returns a tuple with the PaymentInstrumentGroupId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetPaymentInstrumentGroupIdOk() (*string, bool) {
if o == nil || common.IsNil(o.PaymentInstrumentGroupId) {
return nil, false
}
return o.PaymentInstrumentGroupId, true
}
// HasPaymentInstrumentGroupId returns a boolean if a field has been set.
func (o *PaymentInstrument) HasPaymentInstrumentGroupId() bool {
if o != nil && !common.IsNil(o.PaymentInstrumentGroupId) {
return true
}
return false
}
// SetPaymentInstrumentGroupId gets a reference to the given string and assigns it to the PaymentInstrumentGroupId field.
func (o *PaymentInstrument) SetPaymentInstrumentGroupId(v string) {
o.PaymentInstrumentGroupId = &v
}
// GetReference returns the Reference field value if set, zero value otherwise.
func (o *PaymentInstrument) GetReference() string {
if o == nil || common.IsNil(o.Reference) {
var ret string
return ret
}
return *o.Reference
}
// GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetReferenceOk() (*string, bool) {
if o == nil || common.IsNil(o.Reference) {
return nil, false
}
return o.Reference, true
}
// HasReference returns a boolean if a field has been set.
func (o *PaymentInstrument) HasReference() bool {
if o != nil && !common.IsNil(o.Reference) {
return true
}
return false
}
// SetReference gets a reference to the given string and assigns it to the Reference field.
func (o *PaymentInstrument) SetReference(v string) {
o.Reference = &v
}
// GetStatus returns the Status field value if set, zero value otherwise.
func (o *PaymentInstrument) GetStatus() string {
if o == nil || common.IsNil(o.Status) {
var ret string
return ret
}
return *o.Status
}
// GetStatusOk returns a tuple with the Status field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetStatusOk() (*string, bool) {
if o == nil || common.IsNil(o.Status) {
return nil, false
}
return o.Status, true
}
// HasStatus returns a boolean if a field has been set.
func (o *PaymentInstrument) HasStatus() bool {
if o != nil && !common.IsNil(o.Status) {
return true
}
return false
}
// SetStatus gets a reference to the given string and assigns it to the Status field.
func (o *PaymentInstrument) SetStatus(v string) {
o.Status = &v
}
// GetStatusComment returns the StatusComment field value if set, zero value otherwise.
func (o *PaymentInstrument) GetStatusComment() string {
if o == nil || common.IsNil(o.StatusComment) {
var ret string
return ret
}
return *o.StatusComment
}
// GetStatusCommentOk returns a tuple with the StatusComment field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetStatusCommentOk() (*string, bool) {
if o == nil || common.IsNil(o.StatusComment) {
return nil, false
}
return o.StatusComment, true
}
// HasStatusComment returns a boolean if a field has been set.
func (o *PaymentInstrument) HasStatusComment() bool {
if o != nil && !common.IsNil(o.StatusComment) {
return true
}
return false
}
// SetStatusComment gets a reference to the given string and assigns it to the StatusComment field.
func (o *PaymentInstrument) SetStatusComment(v string) {
o.StatusComment = &v
}
// GetStatusReason returns the StatusReason field value if set, zero value otherwise.
func (o *PaymentInstrument) GetStatusReason() string {
if o == nil || common.IsNil(o.StatusReason) {
var ret string
return ret
}
return *o.StatusReason
}
// GetStatusReasonOk returns a tuple with the StatusReason field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetStatusReasonOk() (*string, bool) {
if o == nil || common.IsNil(o.StatusReason) {
return nil, false
}
return o.StatusReason, true
}
// HasStatusReason returns a boolean if a field has been set.
func (o *PaymentInstrument) HasStatusReason() bool {
if o != nil && !common.IsNil(o.StatusReason) {
return true
}
return false
}
// SetStatusReason gets a reference to the given string and assigns it to the StatusReason field.
func (o *PaymentInstrument) SetStatusReason(v string) {
o.StatusReason = &v
}
// GetType returns the Type field value
func (o *PaymentInstrument) GetType() string {
if o == nil {
var ret string
return ret
}
return o.Type
}
// GetTypeOk returns a tuple with the Type field value
// and a boolean to check if the value has been set.
func (o *PaymentInstrument) GetTypeOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Type, true
}
// SetType sets field value
func (o *PaymentInstrument) SetType(v string) {
o.Type = v
}
func (o PaymentInstrument) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o PaymentInstrument) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !common.IsNil(o.AdditionalBankAccountIdentifications) {
toSerialize["additionalBankAccountIdentifications"] = o.AdditionalBankAccountIdentifications
}
toSerialize["balanceAccountId"] = o.BalanceAccountId
if !common.IsNil(o.BankAccount) {
toSerialize["bankAccount"] = o.BankAccount
}
if !common.IsNil(o.Card) {
toSerialize["card"] = o.Card
}
if !common.IsNil(o.Description) {
toSerialize["description"] = o.Description
}
toSerialize["id"] = o.Id
toSerialize["issuingCountryCode"] = o.IssuingCountryCode
if !common.IsNil(o.PaymentInstrumentGroupId) {
toSerialize["paymentInstrumentGroupId"] = o.PaymentInstrumentGroupId
}
if !common.IsNil(o.Reference) {
toSerialize["reference"] = o.Reference
}
if !common.IsNil(o.Status) {
toSerialize["status"] = o.Status
}
if !common.IsNil(o.StatusComment) {
toSerialize["statusComment"] = o.StatusComment
}
if !common.IsNil(o.StatusReason) {
toSerialize["statusReason"] = o.StatusReason
}
toSerialize["type"] = o.Type
return toSerialize, nil
}
type NullablePaymentInstrument struct {
value *PaymentInstrument
isSet bool
}
func (v NullablePaymentInstrument) Get() *PaymentInstrument {
return v.value
}
func (v *NullablePaymentInstrument) Set(val *PaymentInstrument) {
v.value = val
v.isSet = true
}
func (v NullablePaymentInstrument) IsSet() bool {
return v.isSet
}
func (v *NullablePaymentInstrument) Unset() {
v.value = nil
v.isSet = false
}
func NewNullablePaymentInstrument(val *PaymentInstrument) *NullablePaymentInstrument {
return &NullablePaymentInstrument{value: val, isSet: true}
}
func (v NullablePaymentInstrument) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullablePaymentInstrument) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
func (o *PaymentInstrument) isValidStatus() bool {
var allowedEnumValues = []string{"active", "closed", "inactive", "suspended"}
for _, allowed := range allowedEnumValues {
if o.GetStatus() == allowed {
return true
}
}
return false
}
func (o *PaymentInstrument) isValidStatusReason() bool {
var allowedEnumValues = []string{"accountClosure", "damaged", "endOfLife", "expired", "lost", "other", "stolen", "suspectedFraud", "transactionRule"}
for _, allowed := range allowedEnumValues {
if o.GetStatusReason() == allowed {
return true
}
}
return false
}
func (o *PaymentInstrument) isValidType() bool {
var allowedEnumValues = []string{"bankAccount", "card"}
for _, allowed := range allowedEnumValues {
if o.GetType() == allowed {
return true
}
}
return false
}