-
Notifications
You must be signed in to change notification settings - Fork 28
/
model_transaction.go
669 lines (574 loc) · 20.7 KB
/
model_transaction.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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
/*
* Adyen for Platforms: Notifications
*
* The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification. For more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).
*
* API version: 6
* Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package platformsnotificationevents
import (
"encoding/json"
"time"
)
// Transaction struct for Transaction
type Transaction struct {
Amount *Amount `json:"amount,omitempty"`
BankAccountDetail *BankAccountDetail `json:"bankAccountDetail,omitempty"`
// The merchant reference of a related capture.
CaptureMerchantReference *string `json:"captureMerchantReference,omitempty"`
// The psp reference of a related capture.
CapturePspReference *string `json:"capturePspReference,omitempty"`
// The date on which the transaction was performed.
CreationDate *time.Time `json:"creationDate,omitempty"`
// A description of the transaction.
Description *string `json:"description,omitempty"`
// The code of the account to which funds were credited during an outgoing fund transfer.
DestinationAccountCode *string `json:"destinationAccountCode,omitempty"`
// The psp reference of the related dispute.
DisputePspReference *string `json:"disputePspReference,omitempty"`
// The reason code of a dispute.
DisputeReasonCode *string `json:"disputeReasonCode,omitempty"`
// The merchant reference of a transaction.
MerchantReference *string `json:"merchantReference,omitempty"`
// The psp reference of the related authorisation or transfer.
PaymentPspReference *string `json:"paymentPspReference,omitempty"`
// The psp reference of the related payout.
PayoutPspReference *string `json:"payoutPspReference,omitempty"`
// The psp reference of a transaction.
PspReference *string `json:"pspReference,omitempty"`
// The code of the account from which funds were debited during an incoming fund transfer.
SourceAccountCode *string `json:"sourceAccountCode,omitempty"`
// The status of the transaction. >Permitted values: `PendingCredit`, `CreditFailed`, `CreditClosed`, `CreditSuspended`, `Credited`, `Converted`, `PendingDebit`, `DebitFailed`, `Debited`, `DebitReversedReceived`, `DebitedReversed`, `ChargebackReceived`, `Chargeback`, `ChargebackReversedReceived`, `ChargebackReversed`, `Payout`, `PayoutReversed`, `FundTransfer`, `PendingFundTransfer`, `ManualCorrected`.
TransactionStatus *string `json:"transactionStatus,omitempty"`
// The transfer code of the transaction.
TransferCode *string `json:"transferCode,omitempty"`
}
// NewTransaction instantiates a new Transaction 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 NewTransaction() *Transaction {
this := Transaction{}
return &this
}
// NewTransactionWithDefaults instantiates a new Transaction 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 NewTransactionWithDefaults() *Transaction {
this := Transaction{}
return &this
}
// GetAmount returns the Amount field value if set, zero value otherwise.
func (o *Transaction) GetAmount() Amount {
if o == nil || o.Amount == nil {
var ret Amount
return ret
}
return *o.Amount
}
// GetAmountOk returns a tuple with the Amount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetAmountOk() (*Amount, bool) {
if o == nil || o.Amount == nil {
return nil, false
}
return o.Amount, true
}
// HasAmount returns a boolean if a field has been set.
func (o *Transaction) HasAmount() bool {
if o != nil && o.Amount != nil {
return true
}
return false
}
// SetAmount gets a reference to the given Amount and assigns it to the Amount field.
func (o *Transaction) SetAmount(v Amount) {
o.Amount = &v
}
// GetBankAccountDetail returns the BankAccountDetail field value if set, zero value otherwise.
func (o *Transaction) GetBankAccountDetail() BankAccountDetail {
if o == nil || o.BankAccountDetail == nil {
var ret BankAccountDetail
return ret
}
return *o.BankAccountDetail
}
// GetBankAccountDetailOk returns a tuple with the BankAccountDetail field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetBankAccountDetailOk() (*BankAccountDetail, bool) {
if o == nil || o.BankAccountDetail == nil {
return nil, false
}
return o.BankAccountDetail, true
}
// HasBankAccountDetail returns a boolean if a field has been set.
func (o *Transaction) HasBankAccountDetail() bool {
if o != nil && o.BankAccountDetail != nil {
return true
}
return false
}
// SetBankAccountDetail gets a reference to the given BankAccountDetail and assigns it to the BankAccountDetail field.
func (o *Transaction) SetBankAccountDetail(v BankAccountDetail) {
o.BankAccountDetail = &v
}
// GetCaptureMerchantReference returns the CaptureMerchantReference field value if set, zero value otherwise.
func (o *Transaction) GetCaptureMerchantReference() string {
if o == nil || o.CaptureMerchantReference == nil {
var ret string
return ret
}
return *o.CaptureMerchantReference
}
// GetCaptureMerchantReferenceOk returns a tuple with the CaptureMerchantReference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetCaptureMerchantReferenceOk() (*string, bool) {
if o == nil || o.CaptureMerchantReference == nil {
return nil, false
}
return o.CaptureMerchantReference, true
}
// HasCaptureMerchantReference returns a boolean if a field has been set.
func (o *Transaction) HasCaptureMerchantReference() bool {
if o != nil && o.CaptureMerchantReference != nil {
return true
}
return false
}
// SetCaptureMerchantReference gets a reference to the given string and assigns it to the CaptureMerchantReference field.
func (o *Transaction) SetCaptureMerchantReference(v string) {
o.CaptureMerchantReference = &v
}
// GetCapturePspReference returns the CapturePspReference field value if set, zero value otherwise.
func (o *Transaction) GetCapturePspReference() string {
if o == nil || o.CapturePspReference == nil {
var ret string
return ret
}
return *o.CapturePspReference
}
// GetCapturePspReferenceOk returns a tuple with the CapturePspReference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetCapturePspReferenceOk() (*string, bool) {
if o == nil || o.CapturePspReference == nil {
return nil, false
}
return o.CapturePspReference, true
}
// HasCapturePspReference returns a boolean if a field has been set.
func (o *Transaction) HasCapturePspReference() bool {
if o != nil && o.CapturePspReference != nil {
return true
}
return false
}
// SetCapturePspReference gets a reference to the given string and assigns it to the CapturePspReference field.
func (o *Transaction) SetCapturePspReference(v string) {
o.CapturePspReference = &v
}
// GetCreationDate returns the CreationDate field value if set, zero value otherwise.
func (o *Transaction) GetCreationDate() time.Time {
if o == nil || o.CreationDate == nil {
var ret time.Time
return ret
}
return *o.CreationDate
}
// GetCreationDateOk returns a tuple with the CreationDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetCreationDateOk() (*time.Time, bool) {
if o == nil || o.CreationDate == nil {
return nil, false
}
return o.CreationDate, true
}
// HasCreationDate returns a boolean if a field has been set.
func (o *Transaction) HasCreationDate() bool {
if o != nil && o.CreationDate != nil {
return true
}
return false
}
// SetCreationDate gets a reference to the given time.Time and assigns it to the CreationDate field.
func (o *Transaction) SetCreationDate(v time.Time) {
o.CreationDate = &v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *Transaction) GetDescription() string {
if o == nil || o.Description == nil {
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 *Transaction) GetDescriptionOk() (*string, bool) {
if o == nil || o.Description == nil {
return nil, false
}
return o.Description, true
}
// HasDescription returns a boolean if a field has been set.
func (o *Transaction) HasDescription() bool {
if o != nil && o.Description != nil {
return true
}
return false
}
// SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *Transaction) SetDescription(v string) {
o.Description = &v
}
// GetDestinationAccountCode returns the DestinationAccountCode field value if set, zero value otherwise.
func (o *Transaction) GetDestinationAccountCode() string {
if o == nil || o.DestinationAccountCode == nil {
var ret string
return ret
}
return *o.DestinationAccountCode
}
// GetDestinationAccountCodeOk returns a tuple with the DestinationAccountCode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetDestinationAccountCodeOk() (*string, bool) {
if o == nil || o.DestinationAccountCode == nil {
return nil, false
}
return o.DestinationAccountCode, true
}
// HasDestinationAccountCode returns a boolean if a field has been set.
func (o *Transaction) HasDestinationAccountCode() bool {
if o != nil && o.DestinationAccountCode != nil {
return true
}
return false
}
// SetDestinationAccountCode gets a reference to the given string and assigns it to the DestinationAccountCode field.
func (o *Transaction) SetDestinationAccountCode(v string) {
o.DestinationAccountCode = &v
}
// GetDisputePspReference returns the DisputePspReference field value if set, zero value otherwise.
func (o *Transaction) GetDisputePspReference() string {
if o == nil || o.DisputePspReference == nil {
var ret string
return ret
}
return *o.DisputePspReference
}
// GetDisputePspReferenceOk returns a tuple with the DisputePspReference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetDisputePspReferenceOk() (*string, bool) {
if o == nil || o.DisputePspReference == nil {
return nil, false
}
return o.DisputePspReference, true
}
// HasDisputePspReference returns a boolean if a field has been set.
func (o *Transaction) HasDisputePspReference() bool {
if o != nil && o.DisputePspReference != nil {
return true
}
return false
}
// SetDisputePspReference gets a reference to the given string and assigns it to the DisputePspReference field.
func (o *Transaction) SetDisputePspReference(v string) {
o.DisputePspReference = &v
}
// GetDisputeReasonCode returns the DisputeReasonCode field value if set, zero value otherwise.
func (o *Transaction) GetDisputeReasonCode() string {
if o == nil || o.DisputeReasonCode == nil {
var ret string
return ret
}
return *o.DisputeReasonCode
}
// GetDisputeReasonCodeOk returns a tuple with the DisputeReasonCode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetDisputeReasonCodeOk() (*string, bool) {
if o == nil || o.DisputeReasonCode == nil {
return nil, false
}
return o.DisputeReasonCode, true
}
// HasDisputeReasonCode returns a boolean if a field has been set.
func (o *Transaction) HasDisputeReasonCode() bool {
if o != nil && o.DisputeReasonCode != nil {
return true
}
return false
}
// SetDisputeReasonCode gets a reference to the given string and assigns it to the DisputeReasonCode field.
func (o *Transaction) SetDisputeReasonCode(v string) {
o.DisputeReasonCode = &v
}
// GetMerchantReference returns the MerchantReference field value if set, zero value otherwise.
func (o *Transaction) GetMerchantReference() string {
if o == nil || o.MerchantReference == nil {
var ret string
return ret
}
return *o.MerchantReference
}
// GetMerchantReferenceOk returns a tuple with the MerchantReference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetMerchantReferenceOk() (*string, bool) {
if o == nil || o.MerchantReference == nil {
return nil, false
}
return o.MerchantReference, true
}
// HasMerchantReference returns a boolean if a field has been set.
func (o *Transaction) HasMerchantReference() bool {
if o != nil && o.MerchantReference != nil {
return true
}
return false
}
// SetMerchantReference gets a reference to the given string and assigns it to the MerchantReference field.
func (o *Transaction) SetMerchantReference(v string) {
o.MerchantReference = &v
}
// GetPaymentPspReference returns the PaymentPspReference field value if set, zero value otherwise.
func (o *Transaction) GetPaymentPspReference() string {
if o == nil || o.PaymentPspReference == nil {
var ret string
return ret
}
return *o.PaymentPspReference
}
// GetPaymentPspReferenceOk returns a tuple with the PaymentPspReference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetPaymentPspReferenceOk() (*string, bool) {
if o == nil || o.PaymentPspReference == nil {
return nil, false
}
return o.PaymentPspReference, true
}
// HasPaymentPspReference returns a boolean if a field has been set.
func (o *Transaction) HasPaymentPspReference() bool {
if o != nil && o.PaymentPspReference != nil {
return true
}
return false
}
// SetPaymentPspReference gets a reference to the given string and assigns it to the PaymentPspReference field.
func (o *Transaction) SetPaymentPspReference(v string) {
o.PaymentPspReference = &v
}
// GetPayoutPspReference returns the PayoutPspReference field value if set, zero value otherwise.
func (o *Transaction) GetPayoutPspReference() string {
if o == nil || o.PayoutPspReference == nil {
var ret string
return ret
}
return *o.PayoutPspReference
}
// GetPayoutPspReferenceOk returns a tuple with the PayoutPspReference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetPayoutPspReferenceOk() (*string, bool) {
if o == nil || o.PayoutPspReference == nil {
return nil, false
}
return o.PayoutPspReference, true
}
// HasPayoutPspReference returns a boolean if a field has been set.
func (o *Transaction) HasPayoutPspReference() bool {
if o != nil && o.PayoutPspReference != nil {
return true
}
return false
}
// SetPayoutPspReference gets a reference to the given string and assigns it to the PayoutPspReference field.
func (o *Transaction) SetPayoutPspReference(v string) {
o.PayoutPspReference = &v
}
// GetPspReference returns the PspReference field value if set, zero value otherwise.
func (o *Transaction) GetPspReference() string {
if o == nil || o.PspReference == nil {
var ret string
return ret
}
return *o.PspReference
}
// GetPspReferenceOk returns a tuple with the PspReference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetPspReferenceOk() (*string, bool) {
if o == nil || o.PspReference == nil {
return nil, false
}
return o.PspReference, true
}
// HasPspReference returns a boolean if a field has been set.
func (o *Transaction) HasPspReference() bool {
if o != nil && o.PspReference != nil {
return true
}
return false
}
// SetPspReference gets a reference to the given string and assigns it to the PspReference field.
func (o *Transaction) SetPspReference(v string) {
o.PspReference = &v
}
// GetSourceAccountCode returns the SourceAccountCode field value if set, zero value otherwise.
func (o *Transaction) GetSourceAccountCode() string {
if o == nil || o.SourceAccountCode == nil {
var ret string
return ret
}
return *o.SourceAccountCode
}
// GetSourceAccountCodeOk returns a tuple with the SourceAccountCode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetSourceAccountCodeOk() (*string, bool) {
if o == nil || o.SourceAccountCode == nil {
return nil, false
}
return o.SourceAccountCode, true
}
// HasSourceAccountCode returns a boolean if a field has been set.
func (o *Transaction) HasSourceAccountCode() bool {
if o != nil && o.SourceAccountCode != nil {
return true
}
return false
}
// SetSourceAccountCode gets a reference to the given string and assigns it to the SourceAccountCode field.
func (o *Transaction) SetSourceAccountCode(v string) {
o.SourceAccountCode = &v
}
// GetTransactionStatus returns the TransactionStatus field value if set, zero value otherwise.
func (o *Transaction) GetTransactionStatus() string {
if o == nil || o.TransactionStatus == nil {
var ret string
return ret
}
return *o.TransactionStatus
}
// GetTransactionStatusOk returns a tuple with the TransactionStatus field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetTransactionStatusOk() (*string, bool) {
if o == nil || o.TransactionStatus == nil {
return nil, false
}
return o.TransactionStatus, true
}
// HasTransactionStatus returns a boolean if a field has been set.
func (o *Transaction) HasTransactionStatus() bool {
if o != nil && o.TransactionStatus != nil {
return true
}
return false
}
// SetTransactionStatus gets a reference to the given string and assigns it to the TransactionStatus field.
func (o *Transaction) SetTransactionStatus(v string) {
o.TransactionStatus = &v
}
// GetTransferCode returns the TransferCode field value if set, zero value otherwise.
func (o *Transaction) GetTransferCode() string {
if o == nil || o.TransferCode == nil {
var ret string
return ret
}
return *o.TransferCode
}
// GetTransferCodeOk returns a tuple with the TransferCode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Transaction) GetTransferCodeOk() (*string, bool) {
if o == nil || o.TransferCode == nil {
return nil, false
}
return o.TransferCode, true
}
// HasTransferCode returns a boolean if a field has been set.
func (o *Transaction) HasTransferCode() bool {
if o != nil && o.TransferCode != nil {
return true
}
return false
}
// SetTransferCode gets a reference to the given string and assigns it to the TransferCode field.
func (o *Transaction) SetTransferCode(v string) {
o.TransferCode = &v
}
func (o Transaction) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Amount != nil {
toSerialize["amount"] = o.Amount
}
if o.BankAccountDetail != nil {
toSerialize["bankAccountDetail"] = o.BankAccountDetail
}
if o.CaptureMerchantReference != nil {
toSerialize["captureMerchantReference"] = o.CaptureMerchantReference
}
if o.CapturePspReference != nil {
toSerialize["capturePspReference"] = o.CapturePspReference
}
if o.CreationDate != nil {
toSerialize["creationDate"] = o.CreationDate
}
if o.Description != nil {
toSerialize["description"] = o.Description
}
if o.DestinationAccountCode != nil {
toSerialize["destinationAccountCode"] = o.DestinationAccountCode
}
if o.DisputePspReference != nil {
toSerialize["disputePspReference"] = o.DisputePspReference
}
if o.DisputeReasonCode != nil {
toSerialize["disputeReasonCode"] = o.DisputeReasonCode
}
if o.MerchantReference != nil {
toSerialize["merchantReference"] = o.MerchantReference
}
if o.PaymentPspReference != nil {
toSerialize["paymentPspReference"] = o.PaymentPspReference
}
if o.PayoutPspReference != nil {
toSerialize["payoutPspReference"] = o.PayoutPspReference
}
if o.PspReference != nil {
toSerialize["pspReference"] = o.PspReference
}
if o.SourceAccountCode != nil {
toSerialize["sourceAccountCode"] = o.SourceAccountCode
}
if o.TransactionStatus != nil {
toSerialize["transactionStatus"] = o.TransactionStatus
}
if o.TransferCode != nil {
toSerialize["transferCode"] = o.TransferCode
}
return json.Marshal(toSerialize)
}
type NullableTransaction struct {
value *Transaction
isSet bool
}
func (v NullableTransaction) Get() *Transaction {
return v.value
}
func (v *NullableTransaction) Set(val *Transaction) {
v.value = val
v.isSet = true
}
func (v NullableTransaction) IsSet() bool {
return v.isSet
}
func (v *NullableTransaction) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableTransaction(val *Transaction) *NullableTransaction {
return &NullableTransaction{value: val, isSet: true}
}
func (v NullableTransaction) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableTransaction) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}