-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodel_institution_response.go
780 lines (669 loc) · 26.8 KB
/
model_institution_response.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
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
/*
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.
API version: 0.1.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package mxplatformgo
import (
"encoding/json"
)
// checks if the InstitutionResponse type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &InstitutionResponse{}
// InstitutionResponse struct for InstitutionResponse
type InstitutionResponse struct {
Code NullableString `json:"code,omitempty"`
ForgotPasswordUrl NullableString `json:"forgot_password_url,omitempty"`
ForgotUsernameUrl NullableString `json:"forgot_username_url,omitempty"`
InstructionalText NullableString `json:"instructional_text,omitempty"`
MediumLogoUrl NullableString `json:"medium_logo_url,omitempty"`
Name NullableString `json:"name,omitempty"`
SmallLogoUrl NullableString `json:"small_logo_url,omitempty"`
SupportsAccountIdentification NullableBool `json:"supports_account_identification,omitempty"`
SupportsAccountStatement NullableBool `json:"supports_account_statement,omitempty"`
SupportsAccountVerification NullableBool `json:"supports_account_verification,omitempty"`
SupportsOauth NullableBool `json:"supports_oauth,omitempty"`
SupportsTaxDocument NullableBool `json:"supports_tax_document,omitempty"`
SupportsTransactionHistory NullableBool `json:"supports_transaction_history,omitempty"`
TroubleSigningInUrl NullableString `json:"trouble_signing_in_url,omitempty"`
Url NullableString `json:"url,omitempty"`
}
// NewInstitutionResponse instantiates a new InstitutionResponse 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 NewInstitutionResponse() *InstitutionResponse {
this := InstitutionResponse{}
return &this
}
// NewInstitutionResponseWithDefaults instantiates a new InstitutionResponse 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 NewInstitutionResponseWithDefaults() *InstitutionResponse {
this := InstitutionResponse{}
return &this
}
// GetCode returns the Code field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetCode() string {
if o == nil || IsNil(o.Code.Get()) {
var ret string
return ret
}
return *o.Code.Get()
}
// GetCodeOk returns a tuple with the Code 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 *InstitutionResponse) GetCodeOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.Code.Get(), o.Code.IsSet()
}
// HasCode returns a boolean if a field has been set.
func (o *InstitutionResponse) HasCode() bool {
if o != nil && o.Code.IsSet() {
return true
}
return false
}
// SetCode gets a reference to the given NullableString and assigns it to the Code field.
func (o *InstitutionResponse) SetCode(v string) {
o.Code.Set(&v)
}
// SetCodeNil sets the value for Code to be an explicit nil
func (o *InstitutionResponse) SetCodeNil() {
o.Code.Set(nil)
}
// UnsetCode ensures that no value is present for Code, not even an explicit nil
func (o *InstitutionResponse) UnsetCode() {
o.Code.Unset()
}
// GetForgotPasswordUrl returns the ForgotPasswordUrl field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetForgotPasswordUrl() string {
if o == nil || IsNil(o.ForgotPasswordUrl.Get()) {
var ret string
return ret
}
return *o.ForgotPasswordUrl.Get()
}
// GetForgotPasswordUrlOk returns a tuple with the ForgotPasswordUrl 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 *InstitutionResponse) GetForgotPasswordUrlOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ForgotPasswordUrl.Get(), o.ForgotPasswordUrl.IsSet()
}
// HasForgotPasswordUrl returns a boolean if a field has been set.
func (o *InstitutionResponse) HasForgotPasswordUrl() bool {
if o != nil && o.ForgotPasswordUrl.IsSet() {
return true
}
return false
}
// SetForgotPasswordUrl gets a reference to the given NullableString and assigns it to the ForgotPasswordUrl field.
func (o *InstitutionResponse) SetForgotPasswordUrl(v string) {
o.ForgotPasswordUrl.Set(&v)
}
// SetForgotPasswordUrlNil sets the value for ForgotPasswordUrl to be an explicit nil
func (o *InstitutionResponse) SetForgotPasswordUrlNil() {
o.ForgotPasswordUrl.Set(nil)
}
// UnsetForgotPasswordUrl ensures that no value is present for ForgotPasswordUrl, not even an explicit nil
func (o *InstitutionResponse) UnsetForgotPasswordUrl() {
o.ForgotPasswordUrl.Unset()
}
// GetForgotUsernameUrl returns the ForgotUsernameUrl field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetForgotUsernameUrl() string {
if o == nil || IsNil(o.ForgotUsernameUrl.Get()) {
var ret string
return ret
}
return *o.ForgotUsernameUrl.Get()
}
// GetForgotUsernameUrlOk returns a tuple with the ForgotUsernameUrl 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 *InstitutionResponse) GetForgotUsernameUrlOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ForgotUsernameUrl.Get(), o.ForgotUsernameUrl.IsSet()
}
// HasForgotUsernameUrl returns a boolean if a field has been set.
func (o *InstitutionResponse) HasForgotUsernameUrl() bool {
if o != nil && o.ForgotUsernameUrl.IsSet() {
return true
}
return false
}
// SetForgotUsernameUrl gets a reference to the given NullableString and assigns it to the ForgotUsernameUrl field.
func (o *InstitutionResponse) SetForgotUsernameUrl(v string) {
o.ForgotUsernameUrl.Set(&v)
}
// SetForgotUsernameUrlNil sets the value for ForgotUsernameUrl to be an explicit nil
func (o *InstitutionResponse) SetForgotUsernameUrlNil() {
o.ForgotUsernameUrl.Set(nil)
}
// UnsetForgotUsernameUrl ensures that no value is present for ForgotUsernameUrl, not even an explicit nil
func (o *InstitutionResponse) UnsetForgotUsernameUrl() {
o.ForgotUsernameUrl.Unset()
}
// GetInstructionalText returns the InstructionalText field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetInstructionalText() string {
if o == nil || IsNil(o.InstructionalText.Get()) {
var ret string
return ret
}
return *o.InstructionalText.Get()
}
// GetInstructionalTextOk returns a tuple with the InstructionalText 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 *InstitutionResponse) GetInstructionalTextOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.InstructionalText.Get(), o.InstructionalText.IsSet()
}
// HasInstructionalText returns a boolean if a field has been set.
func (o *InstitutionResponse) HasInstructionalText() bool {
if o != nil && o.InstructionalText.IsSet() {
return true
}
return false
}
// SetInstructionalText gets a reference to the given NullableString and assigns it to the InstructionalText field.
func (o *InstitutionResponse) SetInstructionalText(v string) {
o.InstructionalText.Set(&v)
}
// SetInstructionalTextNil sets the value for InstructionalText to be an explicit nil
func (o *InstitutionResponse) SetInstructionalTextNil() {
o.InstructionalText.Set(nil)
}
// UnsetInstructionalText ensures that no value is present for InstructionalText, not even an explicit nil
func (o *InstitutionResponse) UnsetInstructionalText() {
o.InstructionalText.Unset()
}
// GetMediumLogoUrl returns the MediumLogoUrl field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetMediumLogoUrl() string {
if o == nil || IsNil(o.MediumLogoUrl.Get()) {
var ret string
return ret
}
return *o.MediumLogoUrl.Get()
}
// GetMediumLogoUrlOk returns a tuple with the MediumLogoUrl 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 *InstitutionResponse) GetMediumLogoUrlOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.MediumLogoUrl.Get(), o.MediumLogoUrl.IsSet()
}
// HasMediumLogoUrl returns a boolean if a field has been set.
func (o *InstitutionResponse) HasMediumLogoUrl() bool {
if o != nil && o.MediumLogoUrl.IsSet() {
return true
}
return false
}
// SetMediumLogoUrl gets a reference to the given NullableString and assigns it to the MediumLogoUrl field.
func (o *InstitutionResponse) SetMediumLogoUrl(v string) {
o.MediumLogoUrl.Set(&v)
}
// SetMediumLogoUrlNil sets the value for MediumLogoUrl to be an explicit nil
func (o *InstitutionResponse) SetMediumLogoUrlNil() {
o.MediumLogoUrl.Set(nil)
}
// UnsetMediumLogoUrl ensures that no value is present for MediumLogoUrl, not even an explicit nil
func (o *InstitutionResponse) UnsetMediumLogoUrl() {
o.MediumLogoUrl.Unset()
}
// GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetName() string {
if o == nil || IsNil(o.Name.Get()) {
var ret string
return ret
}
return *o.Name.Get()
}
// GetNameOk returns a tuple with the Name 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 *InstitutionResponse) GetNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.Name.Get(), o.Name.IsSet()
}
// HasName returns a boolean if a field has been set.
func (o *InstitutionResponse) HasName() bool {
if o != nil && o.Name.IsSet() {
return true
}
return false
}
// SetName gets a reference to the given NullableString and assigns it to the Name field.
func (o *InstitutionResponse) SetName(v string) {
o.Name.Set(&v)
}
// SetNameNil sets the value for Name to be an explicit nil
func (o *InstitutionResponse) SetNameNil() {
o.Name.Set(nil)
}
// UnsetName ensures that no value is present for Name, not even an explicit nil
func (o *InstitutionResponse) UnsetName() {
o.Name.Unset()
}
// GetSmallLogoUrl returns the SmallLogoUrl field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetSmallLogoUrl() string {
if o == nil || IsNil(o.SmallLogoUrl.Get()) {
var ret string
return ret
}
return *o.SmallLogoUrl.Get()
}
// GetSmallLogoUrlOk returns a tuple with the SmallLogoUrl 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 *InstitutionResponse) GetSmallLogoUrlOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.SmallLogoUrl.Get(), o.SmallLogoUrl.IsSet()
}
// HasSmallLogoUrl returns a boolean if a field has been set.
func (o *InstitutionResponse) HasSmallLogoUrl() bool {
if o != nil && o.SmallLogoUrl.IsSet() {
return true
}
return false
}
// SetSmallLogoUrl gets a reference to the given NullableString and assigns it to the SmallLogoUrl field.
func (o *InstitutionResponse) SetSmallLogoUrl(v string) {
o.SmallLogoUrl.Set(&v)
}
// SetSmallLogoUrlNil sets the value for SmallLogoUrl to be an explicit nil
func (o *InstitutionResponse) SetSmallLogoUrlNil() {
o.SmallLogoUrl.Set(nil)
}
// UnsetSmallLogoUrl ensures that no value is present for SmallLogoUrl, not even an explicit nil
func (o *InstitutionResponse) UnsetSmallLogoUrl() {
o.SmallLogoUrl.Unset()
}
// GetSupportsAccountIdentification returns the SupportsAccountIdentification field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetSupportsAccountIdentification() bool {
if o == nil || IsNil(o.SupportsAccountIdentification.Get()) {
var ret bool
return ret
}
return *o.SupportsAccountIdentification.Get()
}
// GetSupportsAccountIdentificationOk returns a tuple with the SupportsAccountIdentification 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 *InstitutionResponse) GetSupportsAccountIdentificationOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.SupportsAccountIdentification.Get(), o.SupportsAccountIdentification.IsSet()
}
// HasSupportsAccountIdentification returns a boolean if a field has been set.
func (o *InstitutionResponse) HasSupportsAccountIdentification() bool {
if o != nil && o.SupportsAccountIdentification.IsSet() {
return true
}
return false
}
// SetSupportsAccountIdentification gets a reference to the given NullableBool and assigns it to the SupportsAccountIdentification field.
func (o *InstitutionResponse) SetSupportsAccountIdentification(v bool) {
o.SupportsAccountIdentification.Set(&v)
}
// SetSupportsAccountIdentificationNil sets the value for SupportsAccountIdentification to be an explicit nil
func (o *InstitutionResponse) SetSupportsAccountIdentificationNil() {
o.SupportsAccountIdentification.Set(nil)
}
// UnsetSupportsAccountIdentification ensures that no value is present for SupportsAccountIdentification, not even an explicit nil
func (o *InstitutionResponse) UnsetSupportsAccountIdentification() {
o.SupportsAccountIdentification.Unset()
}
// GetSupportsAccountStatement returns the SupportsAccountStatement field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetSupportsAccountStatement() bool {
if o == nil || IsNil(o.SupportsAccountStatement.Get()) {
var ret bool
return ret
}
return *o.SupportsAccountStatement.Get()
}
// GetSupportsAccountStatementOk returns a tuple with the SupportsAccountStatement 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 *InstitutionResponse) GetSupportsAccountStatementOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.SupportsAccountStatement.Get(), o.SupportsAccountStatement.IsSet()
}
// HasSupportsAccountStatement returns a boolean if a field has been set.
func (o *InstitutionResponse) HasSupportsAccountStatement() bool {
if o != nil && o.SupportsAccountStatement.IsSet() {
return true
}
return false
}
// SetSupportsAccountStatement gets a reference to the given NullableBool and assigns it to the SupportsAccountStatement field.
func (o *InstitutionResponse) SetSupportsAccountStatement(v bool) {
o.SupportsAccountStatement.Set(&v)
}
// SetSupportsAccountStatementNil sets the value for SupportsAccountStatement to be an explicit nil
func (o *InstitutionResponse) SetSupportsAccountStatementNil() {
o.SupportsAccountStatement.Set(nil)
}
// UnsetSupportsAccountStatement ensures that no value is present for SupportsAccountStatement, not even an explicit nil
func (o *InstitutionResponse) UnsetSupportsAccountStatement() {
o.SupportsAccountStatement.Unset()
}
// GetSupportsAccountVerification returns the SupportsAccountVerification field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetSupportsAccountVerification() bool {
if o == nil || IsNil(o.SupportsAccountVerification.Get()) {
var ret bool
return ret
}
return *o.SupportsAccountVerification.Get()
}
// GetSupportsAccountVerificationOk returns a tuple with the SupportsAccountVerification 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 *InstitutionResponse) GetSupportsAccountVerificationOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.SupportsAccountVerification.Get(), o.SupportsAccountVerification.IsSet()
}
// HasSupportsAccountVerification returns a boolean if a field has been set.
func (o *InstitutionResponse) HasSupportsAccountVerification() bool {
if o != nil && o.SupportsAccountVerification.IsSet() {
return true
}
return false
}
// SetSupportsAccountVerification gets a reference to the given NullableBool and assigns it to the SupportsAccountVerification field.
func (o *InstitutionResponse) SetSupportsAccountVerification(v bool) {
o.SupportsAccountVerification.Set(&v)
}
// SetSupportsAccountVerificationNil sets the value for SupportsAccountVerification to be an explicit nil
func (o *InstitutionResponse) SetSupportsAccountVerificationNil() {
o.SupportsAccountVerification.Set(nil)
}
// UnsetSupportsAccountVerification ensures that no value is present for SupportsAccountVerification, not even an explicit nil
func (o *InstitutionResponse) UnsetSupportsAccountVerification() {
o.SupportsAccountVerification.Unset()
}
// GetSupportsOauth returns the SupportsOauth field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetSupportsOauth() bool {
if o == nil || IsNil(o.SupportsOauth.Get()) {
var ret bool
return ret
}
return *o.SupportsOauth.Get()
}
// GetSupportsOauthOk returns a tuple with the SupportsOauth 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 *InstitutionResponse) GetSupportsOauthOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.SupportsOauth.Get(), o.SupportsOauth.IsSet()
}
// HasSupportsOauth returns a boolean if a field has been set.
func (o *InstitutionResponse) HasSupportsOauth() bool {
if o != nil && o.SupportsOauth.IsSet() {
return true
}
return false
}
// SetSupportsOauth gets a reference to the given NullableBool and assigns it to the SupportsOauth field.
func (o *InstitutionResponse) SetSupportsOauth(v bool) {
o.SupportsOauth.Set(&v)
}
// SetSupportsOauthNil sets the value for SupportsOauth to be an explicit nil
func (o *InstitutionResponse) SetSupportsOauthNil() {
o.SupportsOauth.Set(nil)
}
// UnsetSupportsOauth ensures that no value is present for SupportsOauth, not even an explicit nil
func (o *InstitutionResponse) UnsetSupportsOauth() {
o.SupportsOauth.Unset()
}
// GetSupportsTaxDocument returns the SupportsTaxDocument field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetSupportsTaxDocument() bool {
if o == nil || IsNil(o.SupportsTaxDocument.Get()) {
var ret bool
return ret
}
return *o.SupportsTaxDocument.Get()
}
// GetSupportsTaxDocumentOk returns a tuple with the SupportsTaxDocument 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 *InstitutionResponse) GetSupportsTaxDocumentOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.SupportsTaxDocument.Get(), o.SupportsTaxDocument.IsSet()
}
// HasSupportsTaxDocument returns a boolean if a field has been set.
func (o *InstitutionResponse) HasSupportsTaxDocument() bool {
if o != nil && o.SupportsTaxDocument.IsSet() {
return true
}
return false
}
// SetSupportsTaxDocument gets a reference to the given NullableBool and assigns it to the SupportsTaxDocument field.
func (o *InstitutionResponse) SetSupportsTaxDocument(v bool) {
o.SupportsTaxDocument.Set(&v)
}
// SetSupportsTaxDocumentNil sets the value for SupportsTaxDocument to be an explicit nil
func (o *InstitutionResponse) SetSupportsTaxDocumentNil() {
o.SupportsTaxDocument.Set(nil)
}
// UnsetSupportsTaxDocument ensures that no value is present for SupportsTaxDocument, not even an explicit nil
func (o *InstitutionResponse) UnsetSupportsTaxDocument() {
o.SupportsTaxDocument.Unset()
}
// GetSupportsTransactionHistory returns the SupportsTransactionHistory field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetSupportsTransactionHistory() bool {
if o == nil || IsNil(o.SupportsTransactionHistory.Get()) {
var ret bool
return ret
}
return *o.SupportsTransactionHistory.Get()
}
// GetSupportsTransactionHistoryOk returns a tuple with the SupportsTransactionHistory 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 *InstitutionResponse) GetSupportsTransactionHistoryOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.SupportsTransactionHistory.Get(), o.SupportsTransactionHistory.IsSet()
}
// HasSupportsTransactionHistory returns a boolean if a field has been set.
func (o *InstitutionResponse) HasSupportsTransactionHistory() bool {
if o != nil && o.SupportsTransactionHistory.IsSet() {
return true
}
return false
}
// SetSupportsTransactionHistory gets a reference to the given NullableBool and assigns it to the SupportsTransactionHistory field.
func (o *InstitutionResponse) SetSupportsTransactionHistory(v bool) {
o.SupportsTransactionHistory.Set(&v)
}
// SetSupportsTransactionHistoryNil sets the value for SupportsTransactionHistory to be an explicit nil
func (o *InstitutionResponse) SetSupportsTransactionHistoryNil() {
o.SupportsTransactionHistory.Set(nil)
}
// UnsetSupportsTransactionHistory ensures that no value is present for SupportsTransactionHistory, not even an explicit nil
func (o *InstitutionResponse) UnsetSupportsTransactionHistory() {
o.SupportsTransactionHistory.Unset()
}
// GetTroubleSigningInUrl returns the TroubleSigningInUrl field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetTroubleSigningInUrl() string {
if o == nil || IsNil(o.TroubleSigningInUrl.Get()) {
var ret string
return ret
}
return *o.TroubleSigningInUrl.Get()
}
// GetTroubleSigningInUrlOk returns a tuple with the TroubleSigningInUrl 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 *InstitutionResponse) GetTroubleSigningInUrlOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.TroubleSigningInUrl.Get(), o.TroubleSigningInUrl.IsSet()
}
// HasTroubleSigningInUrl returns a boolean if a field has been set.
func (o *InstitutionResponse) HasTroubleSigningInUrl() bool {
if o != nil && o.TroubleSigningInUrl.IsSet() {
return true
}
return false
}
// SetTroubleSigningInUrl gets a reference to the given NullableString and assigns it to the TroubleSigningInUrl field.
func (o *InstitutionResponse) SetTroubleSigningInUrl(v string) {
o.TroubleSigningInUrl.Set(&v)
}
// SetTroubleSigningInUrlNil sets the value for TroubleSigningInUrl to be an explicit nil
func (o *InstitutionResponse) SetTroubleSigningInUrlNil() {
o.TroubleSigningInUrl.Set(nil)
}
// UnsetTroubleSigningInUrl ensures that no value is present for TroubleSigningInUrl, not even an explicit nil
func (o *InstitutionResponse) UnsetTroubleSigningInUrl() {
o.TroubleSigningInUrl.Unset()
}
// GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InstitutionResponse) GetUrl() string {
if o == nil || IsNil(o.Url.Get()) {
var ret string
return ret
}
return *o.Url.Get()
}
// GetUrlOk returns a tuple with the Url 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 *InstitutionResponse) GetUrlOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.Url.Get(), o.Url.IsSet()
}
// HasUrl returns a boolean if a field has been set.
func (o *InstitutionResponse) HasUrl() bool {
if o != nil && o.Url.IsSet() {
return true
}
return false
}
// SetUrl gets a reference to the given NullableString and assigns it to the Url field.
func (o *InstitutionResponse) SetUrl(v string) {
o.Url.Set(&v)
}
// SetUrlNil sets the value for Url to be an explicit nil
func (o *InstitutionResponse) SetUrlNil() {
o.Url.Set(nil)
}
// UnsetUrl ensures that no value is present for Url, not even an explicit nil
func (o *InstitutionResponse) UnsetUrl() {
o.Url.Unset()
}
func (o InstitutionResponse) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o InstitutionResponse) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if o.Code.IsSet() {
toSerialize["code"] = o.Code.Get()
}
if o.ForgotPasswordUrl.IsSet() {
toSerialize["forgot_password_url"] = o.ForgotPasswordUrl.Get()
}
if o.ForgotUsernameUrl.IsSet() {
toSerialize["forgot_username_url"] = o.ForgotUsernameUrl.Get()
}
if o.InstructionalText.IsSet() {
toSerialize["instructional_text"] = o.InstructionalText.Get()
}
if o.MediumLogoUrl.IsSet() {
toSerialize["medium_logo_url"] = o.MediumLogoUrl.Get()
}
if o.Name.IsSet() {
toSerialize["name"] = o.Name.Get()
}
if o.SmallLogoUrl.IsSet() {
toSerialize["small_logo_url"] = o.SmallLogoUrl.Get()
}
if o.SupportsAccountIdentification.IsSet() {
toSerialize["supports_account_identification"] = o.SupportsAccountIdentification.Get()
}
if o.SupportsAccountStatement.IsSet() {
toSerialize["supports_account_statement"] = o.SupportsAccountStatement.Get()
}
if o.SupportsAccountVerification.IsSet() {
toSerialize["supports_account_verification"] = o.SupportsAccountVerification.Get()
}
if o.SupportsOauth.IsSet() {
toSerialize["supports_oauth"] = o.SupportsOauth.Get()
}
if o.SupportsTaxDocument.IsSet() {
toSerialize["supports_tax_document"] = o.SupportsTaxDocument.Get()
}
if o.SupportsTransactionHistory.IsSet() {
toSerialize["supports_transaction_history"] = o.SupportsTransactionHistory.Get()
}
if o.TroubleSigningInUrl.IsSet() {
toSerialize["trouble_signing_in_url"] = o.TroubleSigningInUrl.Get()
}
if o.Url.IsSet() {
toSerialize["url"] = o.Url.Get()
}
return toSerialize, nil
}
type NullableInstitutionResponse struct {
value *InstitutionResponse
isSet bool
}
func (v NullableInstitutionResponse) Get() *InstitutionResponse {
return v.value
}
func (v *NullableInstitutionResponse) Set(val *InstitutionResponse) {
v.value = val
v.isSet = true
}
func (v NullableInstitutionResponse) IsSet() bool {
return v.isSet
}
func (v *NullableInstitutionResponse) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableInstitutionResponse(val *InstitutionResponse) *NullableInstitutionResponse {
return &NullableInstitutionResponse{value: val, isSet: true}
}
func (v NullableInstitutionResponse) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableInstitutionResponse) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}