-
Notifications
You must be signed in to change notification settings - Fork 157
/
model_custom_field.go
1088 lines (925 loc) · 30.4 KB
/
model_custom_field.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
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
/*
NetBox REST API
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
API version: 4.0.3 (4.0)
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package netbox
import (
"encoding/json"
"fmt"
"time"
)
// checks if the CustomField type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &CustomField{}
// CustomField Extends the built-in ModelSerializer to enforce calling full_clean() on a copy of the associated instance during validation. (DRF does not do this by default; see https://github.com/encode/django-rest-framework/issues/3144)
type CustomField struct {
Id int32 `json:"id"`
Url string `json:"url"`
Display string `json:"display"`
ObjectTypes []string `json:"object_types"`
Type CustomFieldType `json:"type"`
RelatedObjectType NullableString `json:"related_object_type,omitempty"`
DataType string `json:"data_type"`
// Internal field name
Name string `json:"name"`
// Name of the field as displayed to users (if not provided, 'the field's name will be used)
Label *string `json:"label,omitempty"`
// Custom fields within the same group will be displayed together
GroupName *string `json:"group_name,omitempty"`
Description *string `json:"description,omitempty"`
// If true, this field is required when creating new objects or editing an existing object.
Required *bool `json:"required,omitempty"`
// Weighting for search. Lower values are considered more important. Fields with a search weight of zero will be ignored.
SearchWeight *int32 `json:"search_weight,omitempty"`
FilterLogic *CustomFieldFilterLogic `json:"filter_logic,omitempty"`
UiVisible *CustomFieldUiVisible `json:"ui_visible,omitempty"`
UiEditable *CustomFieldUiEditable `json:"ui_editable,omitempty"`
// Replicate this value when cloning objects
IsCloneable *bool `json:"is_cloneable,omitempty"`
// Default value for the field (must be a JSON value). Encapsulate strings with double quotes (e.g. \"Foo\").
Default interface{} `json:"default,omitempty"`
// Fields with higher weights appear lower in a form.
Weight *int32 `json:"weight,omitempty"`
// Minimum allowed value (for numeric fields)
ValidationMinimum NullableInt64 `json:"validation_minimum,omitempty"`
// Maximum allowed value (for numeric fields)
ValidationMaximum NullableInt64 `json:"validation_maximum,omitempty"`
// Regular expression to enforce on text field values. Use ^ and $ to force matching of entire string. For example, <code>^[A-Z]{3}$</code> will limit values to exactly three uppercase letters.
ValidationRegex *string `json:"validation_regex,omitempty"`
ChoiceSet NullableCustomFieldChoiceSet `json:"choice_set,omitempty"`
Comments *string `json:"comments,omitempty"`
Created NullableTime `json:"created"`
LastUpdated NullableTime `json:"last_updated"`
AdditionalProperties map[string]interface{}
}
type _CustomField CustomField
// NewCustomField instantiates a new CustomField 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 NewCustomField(id int32, url string, display string, objectTypes []string, type_ CustomFieldType, dataType string, name string, created NullableTime, lastUpdated NullableTime) *CustomField {
this := CustomField{}
this.Id = id
this.Url = url
this.Display = display
this.ObjectTypes = objectTypes
this.Type = type_
this.DataType = dataType
this.Name = name
this.Created = created
this.LastUpdated = lastUpdated
return &this
}
// NewCustomFieldWithDefaults instantiates a new CustomField 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 NewCustomFieldWithDefaults() *CustomField {
this := CustomField{}
return &this
}
// GetId returns the Id field value
func (o *CustomField) GetId() int32 {
if o == nil {
var ret int32
return ret
}
return o.Id
}
// GetIdOk returns a tuple with the Id field value
// and a boolean to check if the value has been set.
func (o *CustomField) GetIdOk() (*int32, bool) {
if o == nil {
return nil, false
}
return &o.Id, true
}
// SetId sets field value
func (o *CustomField) SetId(v int32) {
o.Id = v
}
// GetUrl returns the Url field value
func (o *CustomField) GetUrl() string {
if o == nil {
var ret string
return ret
}
return o.Url
}
// GetUrlOk returns a tuple with the Url field value
// and a boolean to check if the value has been set.
func (o *CustomField) GetUrlOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Url, true
}
// SetUrl sets field value
func (o *CustomField) SetUrl(v string) {
o.Url = v
}
// GetDisplay returns the Display field value
func (o *CustomField) GetDisplay() string {
if o == nil {
var ret string
return ret
}
return o.Display
}
// GetDisplayOk returns a tuple with the Display field value
// and a boolean to check if the value has been set.
func (o *CustomField) GetDisplayOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Display, true
}
// SetDisplay sets field value
func (o *CustomField) SetDisplay(v string) {
o.Display = v
}
// GetObjectTypes returns the ObjectTypes field value
func (o *CustomField) GetObjectTypes() []string {
if o == nil {
var ret []string
return ret
}
return o.ObjectTypes
}
// GetObjectTypesOk returns a tuple with the ObjectTypes field value
// and a boolean to check if the value has been set.
func (o *CustomField) GetObjectTypesOk() ([]string, bool) {
if o == nil {
return nil, false
}
return o.ObjectTypes, true
}
// SetObjectTypes sets field value
func (o *CustomField) SetObjectTypes(v []string) {
o.ObjectTypes = v
}
// GetType returns the Type field value
func (o *CustomField) GetType() CustomFieldType {
if o == nil {
var ret CustomFieldType
return ret
}
return o.Type
}
// GetTypeOk returns a tuple with the Type field value
// and a boolean to check if the value has been set.
func (o *CustomField) GetTypeOk() (*CustomFieldType, bool) {
if o == nil {
return nil, false
}
return &o.Type, true
}
// SetType sets field value
func (o *CustomField) SetType(v CustomFieldType) {
o.Type = v
}
// GetRelatedObjectType returns the RelatedObjectType field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CustomField) GetRelatedObjectType() string {
if o == nil || IsNil(o.RelatedObjectType.Get()) {
var ret string
return ret
}
return *o.RelatedObjectType.Get()
}
// GetRelatedObjectTypeOk returns a tuple with the RelatedObjectType 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 *CustomField) GetRelatedObjectTypeOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.RelatedObjectType.Get(), o.RelatedObjectType.IsSet()
}
// HasRelatedObjectType returns a boolean if a field has been set.
func (o *CustomField) HasRelatedObjectType() bool {
if o != nil && o.RelatedObjectType.IsSet() {
return true
}
return false
}
// SetRelatedObjectType gets a reference to the given NullableString and assigns it to the RelatedObjectType field.
func (o *CustomField) SetRelatedObjectType(v string) {
o.RelatedObjectType.Set(&v)
}
// SetRelatedObjectTypeNil sets the value for RelatedObjectType to be an explicit nil
func (o *CustomField) SetRelatedObjectTypeNil() {
o.RelatedObjectType.Set(nil)
}
// UnsetRelatedObjectType ensures that no value is present for RelatedObjectType, not even an explicit nil
func (o *CustomField) UnsetRelatedObjectType() {
o.RelatedObjectType.Unset()
}
// GetDataType returns the DataType field value
func (o *CustomField) GetDataType() string {
if o == nil {
var ret string
return ret
}
return o.DataType
}
// GetDataTypeOk returns a tuple with the DataType field value
// and a boolean to check if the value has been set.
func (o *CustomField) GetDataTypeOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.DataType, true
}
// SetDataType sets field value
func (o *CustomField) SetDataType(v string) {
o.DataType = v
}
// GetName returns the Name field value
func (o *CustomField) GetName() string {
if o == nil {
var ret string
return ret
}
return o.Name
}
// GetNameOk returns a tuple with the Name field value
// and a boolean to check if the value has been set.
func (o *CustomField) GetNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Name, true
}
// SetName sets field value
func (o *CustomField) SetName(v string) {
o.Name = v
}
// GetLabel returns the Label field value if set, zero value otherwise.
func (o *CustomField) GetLabel() string {
if o == nil || IsNil(o.Label) {
var ret string
return ret
}
return *o.Label
}
// GetLabelOk returns a tuple with the Label field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetLabelOk() (*string, bool) {
if o == nil || IsNil(o.Label) {
return nil, false
}
return o.Label, true
}
// HasLabel returns a boolean if a field has been set.
func (o *CustomField) HasLabel() bool {
if o != nil && !IsNil(o.Label) {
return true
}
return false
}
// SetLabel gets a reference to the given string and assigns it to the Label field.
func (o *CustomField) SetLabel(v string) {
o.Label = &v
}
// GetGroupName returns the GroupName field value if set, zero value otherwise.
func (o *CustomField) GetGroupName() string {
if o == nil || IsNil(o.GroupName) {
var ret string
return ret
}
return *o.GroupName
}
// GetGroupNameOk returns a tuple with the GroupName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetGroupNameOk() (*string, bool) {
if o == nil || IsNil(o.GroupName) {
return nil, false
}
return o.GroupName, true
}
// HasGroupName returns a boolean if a field has been set.
func (o *CustomField) HasGroupName() bool {
if o != nil && !IsNil(o.GroupName) {
return true
}
return false
}
// SetGroupName gets a reference to the given string and assigns it to the GroupName field.
func (o *CustomField) SetGroupName(v string) {
o.GroupName = &v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *CustomField) 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 *CustomField) 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 *CustomField) 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 *CustomField) SetDescription(v string) {
o.Description = &v
}
// GetRequired returns the Required field value if set, zero value otherwise.
func (o *CustomField) GetRequired() bool {
if o == nil || IsNil(o.Required) {
var ret bool
return ret
}
return *o.Required
}
// GetRequiredOk returns a tuple with the Required field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetRequiredOk() (*bool, bool) {
if o == nil || IsNil(o.Required) {
return nil, false
}
return o.Required, true
}
// HasRequired returns a boolean if a field has been set.
func (o *CustomField) HasRequired() bool {
if o != nil && !IsNil(o.Required) {
return true
}
return false
}
// SetRequired gets a reference to the given bool and assigns it to the Required field.
func (o *CustomField) SetRequired(v bool) {
o.Required = &v
}
// GetSearchWeight returns the SearchWeight field value if set, zero value otherwise.
func (o *CustomField) GetSearchWeight() int32 {
if o == nil || IsNil(o.SearchWeight) {
var ret int32
return ret
}
return *o.SearchWeight
}
// GetSearchWeightOk returns a tuple with the SearchWeight field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetSearchWeightOk() (*int32, bool) {
if o == nil || IsNil(o.SearchWeight) {
return nil, false
}
return o.SearchWeight, true
}
// HasSearchWeight returns a boolean if a field has been set.
func (o *CustomField) HasSearchWeight() bool {
if o != nil && !IsNil(o.SearchWeight) {
return true
}
return false
}
// SetSearchWeight gets a reference to the given int32 and assigns it to the SearchWeight field.
func (o *CustomField) SetSearchWeight(v int32) {
o.SearchWeight = &v
}
// GetFilterLogic returns the FilterLogic field value if set, zero value otherwise.
func (o *CustomField) GetFilterLogic() CustomFieldFilterLogic {
if o == nil || IsNil(o.FilterLogic) {
var ret CustomFieldFilterLogic
return ret
}
return *o.FilterLogic
}
// GetFilterLogicOk returns a tuple with the FilterLogic field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetFilterLogicOk() (*CustomFieldFilterLogic, bool) {
if o == nil || IsNil(o.FilterLogic) {
return nil, false
}
return o.FilterLogic, true
}
// HasFilterLogic returns a boolean if a field has been set.
func (o *CustomField) HasFilterLogic() bool {
if o != nil && !IsNil(o.FilterLogic) {
return true
}
return false
}
// SetFilterLogic gets a reference to the given CustomFieldFilterLogic and assigns it to the FilterLogic field.
func (o *CustomField) SetFilterLogic(v CustomFieldFilterLogic) {
o.FilterLogic = &v
}
// GetUiVisible returns the UiVisible field value if set, zero value otherwise.
func (o *CustomField) GetUiVisible() CustomFieldUiVisible {
if o == nil || IsNil(o.UiVisible) {
var ret CustomFieldUiVisible
return ret
}
return *o.UiVisible
}
// GetUiVisibleOk returns a tuple with the UiVisible field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetUiVisibleOk() (*CustomFieldUiVisible, bool) {
if o == nil || IsNil(o.UiVisible) {
return nil, false
}
return o.UiVisible, true
}
// HasUiVisible returns a boolean if a field has been set.
func (o *CustomField) HasUiVisible() bool {
if o != nil && !IsNil(o.UiVisible) {
return true
}
return false
}
// SetUiVisible gets a reference to the given CustomFieldUiVisible and assigns it to the UiVisible field.
func (o *CustomField) SetUiVisible(v CustomFieldUiVisible) {
o.UiVisible = &v
}
// GetUiEditable returns the UiEditable field value if set, zero value otherwise.
func (o *CustomField) GetUiEditable() CustomFieldUiEditable {
if o == nil || IsNil(o.UiEditable) {
var ret CustomFieldUiEditable
return ret
}
return *o.UiEditable
}
// GetUiEditableOk returns a tuple with the UiEditable field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetUiEditableOk() (*CustomFieldUiEditable, bool) {
if o == nil || IsNil(o.UiEditable) {
return nil, false
}
return o.UiEditable, true
}
// HasUiEditable returns a boolean if a field has been set.
func (o *CustomField) HasUiEditable() bool {
if o != nil && !IsNil(o.UiEditable) {
return true
}
return false
}
// SetUiEditable gets a reference to the given CustomFieldUiEditable and assigns it to the UiEditable field.
func (o *CustomField) SetUiEditable(v CustomFieldUiEditable) {
o.UiEditable = &v
}
// GetIsCloneable returns the IsCloneable field value if set, zero value otherwise.
func (o *CustomField) GetIsCloneable() bool {
if o == nil || IsNil(o.IsCloneable) {
var ret bool
return ret
}
return *o.IsCloneable
}
// GetIsCloneableOk returns a tuple with the IsCloneable field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetIsCloneableOk() (*bool, bool) {
if o == nil || IsNil(o.IsCloneable) {
return nil, false
}
return o.IsCloneable, true
}
// HasIsCloneable returns a boolean if a field has been set.
func (o *CustomField) HasIsCloneable() bool {
if o != nil && !IsNil(o.IsCloneable) {
return true
}
return false
}
// SetIsCloneable gets a reference to the given bool and assigns it to the IsCloneable field.
func (o *CustomField) SetIsCloneable(v bool) {
o.IsCloneable = &v
}
// GetDefault returns the Default field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CustomField) GetDefault() interface{} {
if o == nil {
var ret interface{}
return ret
}
return o.Default
}
// GetDefaultOk returns a tuple with the Default 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 *CustomField) GetDefaultOk() (*interface{}, bool) {
if o == nil || IsNil(o.Default) {
return nil, false
}
return &o.Default, true
}
// HasDefault returns a boolean if a field has been set.
func (o *CustomField) HasDefault() bool {
if o != nil && !IsNil(o.Default) {
return true
}
return false
}
// SetDefault gets a reference to the given interface{} and assigns it to the Default field.
func (o *CustomField) SetDefault(v interface{}) {
o.Default = v
}
// GetWeight returns the Weight field value if set, zero value otherwise.
func (o *CustomField) GetWeight() int32 {
if o == nil || IsNil(o.Weight) {
var ret int32
return ret
}
return *o.Weight
}
// GetWeightOk returns a tuple with the Weight field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetWeightOk() (*int32, bool) {
if o == nil || IsNil(o.Weight) {
return nil, false
}
return o.Weight, true
}
// HasWeight returns a boolean if a field has been set.
func (o *CustomField) HasWeight() bool {
if o != nil && !IsNil(o.Weight) {
return true
}
return false
}
// SetWeight gets a reference to the given int32 and assigns it to the Weight field.
func (o *CustomField) SetWeight(v int32) {
o.Weight = &v
}
// GetValidationMinimum returns the ValidationMinimum field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CustomField) GetValidationMinimum() int64 {
if o == nil || IsNil(o.ValidationMinimum.Get()) {
var ret int64
return ret
}
return *o.ValidationMinimum.Get()
}
// GetValidationMinimumOk returns a tuple with the ValidationMinimum 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 *CustomField) GetValidationMinimumOk() (*int64, bool) {
if o == nil {
return nil, false
}
return o.ValidationMinimum.Get(), o.ValidationMinimum.IsSet()
}
// HasValidationMinimum returns a boolean if a field has been set.
func (o *CustomField) HasValidationMinimum() bool {
if o != nil && o.ValidationMinimum.IsSet() {
return true
}
return false
}
// SetValidationMinimum gets a reference to the given NullableInt64 and assigns it to the ValidationMinimum field.
func (o *CustomField) SetValidationMinimum(v int64) {
o.ValidationMinimum.Set(&v)
}
// SetValidationMinimumNil sets the value for ValidationMinimum to be an explicit nil
func (o *CustomField) SetValidationMinimumNil() {
o.ValidationMinimum.Set(nil)
}
// UnsetValidationMinimum ensures that no value is present for ValidationMinimum, not even an explicit nil
func (o *CustomField) UnsetValidationMinimum() {
o.ValidationMinimum.Unset()
}
// GetValidationMaximum returns the ValidationMaximum field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CustomField) GetValidationMaximum() int64 {
if o == nil || IsNil(o.ValidationMaximum.Get()) {
var ret int64
return ret
}
return *o.ValidationMaximum.Get()
}
// GetValidationMaximumOk returns a tuple with the ValidationMaximum 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 *CustomField) GetValidationMaximumOk() (*int64, bool) {
if o == nil {
return nil, false
}
return o.ValidationMaximum.Get(), o.ValidationMaximum.IsSet()
}
// HasValidationMaximum returns a boolean if a field has been set.
func (o *CustomField) HasValidationMaximum() bool {
if o != nil && o.ValidationMaximum.IsSet() {
return true
}
return false
}
// SetValidationMaximum gets a reference to the given NullableInt64 and assigns it to the ValidationMaximum field.
func (o *CustomField) SetValidationMaximum(v int64) {
o.ValidationMaximum.Set(&v)
}
// SetValidationMaximumNil sets the value for ValidationMaximum to be an explicit nil
func (o *CustomField) SetValidationMaximumNil() {
o.ValidationMaximum.Set(nil)
}
// UnsetValidationMaximum ensures that no value is present for ValidationMaximum, not even an explicit nil
func (o *CustomField) UnsetValidationMaximum() {
o.ValidationMaximum.Unset()
}
// GetValidationRegex returns the ValidationRegex field value if set, zero value otherwise.
func (o *CustomField) GetValidationRegex() string {
if o == nil || IsNil(o.ValidationRegex) {
var ret string
return ret
}
return *o.ValidationRegex
}
// GetValidationRegexOk returns a tuple with the ValidationRegex field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetValidationRegexOk() (*string, bool) {
if o == nil || IsNil(o.ValidationRegex) {
return nil, false
}
return o.ValidationRegex, true
}
// HasValidationRegex returns a boolean if a field has been set.
func (o *CustomField) HasValidationRegex() bool {
if o != nil && !IsNil(o.ValidationRegex) {
return true
}
return false
}
// SetValidationRegex gets a reference to the given string and assigns it to the ValidationRegex field.
func (o *CustomField) SetValidationRegex(v string) {
o.ValidationRegex = &v
}
// GetChoiceSet returns the ChoiceSet field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CustomField) GetChoiceSet() CustomFieldChoiceSet {
if o == nil || IsNil(o.ChoiceSet.Get()) {
var ret CustomFieldChoiceSet
return ret
}
return *o.ChoiceSet.Get()
}
// GetChoiceSetOk returns a tuple with the ChoiceSet 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 *CustomField) GetChoiceSetOk() (*CustomFieldChoiceSet, bool) {
if o == nil {
return nil, false
}
return o.ChoiceSet.Get(), o.ChoiceSet.IsSet()
}
// HasChoiceSet returns a boolean if a field has been set.
func (o *CustomField) HasChoiceSet() bool {
if o != nil && o.ChoiceSet.IsSet() {
return true
}
return false
}
// SetChoiceSet gets a reference to the given NullableCustomFieldChoiceSet and assigns it to the ChoiceSet field.
func (o *CustomField) SetChoiceSet(v CustomFieldChoiceSet) {
o.ChoiceSet.Set(&v)
}
// SetChoiceSetNil sets the value for ChoiceSet to be an explicit nil
func (o *CustomField) SetChoiceSetNil() {
o.ChoiceSet.Set(nil)
}
// UnsetChoiceSet ensures that no value is present for ChoiceSet, not even an explicit nil
func (o *CustomField) UnsetChoiceSet() {
o.ChoiceSet.Unset()
}
// GetComments returns the Comments field value if set, zero value otherwise.
func (o *CustomField) GetComments() string {
if o == nil || IsNil(o.Comments) {
var ret string
return ret
}
return *o.Comments
}
// GetCommentsOk returns a tuple with the Comments field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CustomField) GetCommentsOk() (*string, bool) {
if o == nil || IsNil(o.Comments) {
return nil, false
}
return o.Comments, true
}
// HasComments returns a boolean if a field has been set.
func (o *CustomField) HasComments() bool {
if o != nil && !IsNil(o.Comments) {
return true
}
return false
}
// SetComments gets a reference to the given string and assigns it to the Comments field.
func (o *CustomField) SetComments(v string) {
o.Comments = &v
}
// GetCreated returns the Created field value
// If the value is explicit nil, the zero value for time.Time will be returned
func (o *CustomField) GetCreated() time.Time {
if o == nil || o.Created.Get() == nil {
var ret time.Time
return ret
}
return *o.Created.Get()
}
// GetCreatedOk returns a tuple with the Created field value
// 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 *CustomField) GetCreatedOk() (*time.Time, bool) {
if o == nil {
return nil, false
}
return o.Created.Get(), o.Created.IsSet()
}
// SetCreated sets field value
func (o *CustomField) SetCreated(v time.Time) {
o.Created.Set(&v)
}
// GetLastUpdated returns the LastUpdated field value
// If the value is explicit nil, the zero value for time.Time will be returned
func (o *CustomField) GetLastUpdated() time.Time {
if o == nil || o.LastUpdated.Get() == nil {
var ret time.Time
return ret
}
return *o.LastUpdated.Get()
}
// GetLastUpdatedOk returns a tuple with the LastUpdated field value
// 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 *CustomField) GetLastUpdatedOk() (*time.Time, bool) {
if o == nil {
return nil, false
}
return o.LastUpdated.Get(), o.LastUpdated.IsSet()
}
// SetLastUpdated sets field value
func (o *CustomField) SetLastUpdated(v time.Time) {
o.LastUpdated.Set(&v)
}
func (o CustomField) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o CustomField) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["id"] = o.Id
toSerialize["url"] = o.Url
toSerialize["display"] = o.Display
toSerialize["object_types"] = o.ObjectTypes
toSerialize["type"] = o.Type
if o.RelatedObjectType.IsSet() {
toSerialize["related_object_type"] = o.RelatedObjectType.Get()
}
toSerialize["data_type"] = o.DataType
toSerialize["name"] = o.Name
if !IsNil(o.Label) {
toSerialize["label"] = o.Label
}
if !IsNil(o.GroupName) {
toSerialize["group_name"] = o.GroupName
}
if !IsNil(o.Description) {
toSerialize["description"] = o.Description
}
if !IsNil(o.Required) {
toSerialize["required"] = o.Required
}
if !IsNil(o.SearchWeight) {
toSerialize["search_weight"] = o.SearchWeight
}
if !IsNil(o.FilterLogic) {
toSerialize["filter_logic"] = o.FilterLogic
}
if !IsNil(o.UiVisible) {
toSerialize["ui_visible"] = o.UiVisible
}
if !IsNil(o.UiEditable) {
toSerialize["ui_editable"] = o.UiEditable
}
if !IsNil(o.IsCloneable) {
toSerialize["is_cloneable"] = o.IsCloneable
}
if o.Default != nil {
toSerialize["default"] = o.Default
}
if !IsNil(o.Weight) {
toSerialize["weight"] = o.Weight
}
if o.ValidationMinimum.IsSet() {
toSerialize["validation_minimum"] = o.ValidationMinimum.Get()
}
if o.ValidationMaximum.IsSet() {
toSerialize["validation_maximum"] = o.ValidationMaximum.Get()
}
if !IsNil(o.ValidationRegex) {
toSerialize["validation_regex"] = o.ValidationRegex
}
if o.ChoiceSet.IsSet() {
toSerialize["choice_set"] = o.ChoiceSet.Get()
}
if !IsNil(o.Comments) {
toSerialize["comments"] = o.Comments
}
toSerialize["created"] = o.Created.Get()
toSerialize["last_updated"] = o.LastUpdated.Get()
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return toSerialize, nil
}
func (o *CustomField) UnmarshalJSON(data []byte) (err error) {
// This validates that all required properties are included in the JSON object
// by unmarshalling the object into a generic map with string keys and checking
// that every required field exists as a key in the generic map.
requiredProperties := []string{
"id",
"url",
"display",
"object_types",
"type",
"data_type",
"name",
"created",
"last_updated",
}
allProperties := make(map[string]interface{})
err = json.Unmarshal(data, &allProperties)
if err != nil {
return err