-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmodel_ach_response.go
More file actions
1324 lines (1139 loc) · 41.3 KB
/
model_ach_response.go
File metadata and controls
1324 lines (1139 loc) · 41.3 KB
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
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
MX Platform API
The MX Platform API is a powerful, fully-featured API designed to make aggregating and enhancing financial data easy and reliable. It can seamlessly connect your app or website to tens of thousands of financial institutions. Just getting started? See our [use case guides](/use-cases/).
API version: 20111101
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package mxplatformgo
import (
"encoding/json"
)
// checks if the ACHResponse type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ACHResponse{}
// ACHResponse struct for ACHResponse
type ACHResponse struct {
AccountGuid *string `json:"account_guid,omitempty"`
AccountNumberLastFour NullableString `json:"account_number_last_four,omitempty"`
AccountType NullableString `json:"account_type,omitempty"`
AchInitiatedAt NullableString `json:"ach_initiated_at,omitempty"`
ClientGuid *string `json:"client_guid,omitempty"`
CorrectedAccountNumber NullableString `json:"corrected_account_number,omitempty"`
CorrectedRoutingNumber NullableString `json:"corrected_routing_number,omitempty"`
CreatedAt *string `json:"created_at,omitempty"`
Guid *string `json:"guid,omitempty"`
Id *string `json:"id,omitempty"`
InstitutionGuid *string `json:"institution_guid,omitempty"`
InvestigationNotes NullableString `json:"investigation_notes,omitempty"`
MemberGuid *string `json:"member_guid,omitempty"`
ProcessingErrors NullableString `json:"processing_errors,omitempty"`
ResolutionCode NullableString `json:"resolution_code,omitempty"`
ResolutionDetail NullableString `json:"resolution_detail,omitempty"`
ResolvedStatusAt NullableString `json:"resolved_status_at,omitempty"`
ReturnCode *string `json:"return_code,omitempty"`
ReturnNotes NullableString `json:"return_notes,omitempty"`
ReturnAccountNumber NullableString `json:"return_account_number,omitempty"`
ReturnRoutingNumber NullableString `json:"return_routing_number,omitempty"`
ReturnStatus NullableString `json:"return_status,omitempty"`
ReturnedAt NullableString `json:"returned_at,omitempty"`
SecCode NullableString `json:"sec_code,omitempty"`
StartedProcessingAt NullableString `json:"started_processing_at,omitempty"`
SubmittedAt NullableString `json:"submitted_at,omitempty"`
TransactionAmount NullableFloat64 `json:"transaction_amount,omitempty"`
UpdatedAt *string `json:"updated_at,omitempty"`
UserGuid *string `json:"user_guid,omitempty"`
}
// NewACHResponse instantiates a new ACHResponse 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 NewACHResponse() *ACHResponse {
this := ACHResponse{}
return &this
}
// NewACHResponseWithDefaults instantiates a new ACHResponse 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 NewACHResponseWithDefaults() *ACHResponse {
this := ACHResponse{}
return &this
}
// GetAccountGuid returns the AccountGuid field value if set, zero value otherwise.
func (o *ACHResponse) GetAccountGuid() string {
if o == nil || IsNil(o.AccountGuid) {
var ret string
return ret
}
return *o.AccountGuid
}
// GetAccountGuidOk returns a tuple with the AccountGuid field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ACHResponse) GetAccountGuidOk() (*string, bool) {
if o == nil || IsNil(o.AccountGuid) {
return nil, false
}
return o.AccountGuid, true
}
// HasAccountGuid returns a boolean if a field has been set.
func (o *ACHResponse) HasAccountGuid() bool {
if o != nil && !IsNil(o.AccountGuid) {
return true
}
return false
}
// SetAccountGuid gets a reference to the given string and assigns it to the AccountGuid field.
func (o *ACHResponse) SetAccountGuid(v string) {
o.AccountGuid = &v
}
// GetAccountNumberLastFour returns the AccountNumberLastFour field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetAccountNumberLastFour() string {
if o == nil || IsNil(o.AccountNumberLastFour.Get()) {
var ret string
return ret
}
return *o.AccountNumberLastFour.Get()
}
// GetAccountNumberLastFourOk returns a tuple with the AccountNumberLastFour field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetAccountNumberLastFourOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.AccountNumberLastFour.Get(), o.AccountNumberLastFour.IsSet()
}
// HasAccountNumberLastFour returns a boolean if a field has been set.
func (o *ACHResponse) HasAccountNumberLastFour() bool {
if o != nil && o.AccountNumberLastFour.IsSet() {
return true
}
return false
}
// SetAccountNumberLastFour gets a reference to the given NullableString and assigns it to the AccountNumberLastFour field.
func (o *ACHResponse) SetAccountNumberLastFour(v string) {
o.AccountNumberLastFour.Set(&v)
}
// SetAccountNumberLastFourNil sets the value for AccountNumberLastFour to be an explicit nil
func (o *ACHResponse) SetAccountNumberLastFourNil() {
o.AccountNumberLastFour.Set(nil)
}
// UnsetAccountNumberLastFour ensures that no value is present for AccountNumberLastFour, not even an explicit nil
func (o *ACHResponse) UnsetAccountNumberLastFour() {
o.AccountNumberLastFour.Unset()
}
// GetAccountType returns the AccountType field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetAccountType() string {
if o == nil || IsNil(o.AccountType.Get()) {
var ret string
return ret
}
return *o.AccountType.Get()
}
// GetAccountTypeOk returns a tuple with the AccountType field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetAccountTypeOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.AccountType.Get(), o.AccountType.IsSet()
}
// HasAccountType returns a boolean if a field has been set.
func (o *ACHResponse) HasAccountType() bool {
if o != nil && o.AccountType.IsSet() {
return true
}
return false
}
// SetAccountType gets a reference to the given NullableString and assigns it to the AccountType field.
func (o *ACHResponse) SetAccountType(v string) {
o.AccountType.Set(&v)
}
// SetAccountTypeNil sets the value for AccountType to be an explicit nil
func (o *ACHResponse) SetAccountTypeNil() {
o.AccountType.Set(nil)
}
// UnsetAccountType ensures that no value is present for AccountType, not even an explicit nil
func (o *ACHResponse) UnsetAccountType() {
o.AccountType.Unset()
}
// GetAchInitiatedAt returns the AchInitiatedAt field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetAchInitiatedAt() string {
if o == nil || IsNil(o.AchInitiatedAt.Get()) {
var ret string
return ret
}
return *o.AchInitiatedAt.Get()
}
// GetAchInitiatedAtOk returns a tuple with the AchInitiatedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetAchInitiatedAtOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.AchInitiatedAt.Get(), o.AchInitiatedAt.IsSet()
}
// HasAchInitiatedAt returns a boolean if a field has been set.
func (o *ACHResponse) HasAchInitiatedAt() bool {
if o != nil && o.AchInitiatedAt.IsSet() {
return true
}
return false
}
// SetAchInitiatedAt gets a reference to the given NullableString and assigns it to the AchInitiatedAt field.
func (o *ACHResponse) SetAchInitiatedAt(v string) {
o.AchInitiatedAt.Set(&v)
}
// SetAchInitiatedAtNil sets the value for AchInitiatedAt to be an explicit nil
func (o *ACHResponse) SetAchInitiatedAtNil() {
o.AchInitiatedAt.Set(nil)
}
// UnsetAchInitiatedAt ensures that no value is present for AchInitiatedAt, not even an explicit nil
func (o *ACHResponse) UnsetAchInitiatedAt() {
o.AchInitiatedAt.Unset()
}
// GetClientGuid returns the ClientGuid field value if set, zero value otherwise.
func (o *ACHResponse) GetClientGuid() string {
if o == nil || IsNil(o.ClientGuid) {
var ret string
return ret
}
return *o.ClientGuid
}
// GetClientGuidOk returns a tuple with the ClientGuid field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ACHResponse) GetClientGuidOk() (*string, bool) {
if o == nil || IsNil(o.ClientGuid) {
return nil, false
}
return o.ClientGuid, true
}
// HasClientGuid returns a boolean if a field has been set.
func (o *ACHResponse) HasClientGuid() bool {
if o != nil && !IsNil(o.ClientGuid) {
return true
}
return false
}
// SetClientGuid gets a reference to the given string and assigns it to the ClientGuid field.
func (o *ACHResponse) SetClientGuid(v string) {
o.ClientGuid = &v
}
// GetCorrectedAccountNumber returns the CorrectedAccountNumber field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetCorrectedAccountNumber() string {
if o == nil || IsNil(o.CorrectedAccountNumber.Get()) {
var ret string
return ret
}
return *o.CorrectedAccountNumber.Get()
}
// GetCorrectedAccountNumberOk returns a tuple with the CorrectedAccountNumber field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetCorrectedAccountNumberOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.CorrectedAccountNumber.Get(), o.CorrectedAccountNumber.IsSet()
}
// HasCorrectedAccountNumber returns a boolean if a field has been set.
func (o *ACHResponse) HasCorrectedAccountNumber() bool {
if o != nil && o.CorrectedAccountNumber.IsSet() {
return true
}
return false
}
// SetCorrectedAccountNumber gets a reference to the given NullableString and assigns it to the CorrectedAccountNumber field.
func (o *ACHResponse) SetCorrectedAccountNumber(v string) {
o.CorrectedAccountNumber.Set(&v)
}
// SetCorrectedAccountNumberNil sets the value for CorrectedAccountNumber to be an explicit nil
func (o *ACHResponse) SetCorrectedAccountNumberNil() {
o.CorrectedAccountNumber.Set(nil)
}
// UnsetCorrectedAccountNumber ensures that no value is present for CorrectedAccountNumber, not even an explicit nil
func (o *ACHResponse) UnsetCorrectedAccountNumber() {
o.CorrectedAccountNumber.Unset()
}
// GetCorrectedRoutingNumber returns the CorrectedRoutingNumber field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetCorrectedRoutingNumber() string {
if o == nil || IsNil(o.CorrectedRoutingNumber.Get()) {
var ret string
return ret
}
return *o.CorrectedRoutingNumber.Get()
}
// GetCorrectedRoutingNumberOk returns a tuple with the CorrectedRoutingNumber field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetCorrectedRoutingNumberOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.CorrectedRoutingNumber.Get(), o.CorrectedRoutingNumber.IsSet()
}
// HasCorrectedRoutingNumber returns a boolean if a field has been set.
func (o *ACHResponse) HasCorrectedRoutingNumber() bool {
if o != nil && o.CorrectedRoutingNumber.IsSet() {
return true
}
return false
}
// SetCorrectedRoutingNumber gets a reference to the given NullableString and assigns it to the CorrectedRoutingNumber field.
func (o *ACHResponse) SetCorrectedRoutingNumber(v string) {
o.CorrectedRoutingNumber.Set(&v)
}
// SetCorrectedRoutingNumberNil sets the value for CorrectedRoutingNumber to be an explicit nil
func (o *ACHResponse) SetCorrectedRoutingNumberNil() {
o.CorrectedRoutingNumber.Set(nil)
}
// UnsetCorrectedRoutingNumber ensures that no value is present for CorrectedRoutingNumber, not even an explicit nil
func (o *ACHResponse) UnsetCorrectedRoutingNumber() {
o.CorrectedRoutingNumber.Unset()
}
// GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.
func (o *ACHResponse) GetCreatedAt() string {
if o == nil || IsNil(o.CreatedAt) {
var ret string
return ret
}
return *o.CreatedAt
}
// GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ACHResponse) GetCreatedAtOk() (*string, bool) {
if o == nil || IsNil(o.CreatedAt) {
return nil, false
}
return o.CreatedAt, true
}
// HasCreatedAt returns a boolean if a field has been set.
func (o *ACHResponse) HasCreatedAt() bool {
if o != nil && !IsNil(o.CreatedAt) {
return true
}
return false
}
// SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.
func (o *ACHResponse) SetCreatedAt(v string) {
o.CreatedAt = &v
}
// GetGuid returns the Guid field value if set, zero value otherwise.
func (o *ACHResponse) GetGuid() string {
if o == nil || IsNil(o.Guid) {
var ret string
return ret
}
return *o.Guid
}
// GetGuidOk returns a tuple with the Guid field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ACHResponse) GetGuidOk() (*string, bool) {
if o == nil || IsNil(o.Guid) {
return nil, false
}
return o.Guid, true
}
// HasGuid returns a boolean if a field has been set.
func (o *ACHResponse) HasGuid() bool {
if o != nil && !IsNil(o.Guid) {
return true
}
return false
}
// SetGuid gets a reference to the given string and assigns it to the Guid field.
func (o *ACHResponse) SetGuid(v string) {
o.Guid = &v
}
// GetId returns the Id field value if set, zero value otherwise.
func (o *ACHResponse) GetId() string {
if o == nil || IsNil(o.Id) {
var ret string
return ret
}
return *o.Id
}
// GetIdOk returns a tuple with the Id field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ACHResponse) GetIdOk() (*string, bool) {
if o == nil || IsNil(o.Id) {
return nil, false
}
return o.Id, true
}
// HasId returns a boolean if a field has been set.
func (o *ACHResponse) HasId() bool {
if o != nil && !IsNil(o.Id) {
return true
}
return false
}
// SetId gets a reference to the given string and assigns it to the Id field.
func (o *ACHResponse) SetId(v string) {
o.Id = &v
}
// GetInstitutionGuid returns the InstitutionGuid field value if set, zero value otherwise.
func (o *ACHResponse) GetInstitutionGuid() string {
if o == nil || IsNil(o.InstitutionGuid) {
var ret string
return ret
}
return *o.InstitutionGuid
}
// GetInstitutionGuidOk returns a tuple with the InstitutionGuid field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ACHResponse) GetInstitutionGuidOk() (*string, bool) {
if o == nil || IsNil(o.InstitutionGuid) {
return nil, false
}
return o.InstitutionGuid, true
}
// HasInstitutionGuid returns a boolean if a field has been set.
func (o *ACHResponse) HasInstitutionGuid() bool {
if o != nil && !IsNil(o.InstitutionGuid) {
return true
}
return false
}
// SetInstitutionGuid gets a reference to the given string and assigns it to the InstitutionGuid field.
func (o *ACHResponse) SetInstitutionGuid(v string) {
o.InstitutionGuid = &v
}
// GetInvestigationNotes returns the InvestigationNotes field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetInvestigationNotes() string {
if o == nil || IsNil(o.InvestigationNotes.Get()) {
var ret string
return ret
}
return *o.InvestigationNotes.Get()
}
// GetInvestigationNotesOk returns a tuple with the InvestigationNotes field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetInvestigationNotesOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.InvestigationNotes.Get(), o.InvestigationNotes.IsSet()
}
// HasInvestigationNotes returns a boolean if a field has been set.
func (o *ACHResponse) HasInvestigationNotes() bool {
if o != nil && o.InvestigationNotes.IsSet() {
return true
}
return false
}
// SetInvestigationNotes gets a reference to the given NullableString and assigns it to the InvestigationNotes field.
func (o *ACHResponse) SetInvestigationNotes(v string) {
o.InvestigationNotes.Set(&v)
}
// SetInvestigationNotesNil sets the value for InvestigationNotes to be an explicit nil
func (o *ACHResponse) SetInvestigationNotesNil() {
o.InvestigationNotes.Set(nil)
}
// UnsetInvestigationNotes ensures that no value is present for InvestigationNotes, not even an explicit nil
func (o *ACHResponse) UnsetInvestigationNotes() {
o.InvestigationNotes.Unset()
}
// GetMemberGuid returns the MemberGuid field value if set, zero value otherwise.
func (o *ACHResponse) GetMemberGuid() string {
if o == nil || IsNil(o.MemberGuid) {
var ret string
return ret
}
return *o.MemberGuid
}
// GetMemberGuidOk returns a tuple with the MemberGuid field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ACHResponse) GetMemberGuidOk() (*string, bool) {
if o == nil || IsNil(o.MemberGuid) {
return nil, false
}
return o.MemberGuid, true
}
// HasMemberGuid returns a boolean if a field has been set.
func (o *ACHResponse) HasMemberGuid() bool {
if o != nil && !IsNil(o.MemberGuid) {
return true
}
return false
}
// SetMemberGuid gets a reference to the given string and assigns it to the MemberGuid field.
func (o *ACHResponse) SetMemberGuid(v string) {
o.MemberGuid = &v
}
// GetProcessingErrors returns the ProcessingErrors field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetProcessingErrors() string {
if o == nil || IsNil(o.ProcessingErrors.Get()) {
var ret string
return ret
}
return *o.ProcessingErrors.Get()
}
// GetProcessingErrorsOk returns a tuple with the ProcessingErrors field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetProcessingErrorsOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ProcessingErrors.Get(), o.ProcessingErrors.IsSet()
}
// HasProcessingErrors returns a boolean if a field has been set.
func (o *ACHResponse) HasProcessingErrors() bool {
if o != nil && o.ProcessingErrors.IsSet() {
return true
}
return false
}
// SetProcessingErrors gets a reference to the given NullableString and assigns it to the ProcessingErrors field.
func (o *ACHResponse) SetProcessingErrors(v string) {
o.ProcessingErrors.Set(&v)
}
// SetProcessingErrorsNil sets the value for ProcessingErrors to be an explicit nil
func (o *ACHResponse) SetProcessingErrorsNil() {
o.ProcessingErrors.Set(nil)
}
// UnsetProcessingErrors ensures that no value is present for ProcessingErrors, not even an explicit nil
func (o *ACHResponse) UnsetProcessingErrors() {
o.ProcessingErrors.Unset()
}
// GetResolutionCode returns the ResolutionCode field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetResolutionCode() string {
if o == nil || IsNil(o.ResolutionCode.Get()) {
var ret string
return ret
}
return *o.ResolutionCode.Get()
}
// GetResolutionCodeOk returns a tuple with the ResolutionCode field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetResolutionCodeOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ResolutionCode.Get(), o.ResolutionCode.IsSet()
}
// HasResolutionCode returns a boolean if a field has been set.
func (o *ACHResponse) HasResolutionCode() bool {
if o != nil && o.ResolutionCode.IsSet() {
return true
}
return false
}
// SetResolutionCode gets a reference to the given NullableString and assigns it to the ResolutionCode field.
func (o *ACHResponse) SetResolutionCode(v string) {
o.ResolutionCode.Set(&v)
}
// SetResolutionCodeNil sets the value for ResolutionCode to be an explicit nil
func (o *ACHResponse) SetResolutionCodeNil() {
o.ResolutionCode.Set(nil)
}
// UnsetResolutionCode ensures that no value is present for ResolutionCode, not even an explicit nil
func (o *ACHResponse) UnsetResolutionCode() {
o.ResolutionCode.Unset()
}
// GetResolutionDetail returns the ResolutionDetail field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetResolutionDetail() string {
if o == nil || IsNil(o.ResolutionDetail.Get()) {
var ret string
return ret
}
return *o.ResolutionDetail.Get()
}
// GetResolutionDetailOk returns a tuple with the ResolutionDetail field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetResolutionDetailOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ResolutionDetail.Get(), o.ResolutionDetail.IsSet()
}
// HasResolutionDetail returns a boolean if a field has been set.
func (o *ACHResponse) HasResolutionDetail() bool {
if o != nil && o.ResolutionDetail.IsSet() {
return true
}
return false
}
// SetResolutionDetail gets a reference to the given NullableString and assigns it to the ResolutionDetail field.
func (o *ACHResponse) SetResolutionDetail(v string) {
o.ResolutionDetail.Set(&v)
}
// SetResolutionDetailNil sets the value for ResolutionDetail to be an explicit nil
func (o *ACHResponse) SetResolutionDetailNil() {
o.ResolutionDetail.Set(nil)
}
// UnsetResolutionDetail ensures that no value is present for ResolutionDetail, not even an explicit nil
func (o *ACHResponse) UnsetResolutionDetail() {
o.ResolutionDetail.Unset()
}
// GetResolvedStatusAt returns the ResolvedStatusAt field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetResolvedStatusAt() string {
if o == nil || IsNil(o.ResolvedStatusAt.Get()) {
var ret string
return ret
}
return *o.ResolvedStatusAt.Get()
}
// GetResolvedStatusAtOk returns a tuple with the ResolvedStatusAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetResolvedStatusAtOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ResolvedStatusAt.Get(), o.ResolvedStatusAt.IsSet()
}
// HasResolvedStatusAt returns a boolean if a field has been set.
func (o *ACHResponse) HasResolvedStatusAt() bool {
if o != nil && o.ResolvedStatusAt.IsSet() {
return true
}
return false
}
// SetResolvedStatusAt gets a reference to the given NullableString and assigns it to the ResolvedStatusAt field.
func (o *ACHResponse) SetResolvedStatusAt(v string) {
o.ResolvedStatusAt.Set(&v)
}
// SetResolvedStatusAtNil sets the value for ResolvedStatusAt to be an explicit nil
func (o *ACHResponse) SetResolvedStatusAtNil() {
o.ResolvedStatusAt.Set(nil)
}
// UnsetResolvedStatusAt ensures that no value is present for ResolvedStatusAt, not even an explicit nil
func (o *ACHResponse) UnsetResolvedStatusAt() {
o.ResolvedStatusAt.Unset()
}
// GetReturnCode returns the ReturnCode field value if set, zero value otherwise.
func (o *ACHResponse) GetReturnCode() string {
if o == nil || IsNil(o.ReturnCode) {
var ret string
return ret
}
return *o.ReturnCode
}
// GetReturnCodeOk returns a tuple with the ReturnCode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ACHResponse) GetReturnCodeOk() (*string, bool) {
if o == nil || IsNil(o.ReturnCode) {
return nil, false
}
return o.ReturnCode, true
}
// HasReturnCode returns a boolean if a field has been set.
func (o *ACHResponse) HasReturnCode() bool {
if o != nil && !IsNil(o.ReturnCode) {
return true
}
return false
}
// SetReturnCode gets a reference to the given string and assigns it to the ReturnCode field.
func (o *ACHResponse) SetReturnCode(v string) {
o.ReturnCode = &v
}
// GetReturnNotes returns the ReturnNotes field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetReturnNotes() string {
if o == nil || IsNil(o.ReturnNotes.Get()) {
var ret string
return ret
}
return *o.ReturnNotes.Get()
}
// GetReturnNotesOk returns a tuple with the ReturnNotes field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetReturnNotesOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ReturnNotes.Get(), o.ReturnNotes.IsSet()
}
// HasReturnNotes returns a boolean if a field has been set.
func (o *ACHResponse) HasReturnNotes() bool {
if o != nil && o.ReturnNotes.IsSet() {
return true
}
return false
}
// SetReturnNotes gets a reference to the given NullableString and assigns it to the ReturnNotes field.
func (o *ACHResponse) SetReturnNotes(v string) {
o.ReturnNotes.Set(&v)
}
// SetReturnNotesNil sets the value for ReturnNotes to be an explicit nil
func (o *ACHResponse) SetReturnNotesNil() {
o.ReturnNotes.Set(nil)
}
// UnsetReturnNotes ensures that no value is present for ReturnNotes, not even an explicit nil
func (o *ACHResponse) UnsetReturnNotes() {
o.ReturnNotes.Unset()
}
// GetReturnAccountNumber returns the ReturnAccountNumber field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetReturnAccountNumber() string {
if o == nil || IsNil(o.ReturnAccountNumber.Get()) {
var ret string
return ret
}
return *o.ReturnAccountNumber.Get()
}
// GetReturnAccountNumberOk returns a tuple with the ReturnAccountNumber field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetReturnAccountNumberOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ReturnAccountNumber.Get(), o.ReturnAccountNumber.IsSet()
}
// HasReturnAccountNumber returns a boolean if a field has been set.
func (o *ACHResponse) HasReturnAccountNumber() bool {
if o != nil && o.ReturnAccountNumber.IsSet() {
return true
}
return false
}
// SetReturnAccountNumber gets a reference to the given NullableString and assigns it to the ReturnAccountNumber field.
func (o *ACHResponse) SetReturnAccountNumber(v string) {
o.ReturnAccountNumber.Set(&v)
}
// SetReturnAccountNumberNil sets the value for ReturnAccountNumber to be an explicit nil
func (o *ACHResponse) SetReturnAccountNumberNil() {
o.ReturnAccountNumber.Set(nil)
}
// UnsetReturnAccountNumber ensures that no value is present for ReturnAccountNumber, not even an explicit nil
func (o *ACHResponse) UnsetReturnAccountNumber() {
o.ReturnAccountNumber.Unset()
}
// GetReturnRoutingNumber returns the ReturnRoutingNumber field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetReturnRoutingNumber() string {
if o == nil || IsNil(o.ReturnRoutingNumber.Get()) {
var ret string
return ret
}
return *o.ReturnRoutingNumber.Get()
}
// GetReturnRoutingNumberOk returns a tuple with the ReturnRoutingNumber field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetReturnRoutingNumberOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ReturnRoutingNumber.Get(), o.ReturnRoutingNumber.IsSet()
}
// HasReturnRoutingNumber returns a boolean if a field has been set.
func (o *ACHResponse) HasReturnRoutingNumber() bool {
if o != nil && o.ReturnRoutingNumber.IsSet() {
return true
}
return false
}
// SetReturnRoutingNumber gets a reference to the given NullableString and assigns it to the ReturnRoutingNumber field.
func (o *ACHResponse) SetReturnRoutingNumber(v string) {
o.ReturnRoutingNumber.Set(&v)
}
// SetReturnRoutingNumberNil sets the value for ReturnRoutingNumber to be an explicit nil
func (o *ACHResponse) SetReturnRoutingNumberNil() {
o.ReturnRoutingNumber.Set(nil)
}
// UnsetReturnRoutingNumber ensures that no value is present for ReturnRoutingNumber, not even an explicit nil
func (o *ACHResponse) UnsetReturnRoutingNumber() {
o.ReturnRoutingNumber.Unset()
}
// GetReturnStatus returns the ReturnStatus field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetReturnStatus() string {
if o == nil || IsNil(o.ReturnStatus.Get()) {
var ret string
return ret
}
return *o.ReturnStatus.Get()
}
// GetReturnStatusOk returns a tuple with the ReturnStatus field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetReturnStatusOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ReturnStatus.Get(), o.ReturnStatus.IsSet()
}
// HasReturnStatus returns a boolean if a field has been set.
func (o *ACHResponse) HasReturnStatus() bool {
if o != nil && o.ReturnStatus.IsSet() {
return true
}
return false
}
// SetReturnStatus gets a reference to the given NullableString and assigns it to the ReturnStatus field.
func (o *ACHResponse) SetReturnStatus(v string) {
o.ReturnStatus.Set(&v)
}
// SetReturnStatusNil sets the value for ReturnStatus to be an explicit nil
func (o *ACHResponse) SetReturnStatusNil() {
o.ReturnStatus.Set(nil)
}
// UnsetReturnStatus ensures that no value is present for ReturnStatus, not even an explicit nil
func (o *ACHResponse) UnsetReturnStatus() {
o.ReturnStatus.Unset()
}
// GetReturnedAt returns the ReturnedAt field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetReturnedAt() string {
if o == nil || IsNil(o.ReturnedAt.Get()) {
var ret string
return ret
}
return *o.ReturnedAt.Get()
}
// GetReturnedAtOk returns a tuple with the ReturnedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetReturnedAtOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ReturnedAt.Get(), o.ReturnedAt.IsSet()
}
// HasReturnedAt returns a boolean if a field has been set.
func (o *ACHResponse) HasReturnedAt() bool {
if o != nil && o.ReturnedAt.IsSet() {
return true
}
return false
}
// SetReturnedAt gets a reference to the given NullableString and assigns it to the ReturnedAt field.
func (o *ACHResponse) SetReturnedAt(v string) {
o.ReturnedAt.Set(&v)
}
// SetReturnedAtNil sets the value for ReturnedAt to be an explicit nil
func (o *ACHResponse) SetReturnedAtNil() {
o.ReturnedAt.Set(nil)
}
// UnsetReturnedAt ensures that no value is present for ReturnedAt, not even an explicit nil
func (o *ACHResponse) UnsetReturnedAt() {
o.ReturnedAt.Unset()
}
// GetSecCode returns the SecCode field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetSecCode() string {
if o == nil || IsNil(o.SecCode.Get()) {
var ret string
return ret
}
return *o.SecCode.Get()
}
// GetSecCodeOk returns a tuple with the SecCode field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *ACHResponse) GetSecCodeOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.SecCode.Get(), o.SecCode.IsSet()
}
// HasSecCode returns a boolean if a field has been set.
func (o *ACHResponse) HasSecCode() bool {
if o != nil && o.SecCode.IsSet() {
return true
}
return false
}
// SetSecCode gets a reference to the given NullableString and assigns it to the SecCode field.
func (o *ACHResponse) SetSecCode(v string) {
o.SecCode.Set(&v)
}
// SetSecCodeNil sets the value for SecCode to be an explicit nil
func (o *ACHResponse) SetSecCodeNil() {
o.SecCode.Set(nil)
}
// UnsetSecCode ensures that no value is present for SecCode, not even an explicit nil
func (o *ACHResponse) UnsetSecCode() {
o.SecCode.Unset()
}
// GetStartedProcessingAt returns the StartedProcessingAt field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *ACHResponse) GetStartedProcessingAt() string {
if o == nil || IsNil(o.StartedProcessingAt.Get()) {