-
Notifications
You must be signed in to change notification settings - Fork 2
/
model_managed_transaction_update_request.go
810 lines (689 loc) · 23.9 KB
/
model_managed_transaction_update_request.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
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
/*
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 ManagedTransactionUpdateRequest type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ManagedTransactionUpdateRequest{}
// ManagedTransactionUpdateRequest struct for ManagedTransactionUpdateRequest
type ManagedTransactionUpdateRequest struct {
Amount *string `json:"amount,omitempty"`
Category *string `json:"category,omitempty"`
CheckNumberString *string `json:"check_number_string,omitempty"`
CurrencyCode *string `json:"currency_code,omitempty"`
Description *string `json:"description,omitempty"`
Id *string `json:"id,omitempty"`
IsInternational *bool `json:"is_international,omitempty"`
Latitude *float32 `json:"latitude,omitempty"`
LocalizedDescription *string `json:"localized_description,omitempty"`
LocalizedMemo *string `json:"localized_memo,omitempty"`
Longitude *float32 `json:"longitude,omitempty"`
Memo *string `json:"memo,omitempty"`
MerchantCategoryCode *int32 `json:"merchant_category_code,omitempty"`
MerchantGuid *string `json:"merchant_guid,omitempty"`
MerchantLocationGuid *string `json:"merchant_location_guid,omitempty"`
Metadata *string `json:"metadata,omitempty"`
PostedAt *string `json:"posted_at,omitempty"`
Status *string `json:"status,omitempty"`
TransactedAt *string `json:"transacted_at,omitempty"`
Type *string `json:"type,omitempty"`
}
// NewManagedTransactionUpdateRequest instantiates a new ManagedTransactionUpdateRequest 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 NewManagedTransactionUpdateRequest() *ManagedTransactionUpdateRequest {
this := ManagedTransactionUpdateRequest{}
return &this
}
// NewManagedTransactionUpdateRequestWithDefaults instantiates a new ManagedTransactionUpdateRequest 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 NewManagedTransactionUpdateRequestWithDefaults() *ManagedTransactionUpdateRequest {
this := ManagedTransactionUpdateRequest{}
return &this
}
// GetAmount returns the Amount field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetAmount() string {
if o == nil || IsNil(o.Amount) {
var ret string
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 *ManagedTransactionUpdateRequest) GetAmountOk() (*string, bool) {
if o == nil || IsNil(o.Amount) {
return nil, false
}
return o.Amount, true
}
// HasAmount returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasAmount() bool {
if o != nil && !IsNil(o.Amount) {
return true
}
return false
}
// SetAmount gets a reference to the given string and assigns it to the Amount field.
func (o *ManagedTransactionUpdateRequest) SetAmount(v string) {
o.Amount = &v
}
// GetCategory returns the Category field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetCategory() string {
if o == nil || IsNil(o.Category) {
var ret string
return ret
}
return *o.Category
}
// GetCategoryOk returns a tuple with the Category field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetCategoryOk() (*string, bool) {
if o == nil || IsNil(o.Category) {
return nil, false
}
return o.Category, true
}
// HasCategory returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasCategory() bool {
if o != nil && !IsNil(o.Category) {
return true
}
return false
}
// SetCategory gets a reference to the given string and assigns it to the Category field.
func (o *ManagedTransactionUpdateRequest) SetCategory(v string) {
o.Category = &v
}
// GetCheckNumberString returns the CheckNumberString field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetCheckNumberString() string {
if o == nil || IsNil(o.CheckNumberString) {
var ret string
return ret
}
return *o.CheckNumberString
}
// GetCheckNumberStringOk returns a tuple with the CheckNumberString field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetCheckNumberStringOk() (*string, bool) {
if o == nil || IsNil(o.CheckNumberString) {
return nil, false
}
return o.CheckNumberString, true
}
// HasCheckNumberString returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasCheckNumberString() bool {
if o != nil && !IsNil(o.CheckNumberString) {
return true
}
return false
}
// SetCheckNumberString gets a reference to the given string and assigns it to the CheckNumberString field.
func (o *ManagedTransactionUpdateRequest) SetCheckNumberString(v string) {
o.CheckNumberString = &v
}
// GetCurrencyCode returns the CurrencyCode field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetCurrencyCode() string {
if o == nil || IsNil(o.CurrencyCode) {
var ret string
return ret
}
return *o.CurrencyCode
}
// GetCurrencyCodeOk returns a tuple with the CurrencyCode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetCurrencyCodeOk() (*string, bool) {
if o == nil || IsNil(o.CurrencyCode) {
return nil, false
}
return o.CurrencyCode, true
}
// HasCurrencyCode returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasCurrencyCode() bool {
if o != nil && !IsNil(o.CurrencyCode) {
return true
}
return false
}
// SetCurrencyCode gets a reference to the given string and assigns it to the CurrencyCode field.
func (o *ManagedTransactionUpdateRequest) SetCurrencyCode(v string) {
o.CurrencyCode = &v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetDescription() string {
if o == nil || IsNil(o.Description) {
var ret string
return ret
}
return *o.Description
}
// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetDescriptionOk() (*string, bool) {
if o == nil || IsNil(o.Description) {
return nil, false
}
return o.Description, true
}
// HasDescription returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasDescription() bool {
if o != nil && !IsNil(o.Description) {
return true
}
return false
}
// SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *ManagedTransactionUpdateRequest) SetDescription(v string) {
o.Description = &v
}
// GetId returns the Id field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) 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 *ManagedTransactionUpdateRequest) 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 *ManagedTransactionUpdateRequest) 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 *ManagedTransactionUpdateRequest) SetId(v string) {
o.Id = &v
}
// GetIsInternational returns the IsInternational field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetIsInternational() bool {
if o == nil || IsNil(o.IsInternational) {
var ret bool
return ret
}
return *o.IsInternational
}
// GetIsInternationalOk returns a tuple with the IsInternational field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetIsInternationalOk() (*bool, bool) {
if o == nil || IsNil(o.IsInternational) {
return nil, false
}
return o.IsInternational, true
}
// HasIsInternational returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasIsInternational() bool {
if o != nil && !IsNil(o.IsInternational) {
return true
}
return false
}
// SetIsInternational gets a reference to the given bool and assigns it to the IsInternational field.
func (o *ManagedTransactionUpdateRequest) SetIsInternational(v bool) {
o.IsInternational = &v
}
// GetLatitude returns the Latitude field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetLatitude() float32 {
if o == nil || IsNil(o.Latitude) {
var ret float32
return ret
}
return *o.Latitude
}
// GetLatitudeOk returns a tuple with the Latitude field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetLatitudeOk() (*float32, bool) {
if o == nil || IsNil(o.Latitude) {
return nil, false
}
return o.Latitude, true
}
// HasLatitude returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasLatitude() bool {
if o != nil && !IsNil(o.Latitude) {
return true
}
return false
}
// SetLatitude gets a reference to the given float32 and assigns it to the Latitude field.
func (o *ManagedTransactionUpdateRequest) SetLatitude(v float32) {
o.Latitude = &v
}
// GetLocalizedDescription returns the LocalizedDescription field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetLocalizedDescription() string {
if o == nil || IsNil(o.LocalizedDescription) {
var ret string
return ret
}
return *o.LocalizedDescription
}
// GetLocalizedDescriptionOk returns a tuple with the LocalizedDescription field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetLocalizedDescriptionOk() (*string, bool) {
if o == nil || IsNil(o.LocalizedDescription) {
return nil, false
}
return o.LocalizedDescription, true
}
// HasLocalizedDescription returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasLocalizedDescription() bool {
if o != nil && !IsNil(o.LocalizedDescription) {
return true
}
return false
}
// SetLocalizedDescription gets a reference to the given string and assigns it to the LocalizedDescription field.
func (o *ManagedTransactionUpdateRequest) SetLocalizedDescription(v string) {
o.LocalizedDescription = &v
}
// GetLocalizedMemo returns the LocalizedMemo field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetLocalizedMemo() string {
if o == nil || IsNil(o.LocalizedMemo) {
var ret string
return ret
}
return *o.LocalizedMemo
}
// GetLocalizedMemoOk returns a tuple with the LocalizedMemo field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetLocalizedMemoOk() (*string, bool) {
if o == nil || IsNil(o.LocalizedMemo) {
return nil, false
}
return o.LocalizedMemo, true
}
// HasLocalizedMemo returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasLocalizedMemo() bool {
if o != nil && !IsNil(o.LocalizedMemo) {
return true
}
return false
}
// SetLocalizedMemo gets a reference to the given string and assigns it to the LocalizedMemo field.
func (o *ManagedTransactionUpdateRequest) SetLocalizedMemo(v string) {
o.LocalizedMemo = &v
}
// GetLongitude returns the Longitude field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetLongitude() float32 {
if o == nil || IsNil(o.Longitude) {
var ret float32
return ret
}
return *o.Longitude
}
// GetLongitudeOk returns a tuple with the Longitude field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetLongitudeOk() (*float32, bool) {
if o == nil || IsNil(o.Longitude) {
return nil, false
}
return o.Longitude, true
}
// HasLongitude returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasLongitude() bool {
if o != nil && !IsNil(o.Longitude) {
return true
}
return false
}
// SetLongitude gets a reference to the given float32 and assigns it to the Longitude field.
func (o *ManagedTransactionUpdateRequest) SetLongitude(v float32) {
o.Longitude = &v
}
// GetMemo returns the Memo field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetMemo() string {
if o == nil || IsNil(o.Memo) {
var ret string
return ret
}
return *o.Memo
}
// GetMemoOk returns a tuple with the Memo field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetMemoOk() (*string, bool) {
if o == nil || IsNil(o.Memo) {
return nil, false
}
return o.Memo, true
}
// HasMemo returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasMemo() bool {
if o != nil && !IsNil(o.Memo) {
return true
}
return false
}
// SetMemo gets a reference to the given string and assigns it to the Memo field.
func (o *ManagedTransactionUpdateRequest) SetMemo(v string) {
o.Memo = &v
}
// GetMerchantCategoryCode returns the MerchantCategoryCode field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetMerchantCategoryCode() int32 {
if o == nil || IsNil(o.MerchantCategoryCode) {
var ret int32
return ret
}
return *o.MerchantCategoryCode
}
// GetMerchantCategoryCodeOk returns a tuple with the MerchantCategoryCode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetMerchantCategoryCodeOk() (*int32, bool) {
if o == nil || IsNil(o.MerchantCategoryCode) {
return nil, false
}
return o.MerchantCategoryCode, true
}
// HasMerchantCategoryCode returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasMerchantCategoryCode() bool {
if o != nil && !IsNil(o.MerchantCategoryCode) {
return true
}
return false
}
// SetMerchantCategoryCode gets a reference to the given int32 and assigns it to the MerchantCategoryCode field.
func (o *ManagedTransactionUpdateRequest) SetMerchantCategoryCode(v int32) {
o.MerchantCategoryCode = &v
}
// GetMerchantGuid returns the MerchantGuid field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetMerchantGuid() string {
if o == nil || IsNil(o.MerchantGuid) {
var ret string
return ret
}
return *o.MerchantGuid
}
// GetMerchantGuidOk returns a tuple with the MerchantGuid field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetMerchantGuidOk() (*string, bool) {
if o == nil || IsNil(o.MerchantGuid) {
return nil, false
}
return o.MerchantGuid, true
}
// HasMerchantGuid returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasMerchantGuid() bool {
if o != nil && !IsNil(o.MerchantGuid) {
return true
}
return false
}
// SetMerchantGuid gets a reference to the given string and assigns it to the MerchantGuid field.
func (o *ManagedTransactionUpdateRequest) SetMerchantGuid(v string) {
o.MerchantGuid = &v
}
// GetMerchantLocationGuid returns the MerchantLocationGuid field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetMerchantLocationGuid() string {
if o == nil || IsNil(o.MerchantLocationGuid) {
var ret string
return ret
}
return *o.MerchantLocationGuid
}
// GetMerchantLocationGuidOk returns a tuple with the MerchantLocationGuid field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetMerchantLocationGuidOk() (*string, bool) {
if o == nil || IsNil(o.MerchantLocationGuid) {
return nil, false
}
return o.MerchantLocationGuid, true
}
// HasMerchantLocationGuid returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasMerchantLocationGuid() bool {
if o != nil && !IsNil(o.MerchantLocationGuid) {
return true
}
return false
}
// SetMerchantLocationGuid gets a reference to the given string and assigns it to the MerchantLocationGuid field.
func (o *ManagedTransactionUpdateRequest) SetMerchantLocationGuid(v string) {
o.MerchantLocationGuid = &v
}
// GetMetadata returns the Metadata field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetMetadata() string {
if o == nil || IsNil(o.Metadata) {
var ret string
return ret
}
return *o.Metadata
}
// GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetMetadataOk() (*string, bool) {
if o == nil || IsNil(o.Metadata) {
return nil, false
}
return o.Metadata, true
}
// HasMetadata returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasMetadata() bool {
if o != nil && !IsNil(o.Metadata) {
return true
}
return false
}
// SetMetadata gets a reference to the given string and assigns it to the Metadata field.
func (o *ManagedTransactionUpdateRequest) SetMetadata(v string) {
o.Metadata = &v
}
// GetPostedAt returns the PostedAt field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetPostedAt() string {
if o == nil || IsNil(o.PostedAt) {
var ret string
return ret
}
return *o.PostedAt
}
// GetPostedAtOk returns a tuple with the PostedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetPostedAtOk() (*string, bool) {
if o == nil || IsNil(o.PostedAt) {
return nil, false
}
return o.PostedAt, true
}
// HasPostedAt returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasPostedAt() bool {
if o != nil && !IsNil(o.PostedAt) {
return true
}
return false
}
// SetPostedAt gets a reference to the given string and assigns it to the PostedAt field.
func (o *ManagedTransactionUpdateRequest) SetPostedAt(v string) {
o.PostedAt = &v
}
// GetStatus returns the Status field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetStatus() string {
if o == nil || IsNil(o.Status) {
var ret string
return ret
}
return *o.Status
}
// GetStatusOk returns a tuple with the Status field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetStatusOk() (*string, bool) {
if o == nil || IsNil(o.Status) {
return nil, false
}
return o.Status, true
}
// HasStatus returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasStatus() bool {
if o != nil && !IsNil(o.Status) {
return true
}
return false
}
// SetStatus gets a reference to the given string and assigns it to the Status field.
func (o *ManagedTransactionUpdateRequest) SetStatus(v string) {
o.Status = &v
}
// GetTransactedAt returns the TransactedAt field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetTransactedAt() string {
if o == nil || IsNil(o.TransactedAt) {
var ret string
return ret
}
return *o.TransactedAt
}
// GetTransactedAtOk returns a tuple with the TransactedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetTransactedAtOk() (*string, bool) {
if o == nil || IsNil(o.TransactedAt) {
return nil, false
}
return o.TransactedAt, true
}
// HasTransactedAt returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasTransactedAt() bool {
if o != nil && !IsNil(o.TransactedAt) {
return true
}
return false
}
// SetTransactedAt gets a reference to the given string and assigns it to the TransactedAt field.
func (o *ManagedTransactionUpdateRequest) SetTransactedAt(v string) {
o.TransactedAt = &v
}
// GetType returns the Type field value if set, zero value otherwise.
func (o *ManagedTransactionUpdateRequest) GetType() string {
if o == nil || IsNil(o.Type) {
var ret string
return ret
}
return *o.Type
}
// GetTypeOk returns a tuple with the Type field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ManagedTransactionUpdateRequest) GetTypeOk() (*string, bool) {
if o == nil || IsNil(o.Type) {
return nil, false
}
return o.Type, true
}
// HasType returns a boolean if a field has been set.
func (o *ManagedTransactionUpdateRequest) HasType() bool {
if o != nil && !IsNil(o.Type) {
return true
}
return false
}
// SetType gets a reference to the given string and assigns it to the Type field.
func (o *ManagedTransactionUpdateRequest) SetType(v string) {
o.Type = &v
}
func (o ManagedTransactionUpdateRequest) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o ManagedTransactionUpdateRequest) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.Amount) {
toSerialize["amount"] = o.Amount
}
if !IsNil(o.Category) {
toSerialize["category"] = o.Category
}
if !IsNil(o.CheckNumberString) {
toSerialize["check_number_string"] = o.CheckNumberString
}
if !IsNil(o.CurrencyCode) {
toSerialize["currency_code"] = o.CurrencyCode
}
if !IsNil(o.Description) {
toSerialize["description"] = o.Description
}
if !IsNil(o.Id) {
toSerialize["id"] = o.Id
}
if !IsNil(o.IsInternational) {
toSerialize["is_international"] = o.IsInternational
}
if !IsNil(o.Latitude) {
toSerialize["latitude"] = o.Latitude
}
if !IsNil(o.LocalizedDescription) {
toSerialize["localized_description"] = o.LocalizedDescription
}
if !IsNil(o.LocalizedMemo) {
toSerialize["localized_memo"] = o.LocalizedMemo
}
if !IsNil(o.Longitude) {
toSerialize["longitude"] = o.Longitude
}
if !IsNil(o.Memo) {
toSerialize["memo"] = o.Memo
}
if !IsNil(o.MerchantCategoryCode) {
toSerialize["merchant_category_code"] = o.MerchantCategoryCode
}
if !IsNil(o.MerchantGuid) {
toSerialize["merchant_guid"] = o.MerchantGuid
}
if !IsNil(o.MerchantLocationGuid) {
toSerialize["merchant_location_guid"] = o.MerchantLocationGuid
}
if !IsNil(o.Metadata) {
toSerialize["metadata"] = o.Metadata
}
if !IsNil(o.PostedAt) {
toSerialize["posted_at"] = o.PostedAt
}
if !IsNil(o.Status) {
toSerialize["status"] = o.Status
}
if !IsNil(o.TransactedAt) {
toSerialize["transacted_at"] = o.TransactedAt
}
if !IsNil(o.Type) {
toSerialize["type"] = o.Type
}
return toSerialize, nil
}
type NullableManagedTransactionUpdateRequest struct {
value *ManagedTransactionUpdateRequest
isSet bool
}
func (v NullableManagedTransactionUpdateRequest) Get() *ManagedTransactionUpdateRequest {
return v.value
}
func (v *NullableManagedTransactionUpdateRequest) Set(val *ManagedTransactionUpdateRequest) {
v.value = val
v.isSet = true
}
func (v NullableManagedTransactionUpdateRequest) IsSet() bool {
return v.isSet
}
func (v *NullableManagedTransactionUpdateRequest) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableManagedTransactionUpdateRequest(val *ManagedTransactionUpdateRequest) *NullableManagedTransactionUpdateRequest {
return &NullableManagedTransactionUpdateRequest{value: val, isSet: true}
}
func (v NullableManagedTransactionUpdateRequest) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableManagedTransactionUpdateRequest) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}