-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathmodel_account_holder_payout_notification_content.go
653 lines (560 loc) · 21.5 KB
/
model_account_holder_payout_notification_content.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
/*
* 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"
)
// AccountHolderPayoutNotificationContent struct for AccountHolderPayoutNotificationContent
type AccountHolderPayoutNotificationContent struct {
// The code of the account from which the payout was made.
AccountCode string `json:"accountCode"`
// The code of the Account Holder to which the payout was made.
AccountHolderCode string `json:"accountHolderCode"`
// The payout amounts (per currency).
Amounts *[]Amount `json:"amounts,omitempty"`
BankAccountDetail *BankAccountDetail `json:"bankAccountDetail,omitempty"`
// A description of the payout.
Description *string `json:"description,omitempty"`
EstimatedArrivalDate *LocalDate `json:"estimatedArrivalDate,omitempty"`
// Invalid fields list.
InvalidFields *[]ErrorFieldType `json:"invalidFields,omitempty"`
// The merchant reference.
MerchantReference *string `json:"merchantReference,omitempty"`
// The PSP reference of the original payout.
OriginalPspReference *string `json:"originalPspReference,omitempty"`
// Payout account country.
PayoutAccountCountry *string `json:"payoutAccountCountry,omitempty"`
// Payout bank account number.
PayoutAccountNumber *string `json:"payoutAccountNumber,omitempty"`
// Payout bank name.
PayoutBankName *string `json:"payoutBankName,omitempty"`
// Payout branch code.
PayoutBranchCode *string `json:"payoutBranchCode,omitempty"`
// Payout transaction id.
PayoutReference *int64 `json:"payoutReference,omitempty"`
// Speed with which payouts for this account are processed. Permitted values: `STANDARD`, `SAME_DAY`.
PayoutSpeed *string `json:"payoutSpeed,omitempty"`
Status *OperationStatus `json:"status,omitempty"`
}
// NewAccountHolderPayoutNotificationContent instantiates a new AccountHolderPayoutNotificationContent 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 NewAccountHolderPayoutNotificationContent(accountCode string, accountHolderCode string) *AccountHolderPayoutNotificationContent {
this := AccountHolderPayoutNotificationContent{}
this.AccountCode = accountCode
this.AccountHolderCode = accountHolderCode
return &this
}
// NewAccountHolderPayoutNotificationContentWithDefaults instantiates a new AccountHolderPayoutNotificationContent 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 NewAccountHolderPayoutNotificationContentWithDefaults() *AccountHolderPayoutNotificationContent {
this := AccountHolderPayoutNotificationContent{}
return &this
}
// GetAccountCode returns the AccountCode field value
func (o *AccountHolderPayoutNotificationContent) GetAccountCode() string {
if o == nil {
var ret string
return ret
}
return o.AccountCode
}
// GetAccountCodeOk returns a tuple with the AccountCode field value
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetAccountCodeOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.AccountCode, true
}
// SetAccountCode sets field value
func (o *AccountHolderPayoutNotificationContent) SetAccountCode(v string) {
o.AccountCode = v
}
// GetAccountHolderCode returns the AccountHolderCode field value
func (o *AccountHolderPayoutNotificationContent) GetAccountHolderCode() string {
if o == nil {
var ret string
return ret
}
return o.AccountHolderCode
}
// GetAccountHolderCodeOk returns a tuple with the AccountHolderCode field value
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetAccountHolderCodeOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.AccountHolderCode, true
}
// SetAccountHolderCode sets field value
func (o *AccountHolderPayoutNotificationContent) SetAccountHolderCode(v string) {
o.AccountHolderCode = v
}
// GetAmounts returns the Amounts field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetAmounts() []Amount {
if o == nil || o.Amounts == nil {
var ret []Amount
return ret
}
return *o.Amounts
}
// GetAmountsOk returns a tuple with the Amounts field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetAmountsOk() (*[]Amount, bool) {
if o == nil || o.Amounts == nil {
return nil, false
}
return o.Amounts, true
}
// HasAmounts returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasAmounts() bool {
if o != nil && o.Amounts != nil {
return true
}
return false
}
// SetAmounts gets a reference to the given []Amount and assigns it to the Amounts field.
func (o *AccountHolderPayoutNotificationContent) SetAmounts(v []Amount) {
o.Amounts = &v
}
// GetBankAccountDetail returns the BankAccountDetail field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) 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 *AccountHolderPayoutNotificationContent) 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 *AccountHolderPayoutNotificationContent) 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 *AccountHolderPayoutNotificationContent) SetBankAccountDetail(v BankAccountDetail) {
o.BankAccountDetail = &v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) 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 *AccountHolderPayoutNotificationContent) 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 *AccountHolderPayoutNotificationContent) 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 *AccountHolderPayoutNotificationContent) SetDescription(v string) {
o.Description = &v
}
// GetEstimatedArrivalDate returns the EstimatedArrivalDate field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetEstimatedArrivalDate() LocalDate {
if o == nil || o.EstimatedArrivalDate == nil {
var ret LocalDate
return ret
}
return *o.EstimatedArrivalDate
}
// GetEstimatedArrivalDateOk returns a tuple with the EstimatedArrivalDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetEstimatedArrivalDateOk() (*LocalDate, bool) {
if o == nil || o.EstimatedArrivalDate == nil {
return nil, false
}
return o.EstimatedArrivalDate, true
}
// HasEstimatedArrivalDate returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasEstimatedArrivalDate() bool {
if o != nil && o.EstimatedArrivalDate != nil {
return true
}
return false
}
// SetEstimatedArrivalDate gets a reference to the given LocalDate and assigns it to the EstimatedArrivalDate field.
func (o *AccountHolderPayoutNotificationContent) SetEstimatedArrivalDate(v LocalDate) {
o.EstimatedArrivalDate = &v
}
// GetInvalidFields returns the InvalidFields field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetInvalidFields() []ErrorFieldType {
if o == nil || o.InvalidFields == nil {
var ret []ErrorFieldType
return ret
}
return *o.InvalidFields
}
// GetInvalidFieldsOk returns a tuple with the InvalidFields field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetInvalidFieldsOk() (*[]ErrorFieldType, bool) {
if o == nil || o.InvalidFields == nil {
return nil, false
}
return o.InvalidFields, true
}
// HasInvalidFields returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasInvalidFields() bool {
if o != nil && o.InvalidFields != nil {
return true
}
return false
}
// SetInvalidFields gets a reference to the given []ErrorFieldType and assigns it to the InvalidFields field.
func (o *AccountHolderPayoutNotificationContent) SetInvalidFields(v []ErrorFieldType) {
o.InvalidFields = &v
}
// GetMerchantReference returns the MerchantReference field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) 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 *AccountHolderPayoutNotificationContent) 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 *AccountHolderPayoutNotificationContent) 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 *AccountHolderPayoutNotificationContent) SetMerchantReference(v string) {
o.MerchantReference = &v
}
// GetOriginalPspReference returns the OriginalPspReference field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetOriginalPspReference() string {
if o == nil || o.OriginalPspReference == nil {
var ret string
return ret
}
return *o.OriginalPspReference
}
// GetOriginalPspReferenceOk returns a tuple with the OriginalPspReference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetOriginalPspReferenceOk() (*string, bool) {
if o == nil || o.OriginalPspReference == nil {
return nil, false
}
return o.OriginalPspReference, true
}
// HasOriginalPspReference returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasOriginalPspReference() bool {
if o != nil && o.OriginalPspReference != nil {
return true
}
return false
}
// SetOriginalPspReference gets a reference to the given string and assigns it to the OriginalPspReference field.
func (o *AccountHolderPayoutNotificationContent) SetOriginalPspReference(v string) {
o.OriginalPspReference = &v
}
// GetPayoutAccountCountry returns the PayoutAccountCountry field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetPayoutAccountCountry() string {
if o == nil || o.PayoutAccountCountry == nil {
var ret string
return ret
}
return *o.PayoutAccountCountry
}
// GetPayoutAccountCountryOk returns a tuple with the PayoutAccountCountry field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetPayoutAccountCountryOk() (*string, bool) {
if o == nil || o.PayoutAccountCountry == nil {
return nil, false
}
return o.PayoutAccountCountry, true
}
// HasPayoutAccountCountry returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasPayoutAccountCountry() bool {
if o != nil && o.PayoutAccountCountry != nil {
return true
}
return false
}
// SetPayoutAccountCountry gets a reference to the given string and assigns it to the PayoutAccountCountry field.
func (o *AccountHolderPayoutNotificationContent) SetPayoutAccountCountry(v string) {
o.PayoutAccountCountry = &v
}
// GetPayoutAccountNumber returns the PayoutAccountNumber field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetPayoutAccountNumber() string {
if o == nil || o.PayoutAccountNumber == nil {
var ret string
return ret
}
return *o.PayoutAccountNumber
}
// GetPayoutAccountNumberOk returns a tuple with the PayoutAccountNumber field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetPayoutAccountNumberOk() (*string, bool) {
if o == nil || o.PayoutAccountNumber == nil {
return nil, false
}
return o.PayoutAccountNumber, true
}
// HasPayoutAccountNumber returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasPayoutAccountNumber() bool {
if o != nil && o.PayoutAccountNumber != nil {
return true
}
return false
}
// SetPayoutAccountNumber gets a reference to the given string and assigns it to the PayoutAccountNumber field.
func (o *AccountHolderPayoutNotificationContent) SetPayoutAccountNumber(v string) {
o.PayoutAccountNumber = &v
}
// GetPayoutBankName returns the PayoutBankName field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetPayoutBankName() string {
if o == nil || o.PayoutBankName == nil {
var ret string
return ret
}
return *o.PayoutBankName
}
// GetPayoutBankNameOk returns a tuple with the PayoutBankName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetPayoutBankNameOk() (*string, bool) {
if o == nil || o.PayoutBankName == nil {
return nil, false
}
return o.PayoutBankName, true
}
// HasPayoutBankName returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasPayoutBankName() bool {
if o != nil && o.PayoutBankName != nil {
return true
}
return false
}
// SetPayoutBankName gets a reference to the given string and assigns it to the PayoutBankName field.
func (o *AccountHolderPayoutNotificationContent) SetPayoutBankName(v string) {
o.PayoutBankName = &v
}
// GetPayoutBranchCode returns the PayoutBranchCode field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetPayoutBranchCode() string {
if o == nil || o.PayoutBranchCode == nil {
var ret string
return ret
}
return *o.PayoutBranchCode
}
// GetPayoutBranchCodeOk returns a tuple with the PayoutBranchCode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetPayoutBranchCodeOk() (*string, bool) {
if o == nil || o.PayoutBranchCode == nil {
return nil, false
}
return o.PayoutBranchCode, true
}
// HasPayoutBranchCode returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasPayoutBranchCode() bool {
if o != nil && o.PayoutBranchCode != nil {
return true
}
return false
}
// SetPayoutBranchCode gets a reference to the given string and assigns it to the PayoutBranchCode field.
func (o *AccountHolderPayoutNotificationContent) SetPayoutBranchCode(v string) {
o.PayoutBranchCode = &v
}
// GetPayoutReference returns the PayoutReference field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetPayoutReference() int64 {
if o == nil || o.PayoutReference == nil {
var ret int64
return ret
}
return *o.PayoutReference
}
// GetPayoutReferenceOk returns a tuple with the PayoutReference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetPayoutReferenceOk() (*int64, bool) {
if o == nil || o.PayoutReference == nil {
return nil, false
}
return o.PayoutReference, true
}
// HasPayoutReference returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasPayoutReference() bool {
if o != nil && o.PayoutReference != nil {
return true
}
return false
}
// SetPayoutReference gets a reference to the given int64 and assigns it to the PayoutReference field.
func (o *AccountHolderPayoutNotificationContent) SetPayoutReference(v int64) {
o.PayoutReference = &v
}
// GetPayoutSpeed returns the PayoutSpeed field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetPayoutSpeed() string {
if o == nil || o.PayoutSpeed == nil {
var ret string
return ret
}
return *o.PayoutSpeed
}
// GetPayoutSpeedOk returns a tuple with the PayoutSpeed field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AccountHolderPayoutNotificationContent) GetPayoutSpeedOk() (*string, bool) {
if o == nil || o.PayoutSpeed == nil {
return nil, false
}
return o.PayoutSpeed, true
}
// HasPayoutSpeed returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasPayoutSpeed() bool {
if o != nil && o.PayoutSpeed != nil {
return true
}
return false
}
// SetPayoutSpeed gets a reference to the given string and assigns it to the PayoutSpeed field.
func (o *AccountHolderPayoutNotificationContent) SetPayoutSpeed(v string) {
o.PayoutSpeed = &v
}
// GetStatus returns the Status field value if set, zero value otherwise.
func (o *AccountHolderPayoutNotificationContent) GetStatus() OperationStatus {
if o == nil || o.Status == nil {
var ret OperationStatus
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 *AccountHolderPayoutNotificationContent) GetStatusOk() (*OperationStatus, bool) {
if o == nil || o.Status == nil {
return nil, false
}
return o.Status, true
}
// HasStatus returns a boolean if a field has been set.
func (o *AccountHolderPayoutNotificationContent) HasStatus() bool {
if o != nil && o.Status != nil {
return true
}
return false
}
// SetStatus gets a reference to the given OperationStatus and assigns it to the Status field.
func (o *AccountHolderPayoutNotificationContent) SetStatus(v OperationStatus) {
o.Status = &v
}
func (o AccountHolderPayoutNotificationContent) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if true {
toSerialize["accountCode"] = o.AccountCode
}
if true {
toSerialize["accountHolderCode"] = o.AccountHolderCode
}
if o.Amounts != nil {
toSerialize["amounts"] = o.Amounts
}
if o.BankAccountDetail != nil {
toSerialize["bankAccountDetail"] = o.BankAccountDetail
}
if o.Description != nil {
toSerialize["description"] = o.Description
}
if o.EstimatedArrivalDate != nil {
toSerialize["estimatedArrivalDate"] = o.EstimatedArrivalDate
}
if o.InvalidFields != nil {
toSerialize["invalidFields"] = o.InvalidFields
}
if o.MerchantReference != nil {
toSerialize["merchantReference"] = o.MerchantReference
}
if o.OriginalPspReference != nil {
toSerialize["originalPspReference"] = o.OriginalPspReference
}
if o.PayoutAccountCountry != nil {
toSerialize["payoutAccountCountry"] = o.PayoutAccountCountry
}
if o.PayoutAccountNumber != nil {
toSerialize["payoutAccountNumber"] = o.PayoutAccountNumber
}
if o.PayoutBankName != nil {
toSerialize["payoutBankName"] = o.PayoutBankName
}
if o.PayoutBranchCode != nil {
toSerialize["payoutBranchCode"] = o.PayoutBranchCode
}
if o.PayoutReference != nil {
toSerialize["payoutReference"] = o.PayoutReference
}
if o.PayoutSpeed != nil {
toSerialize["payoutSpeed"] = o.PayoutSpeed
}
if o.Status != nil {
toSerialize["status"] = o.Status
}
return json.Marshal(toSerialize)
}
type NullableAccountHolderPayoutNotificationContent struct {
value *AccountHolderPayoutNotificationContent
isSet bool
}
func (v NullableAccountHolderPayoutNotificationContent) Get() *AccountHolderPayoutNotificationContent {
return v.value
}
func (v *NullableAccountHolderPayoutNotificationContent) Set(val *AccountHolderPayoutNotificationContent) {
v.value = val
v.isSet = true
}
func (v NullableAccountHolderPayoutNotificationContent) IsSet() bool {
return v.isSet
}
func (v *NullableAccountHolderPayoutNotificationContent) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableAccountHolderPayoutNotificationContent(val *AccountHolderPayoutNotificationContent) *NullableAccountHolderPayoutNotificationContent {
return &NullableAccountHolderPayoutNotificationContent{value: val, isSet: true}
}
func (v NullableAccountHolderPayoutNotificationContent) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableAccountHolderPayoutNotificationContent) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}