-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel_create_subscription_plan_vm.go
1031 lines (882 loc) · 33.6 KB
/
model_create_subscription_plan_vm.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
/*
FastReport Cloud
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
API version: v1
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package gofrcloud
import (
"encoding/json"
"bytes"
"fmt"
)
// checks if the CreateSubscriptionPlanVM type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &CreateSubscriptionPlanVM{}
// CreateSubscriptionPlanVM struct for CreateSubscriptionPlanVM
type CreateSubscriptionPlanVM struct {
CloudBaseVM
IsActive NullableBool `json:"isActive,omitempty"`
DisplayName NullableString `json:"displayName,omitempty"`
TimePeriodType NullableTimePeriodType `json:"timePeriodType,omitempty"`
TimePeriod NullableInt32 `json:"timePeriod,omitempty"`
TemplatesSpaceLimit NullableInt64 `json:"templatesSpaceLimit,omitempty"`
ReportsSpaceLimit NullableInt64 `json:"reportsSpaceLimit,omitempty"`
ExportsSpaceLimit NullableInt64 `json:"exportsSpaceLimit,omitempty"`
FileUploadSizeLimit NullableInt64 `json:"fileUploadSizeLimit,omitempty"`
DataSourceLimit NullableInt32 `json:"dataSourceLimit,omitempty"`
MaxUsersCount NullableInt32 `json:"maxUsersCount,omitempty"`
GroupLimit NullableInt32 `json:"groupLimit,omitempty"`
OnlineDesigner NullableBool `json:"onlineDesigner,omitempty"`
IsDemo NullableBool `json:"isDemo,omitempty"`
UrlToBuy NullableString `json:"urlToBuy,omitempty"`
UnlimitedPage NullableBool `json:"unlimitedPage,omitempty"`
PageLimit NullableInt32 `json:"pageLimit,omitempty"`
ReadonlyTimeLimitType NullableTimePeriodType `json:"readonlyTimeLimitType,omitempty"`
ReadonlyTimeLimit NullableInt32 `json:"readonlyTimeLimit,omitempty"`
Tasks *TaskSettingsVM `json:"tasks,omitempty"`
T string `json:"$t"`
}
type _CreateSubscriptionPlanVM CreateSubscriptionPlanVM
// NewCreateSubscriptionPlanVM instantiates a new CreateSubscriptionPlanVM 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 NewCreateSubscriptionPlanVM(t string) *CreateSubscriptionPlanVM {
this := CreateSubscriptionPlanVM{}
this.T = t
return &this
}
// NewCreateSubscriptionPlanVMWithDefaults instantiates a new CreateSubscriptionPlanVM 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 NewCreateSubscriptionPlanVMWithDefaults() *CreateSubscriptionPlanVM {
this := CreateSubscriptionPlanVM{}
return &this
}
// GetIsActive returns the IsActive field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetIsActive() bool {
if o == nil || IsNil(o.IsActive.Get()) {
var ret bool
return ret
}
return *o.IsActive.Get()
}
// GetIsActiveOk returns a tuple with the IsActive 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 *CreateSubscriptionPlanVM) GetIsActiveOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.IsActive.Get(), o.IsActive.IsSet()
}
// HasIsActive returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasIsActive() bool {
if o != nil && o.IsActive.IsSet() {
return true
}
return false
}
// SetIsActive gets a reference to the given NullableBool and assigns it to the IsActive field.
func (o *CreateSubscriptionPlanVM) SetIsActive(v bool) {
o.IsActive.Set(&v)
}
// SetIsActiveNil sets the value for IsActive to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetIsActiveNil() {
o.IsActive.Set(nil)
}
// UnsetIsActive ensures that no value is present for IsActive, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetIsActive() {
o.IsActive.Unset()
}
// GetDisplayName returns the DisplayName field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetDisplayName() string {
if o == nil || IsNil(o.DisplayName.Get()) {
var ret string
return ret
}
return *o.DisplayName.Get()
}
// GetDisplayNameOk returns a tuple with the DisplayName 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 *CreateSubscriptionPlanVM) GetDisplayNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.DisplayName.Get(), o.DisplayName.IsSet()
}
// HasDisplayName returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasDisplayName() bool {
if o != nil && o.DisplayName.IsSet() {
return true
}
return false
}
// SetDisplayName gets a reference to the given NullableString and assigns it to the DisplayName field.
func (o *CreateSubscriptionPlanVM) SetDisplayName(v string) {
o.DisplayName.Set(&v)
}
// SetDisplayNameNil sets the value for DisplayName to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetDisplayNameNil() {
o.DisplayName.Set(nil)
}
// UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetDisplayName() {
o.DisplayName.Unset()
}
// GetTimePeriodType returns the TimePeriodType field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetTimePeriodType() TimePeriodType {
if o == nil || IsNil(o.TimePeriodType.Get()) {
var ret TimePeriodType
return ret
}
return *o.TimePeriodType.Get()
}
// GetTimePeriodTypeOk returns a tuple with the TimePeriodType 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 *CreateSubscriptionPlanVM) GetTimePeriodTypeOk() (*TimePeriodType, bool) {
if o == nil {
return nil, false
}
return o.TimePeriodType.Get(), o.TimePeriodType.IsSet()
}
// HasTimePeriodType returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasTimePeriodType() bool {
if o != nil && o.TimePeriodType.IsSet() {
return true
}
return false
}
// SetTimePeriodType gets a reference to the given NullableTimePeriodType and assigns it to the TimePeriodType field.
func (o *CreateSubscriptionPlanVM) SetTimePeriodType(v TimePeriodType) {
o.TimePeriodType.Set(&v)
}
// SetTimePeriodTypeNil sets the value for TimePeriodType to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetTimePeriodTypeNil() {
o.TimePeriodType.Set(nil)
}
// UnsetTimePeriodType ensures that no value is present for TimePeriodType, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetTimePeriodType() {
o.TimePeriodType.Unset()
}
// GetTimePeriod returns the TimePeriod field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetTimePeriod() int32 {
if o == nil || IsNil(o.TimePeriod.Get()) {
var ret int32
return ret
}
return *o.TimePeriod.Get()
}
// GetTimePeriodOk returns a tuple with the TimePeriod 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 *CreateSubscriptionPlanVM) GetTimePeriodOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.TimePeriod.Get(), o.TimePeriod.IsSet()
}
// HasTimePeriod returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasTimePeriod() bool {
if o != nil && o.TimePeriod.IsSet() {
return true
}
return false
}
// SetTimePeriod gets a reference to the given NullableInt32 and assigns it to the TimePeriod field.
func (o *CreateSubscriptionPlanVM) SetTimePeriod(v int32) {
o.TimePeriod.Set(&v)
}
// SetTimePeriodNil sets the value for TimePeriod to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetTimePeriodNil() {
o.TimePeriod.Set(nil)
}
// UnsetTimePeriod ensures that no value is present for TimePeriod, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetTimePeriod() {
o.TimePeriod.Unset()
}
// GetTemplatesSpaceLimit returns the TemplatesSpaceLimit field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetTemplatesSpaceLimit() int64 {
if o == nil || IsNil(o.TemplatesSpaceLimit.Get()) {
var ret int64
return ret
}
return *o.TemplatesSpaceLimit.Get()
}
// GetTemplatesSpaceLimitOk returns a tuple with the TemplatesSpaceLimit 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 *CreateSubscriptionPlanVM) GetTemplatesSpaceLimitOk() (*int64, bool) {
if o == nil {
return nil, false
}
return o.TemplatesSpaceLimit.Get(), o.TemplatesSpaceLimit.IsSet()
}
// HasTemplatesSpaceLimit returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasTemplatesSpaceLimit() bool {
if o != nil && o.TemplatesSpaceLimit.IsSet() {
return true
}
return false
}
// SetTemplatesSpaceLimit gets a reference to the given NullableInt64 and assigns it to the TemplatesSpaceLimit field.
func (o *CreateSubscriptionPlanVM) SetTemplatesSpaceLimit(v int64) {
o.TemplatesSpaceLimit.Set(&v)
}
// SetTemplatesSpaceLimitNil sets the value for TemplatesSpaceLimit to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetTemplatesSpaceLimitNil() {
o.TemplatesSpaceLimit.Set(nil)
}
// UnsetTemplatesSpaceLimit ensures that no value is present for TemplatesSpaceLimit, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetTemplatesSpaceLimit() {
o.TemplatesSpaceLimit.Unset()
}
// GetReportsSpaceLimit returns the ReportsSpaceLimit field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetReportsSpaceLimit() int64 {
if o == nil || IsNil(o.ReportsSpaceLimit.Get()) {
var ret int64
return ret
}
return *o.ReportsSpaceLimit.Get()
}
// GetReportsSpaceLimitOk returns a tuple with the ReportsSpaceLimit 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 *CreateSubscriptionPlanVM) GetReportsSpaceLimitOk() (*int64, bool) {
if o == nil {
return nil, false
}
return o.ReportsSpaceLimit.Get(), o.ReportsSpaceLimit.IsSet()
}
// HasReportsSpaceLimit returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasReportsSpaceLimit() bool {
if o != nil && o.ReportsSpaceLimit.IsSet() {
return true
}
return false
}
// SetReportsSpaceLimit gets a reference to the given NullableInt64 and assigns it to the ReportsSpaceLimit field.
func (o *CreateSubscriptionPlanVM) SetReportsSpaceLimit(v int64) {
o.ReportsSpaceLimit.Set(&v)
}
// SetReportsSpaceLimitNil sets the value for ReportsSpaceLimit to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetReportsSpaceLimitNil() {
o.ReportsSpaceLimit.Set(nil)
}
// UnsetReportsSpaceLimit ensures that no value is present for ReportsSpaceLimit, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetReportsSpaceLimit() {
o.ReportsSpaceLimit.Unset()
}
// GetExportsSpaceLimit returns the ExportsSpaceLimit field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetExportsSpaceLimit() int64 {
if o == nil || IsNil(o.ExportsSpaceLimit.Get()) {
var ret int64
return ret
}
return *o.ExportsSpaceLimit.Get()
}
// GetExportsSpaceLimitOk returns a tuple with the ExportsSpaceLimit 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 *CreateSubscriptionPlanVM) GetExportsSpaceLimitOk() (*int64, bool) {
if o == nil {
return nil, false
}
return o.ExportsSpaceLimit.Get(), o.ExportsSpaceLimit.IsSet()
}
// HasExportsSpaceLimit returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasExportsSpaceLimit() bool {
if o != nil && o.ExportsSpaceLimit.IsSet() {
return true
}
return false
}
// SetExportsSpaceLimit gets a reference to the given NullableInt64 and assigns it to the ExportsSpaceLimit field.
func (o *CreateSubscriptionPlanVM) SetExportsSpaceLimit(v int64) {
o.ExportsSpaceLimit.Set(&v)
}
// SetExportsSpaceLimitNil sets the value for ExportsSpaceLimit to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetExportsSpaceLimitNil() {
o.ExportsSpaceLimit.Set(nil)
}
// UnsetExportsSpaceLimit ensures that no value is present for ExportsSpaceLimit, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetExportsSpaceLimit() {
o.ExportsSpaceLimit.Unset()
}
// GetFileUploadSizeLimit returns the FileUploadSizeLimit field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetFileUploadSizeLimit() int64 {
if o == nil || IsNil(o.FileUploadSizeLimit.Get()) {
var ret int64
return ret
}
return *o.FileUploadSizeLimit.Get()
}
// GetFileUploadSizeLimitOk returns a tuple with the FileUploadSizeLimit 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 *CreateSubscriptionPlanVM) GetFileUploadSizeLimitOk() (*int64, bool) {
if o == nil {
return nil, false
}
return o.FileUploadSizeLimit.Get(), o.FileUploadSizeLimit.IsSet()
}
// HasFileUploadSizeLimit returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasFileUploadSizeLimit() bool {
if o != nil && o.FileUploadSizeLimit.IsSet() {
return true
}
return false
}
// SetFileUploadSizeLimit gets a reference to the given NullableInt64 and assigns it to the FileUploadSizeLimit field.
func (o *CreateSubscriptionPlanVM) SetFileUploadSizeLimit(v int64) {
o.FileUploadSizeLimit.Set(&v)
}
// SetFileUploadSizeLimitNil sets the value for FileUploadSizeLimit to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetFileUploadSizeLimitNil() {
o.FileUploadSizeLimit.Set(nil)
}
// UnsetFileUploadSizeLimit ensures that no value is present for FileUploadSizeLimit, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetFileUploadSizeLimit() {
o.FileUploadSizeLimit.Unset()
}
// GetDataSourceLimit returns the DataSourceLimit field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetDataSourceLimit() int32 {
if o == nil || IsNil(o.DataSourceLimit.Get()) {
var ret int32
return ret
}
return *o.DataSourceLimit.Get()
}
// GetDataSourceLimitOk returns a tuple with the DataSourceLimit 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 *CreateSubscriptionPlanVM) GetDataSourceLimitOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.DataSourceLimit.Get(), o.DataSourceLimit.IsSet()
}
// HasDataSourceLimit returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasDataSourceLimit() bool {
if o != nil && o.DataSourceLimit.IsSet() {
return true
}
return false
}
// SetDataSourceLimit gets a reference to the given NullableInt32 and assigns it to the DataSourceLimit field.
func (o *CreateSubscriptionPlanVM) SetDataSourceLimit(v int32) {
o.DataSourceLimit.Set(&v)
}
// SetDataSourceLimitNil sets the value for DataSourceLimit to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetDataSourceLimitNil() {
o.DataSourceLimit.Set(nil)
}
// UnsetDataSourceLimit ensures that no value is present for DataSourceLimit, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetDataSourceLimit() {
o.DataSourceLimit.Unset()
}
// GetMaxUsersCount returns the MaxUsersCount field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetMaxUsersCount() int32 {
if o == nil || IsNil(o.MaxUsersCount.Get()) {
var ret int32
return ret
}
return *o.MaxUsersCount.Get()
}
// GetMaxUsersCountOk returns a tuple with the MaxUsersCount 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 *CreateSubscriptionPlanVM) GetMaxUsersCountOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.MaxUsersCount.Get(), o.MaxUsersCount.IsSet()
}
// HasMaxUsersCount returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasMaxUsersCount() bool {
if o != nil && o.MaxUsersCount.IsSet() {
return true
}
return false
}
// SetMaxUsersCount gets a reference to the given NullableInt32 and assigns it to the MaxUsersCount field.
func (o *CreateSubscriptionPlanVM) SetMaxUsersCount(v int32) {
o.MaxUsersCount.Set(&v)
}
// SetMaxUsersCountNil sets the value for MaxUsersCount to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetMaxUsersCountNil() {
o.MaxUsersCount.Set(nil)
}
// UnsetMaxUsersCount ensures that no value is present for MaxUsersCount, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetMaxUsersCount() {
o.MaxUsersCount.Unset()
}
// GetGroupLimit returns the GroupLimit field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetGroupLimit() int32 {
if o == nil || IsNil(o.GroupLimit.Get()) {
var ret int32
return ret
}
return *o.GroupLimit.Get()
}
// GetGroupLimitOk returns a tuple with the GroupLimit 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 *CreateSubscriptionPlanVM) GetGroupLimitOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.GroupLimit.Get(), o.GroupLimit.IsSet()
}
// HasGroupLimit returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasGroupLimit() bool {
if o != nil && o.GroupLimit.IsSet() {
return true
}
return false
}
// SetGroupLimit gets a reference to the given NullableInt32 and assigns it to the GroupLimit field.
func (o *CreateSubscriptionPlanVM) SetGroupLimit(v int32) {
o.GroupLimit.Set(&v)
}
// SetGroupLimitNil sets the value for GroupLimit to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetGroupLimitNil() {
o.GroupLimit.Set(nil)
}
// UnsetGroupLimit ensures that no value is present for GroupLimit, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetGroupLimit() {
o.GroupLimit.Unset()
}
// GetOnlineDesigner returns the OnlineDesigner field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetOnlineDesigner() bool {
if o == nil || IsNil(o.OnlineDesigner.Get()) {
var ret bool
return ret
}
return *o.OnlineDesigner.Get()
}
// GetOnlineDesignerOk returns a tuple with the OnlineDesigner 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 *CreateSubscriptionPlanVM) GetOnlineDesignerOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.OnlineDesigner.Get(), o.OnlineDesigner.IsSet()
}
// HasOnlineDesigner returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasOnlineDesigner() bool {
if o != nil && o.OnlineDesigner.IsSet() {
return true
}
return false
}
// SetOnlineDesigner gets a reference to the given NullableBool and assigns it to the OnlineDesigner field.
func (o *CreateSubscriptionPlanVM) SetOnlineDesigner(v bool) {
o.OnlineDesigner.Set(&v)
}
// SetOnlineDesignerNil sets the value for OnlineDesigner to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetOnlineDesignerNil() {
o.OnlineDesigner.Set(nil)
}
// UnsetOnlineDesigner ensures that no value is present for OnlineDesigner, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetOnlineDesigner() {
o.OnlineDesigner.Unset()
}
// GetIsDemo returns the IsDemo field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetIsDemo() bool {
if o == nil || IsNil(o.IsDemo.Get()) {
var ret bool
return ret
}
return *o.IsDemo.Get()
}
// GetIsDemoOk returns a tuple with the IsDemo 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 *CreateSubscriptionPlanVM) GetIsDemoOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.IsDemo.Get(), o.IsDemo.IsSet()
}
// HasIsDemo returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasIsDemo() bool {
if o != nil && o.IsDemo.IsSet() {
return true
}
return false
}
// SetIsDemo gets a reference to the given NullableBool and assigns it to the IsDemo field.
func (o *CreateSubscriptionPlanVM) SetIsDemo(v bool) {
o.IsDemo.Set(&v)
}
// SetIsDemoNil sets the value for IsDemo to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetIsDemoNil() {
o.IsDemo.Set(nil)
}
// UnsetIsDemo ensures that no value is present for IsDemo, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetIsDemo() {
o.IsDemo.Unset()
}
// GetUrlToBuy returns the UrlToBuy field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetUrlToBuy() string {
if o == nil || IsNil(o.UrlToBuy.Get()) {
var ret string
return ret
}
return *o.UrlToBuy.Get()
}
// GetUrlToBuyOk returns a tuple with the UrlToBuy 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 *CreateSubscriptionPlanVM) GetUrlToBuyOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.UrlToBuy.Get(), o.UrlToBuy.IsSet()
}
// HasUrlToBuy returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasUrlToBuy() bool {
if o != nil && o.UrlToBuy.IsSet() {
return true
}
return false
}
// SetUrlToBuy gets a reference to the given NullableString and assigns it to the UrlToBuy field.
func (o *CreateSubscriptionPlanVM) SetUrlToBuy(v string) {
o.UrlToBuy.Set(&v)
}
// SetUrlToBuyNil sets the value for UrlToBuy to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetUrlToBuyNil() {
o.UrlToBuy.Set(nil)
}
// UnsetUrlToBuy ensures that no value is present for UrlToBuy, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetUrlToBuy() {
o.UrlToBuy.Unset()
}
// GetUnlimitedPage returns the UnlimitedPage field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetUnlimitedPage() bool {
if o == nil || IsNil(o.UnlimitedPage.Get()) {
var ret bool
return ret
}
return *o.UnlimitedPage.Get()
}
// GetUnlimitedPageOk returns a tuple with the UnlimitedPage 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 *CreateSubscriptionPlanVM) GetUnlimitedPageOk() (*bool, bool) {
if o == nil {
return nil, false
}
return o.UnlimitedPage.Get(), o.UnlimitedPage.IsSet()
}
// HasUnlimitedPage returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasUnlimitedPage() bool {
if o != nil && o.UnlimitedPage.IsSet() {
return true
}
return false
}
// SetUnlimitedPage gets a reference to the given NullableBool and assigns it to the UnlimitedPage field.
func (o *CreateSubscriptionPlanVM) SetUnlimitedPage(v bool) {
o.UnlimitedPage.Set(&v)
}
// SetUnlimitedPageNil sets the value for UnlimitedPage to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetUnlimitedPageNil() {
o.UnlimitedPage.Set(nil)
}
// UnsetUnlimitedPage ensures that no value is present for UnlimitedPage, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetUnlimitedPage() {
o.UnlimitedPage.Unset()
}
// GetPageLimit returns the PageLimit field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetPageLimit() int32 {
if o == nil || IsNil(o.PageLimit.Get()) {
var ret int32
return ret
}
return *o.PageLimit.Get()
}
// GetPageLimitOk returns a tuple with the PageLimit 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 *CreateSubscriptionPlanVM) GetPageLimitOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.PageLimit.Get(), o.PageLimit.IsSet()
}
// HasPageLimit returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasPageLimit() bool {
if o != nil && o.PageLimit.IsSet() {
return true
}
return false
}
// SetPageLimit gets a reference to the given NullableInt32 and assigns it to the PageLimit field.
func (o *CreateSubscriptionPlanVM) SetPageLimit(v int32) {
o.PageLimit.Set(&v)
}
// SetPageLimitNil sets the value for PageLimit to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetPageLimitNil() {
o.PageLimit.Set(nil)
}
// UnsetPageLimit ensures that no value is present for PageLimit, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetPageLimit() {
o.PageLimit.Unset()
}
// GetReadonlyTimeLimitType returns the ReadonlyTimeLimitType field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetReadonlyTimeLimitType() TimePeriodType {
if o == nil || IsNil(o.ReadonlyTimeLimitType.Get()) {
var ret TimePeriodType
return ret
}
return *o.ReadonlyTimeLimitType.Get()
}
// GetReadonlyTimeLimitTypeOk returns a tuple with the ReadonlyTimeLimitType 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 *CreateSubscriptionPlanVM) GetReadonlyTimeLimitTypeOk() (*TimePeriodType, bool) {
if o == nil {
return nil, false
}
return o.ReadonlyTimeLimitType.Get(), o.ReadonlyTimeLimitType.IsSet()
}
// HasReadonlyTimeLimitType returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasReadonlyTimeLimitType() bool {
if o != nil && o.ReadonlyTimeLimitType.IsSet() {
return true
}
return false
}
// SetReadonlyTimeLimitType gets a reference to the given NullableTimePeriodType and assigns it to the ReadonlyTimeLimitType field.
func (o *CreateSubscriptionPlanVM) SetReadonlyTimeLimitType(v TimePeriodType) {
o.ReadonlyTimeLimitType.Set(&v)
}
// SetReadonlyTimeLimitTypeNil sets the value for ReadonlyTimeLimitType to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetReadonlyTimeLimitTypeNil() {
o.ReadonlyTimeLimitType.Set(nil)
}
// UnsetReadonlyTimeLimitType ensures that no value is present for ReadonlyTimeLimitType, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetReadonlyTimeLimitType() {
o.ReadonlyTimeLimitType.Unset()
}
// GetReadonlyTimeLimit returns the ReadonlyTimeLimit field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *CreateSubscriptionPlanVM) GetReadonlyTimeLimit() int32 {
if o == nil || IsNil(o.ReadonlyTimeLimit.Get()) {
var ret int32
return ret
}
return *o.ReadonlyTimeLimit.Get()
}
// GetReadonlyTimeLimitOk returns a tuple with the ReadonlyTimeLimit 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 *CreateSubscriptionPlanVM) GetReadonlyTimeLimitOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.ReadonlyTimeLimit.Get(), o.ReadonlyTimeLimit.IsSet()
}
// HasReadonlyTimeLimit returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasReadonlyTimeLimit() bool {
if o != nil && o.ReadonlyTimeLimit.IsSet() {
return true
}
return false
}
// SetReadonlyTimeLimit gets a reference to the given NullableInt32 and assigns it to the ReadonlyTimeLimit field.
func (o *CreateSubscriptionPlanVM) SetReadonlyTimeLimit(v int32) {
o.ReadonlyTimeLimit.Set(&v)
}
// SetReadonlyTimeLimitNil sets the value for ReadonlyTimeLimit to be an explicit nil
func (o *CreateSubscriptionPlanVM) SetReadonlyTimeLimitNil() {
o.ReadonlyTimeLimit.Set(nil)
}
// UnsetReadonlyTimeLimit ensures that no value is present for ReadonlyTimeLimit, not even an explicit nil
func (o *CreateSubscriptionPlanVM) UnsetReadonlyTimeLimit() {
o.ReadonlyTimeLimit.Unset()
}
// GetTasks returns the Tasks field value if set, zero value otherwise.
func (o *CreateSubscriptionPlanVM) GetTasks() TaskSettingsVM {
if o == nil || IsNil(o.Tasks) {
var ret TaskSettingsVM
return ret
}
return *o.Tasks
}
// GetTasksOk returns a tuple with the Tasks field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *CreateSubscriptionPlanVM) GetTasksOk() (*TaskSettingsVM, bool) {
if o == nil || IsNil(o.Tasks) {
return nil, false
}
return o.Tasks, true
}
// HasTasks returns a boolean if a field has been set.
func (o *CreateSubscriptionPlanVM) HasTasks() bool {
if o != nil && !IsNil(o.Tasks) {
return true
}
return false
}
// SetTasks gets a reference to the given TaskSettingsVM and assigns it to the Tasks field.
func (o *CreateSubscriptionPlanVM) SetTasks(v TaskSettingsVM) {
o.Tasks = &v
}
// GetT returns the T field value
func (o *CreateSubscriptionPlanVM) GetT() string {
if o == nil {
var ret string
return ret
}
return o.T
}
// GetTOk returns a tuple with the T field value
// and a boolean to check if the value has been set.
func (o *CreateSubscriptionPlanVM) GetTOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.T, true
}
// SetT sets field value
func (o *CreateSubscriptionPlanVM) SetT(v string) {
o.T = v
}
func (o CreateSubscriptionPlanVM) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o CreateSubscriptionPlanVM) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
serializedCloudBaseVM, errCloudBaseVM := json.Marshal(o.CloudBaseVM)
if errCloudBaseVM != nil {
return map[string]interface{}{}, errCloudBaseVM
}
errCloudBaseVM = json.Unmarshal([]byte(serializedCloudBaseVM), &toSerialize)
if errCloudBaseVM != nil {
return map[string]interface{}{}, errCloudBaseVM
}
if o.IsActive.IsSet() {
toSerialize["isActive"] = o.IsActive.Get()
}
if o.DisplayName.IsSet() {
toSerialize["displayName"] = o.DisplayName.Get()
}
if o.TimePeriodType.IsSet() {
toSerialize["timePeriodType"] = o.TimePeriodType.Get()
}
if o.TimePeriod.IsSet() {
toSerialize["timePeriod"] = o.TimePeriod.Get()
}
if o.TemplatesSpaceLimit.IsSet() {
toSerialize["templatesSpaceLimit"] = o.TemplatesSpaceLimit.Get()
}
if o.ReportsSpaceLimit.IsSet() {
toSerialize["reportsSpaceLimit"] = o.ReportsSpaceLimit.Get()
}
if o.ExportsSpaceLimit.IsSet() {
toSerialize["exportsSpaceLimit"] = o.ExportsSpaceLimit.Get()
}
if o.FileUploadSizeLimit.IsSet() {
toSerialize["fileUploadSizeLimit"] = o.FileUploadSizeLimit.Get()
}
if o.DataSourceLimit.IsSet() {
toSerialize["dataSourceLimit"] = o.DataSourceLimit.Get()
}
if o.MaxUsersCount.IsSet() {
toSerialize["maxUsersCount"] = o.MaxUsersCount.Get()
}
if o.GroupLimit.IsSet() {
toSerialize["groupLimit"] = o.GroupLimit.Get()
}
if o.OnlineDesigner.IsSet() {
toSerialize["onlineDesigner"] = o.OnlineDesigner.Get()
}
if o.IsDemo.IsSet() {
toSerialize["isDemo"] = o.IsDemo.Get()
}
if o.UrlToBuy.IsSet() {
toSerialize["urlToBuy"] = o.UrlToBuy.Get()
}
if o.UnlimitedPage.IsSet() {
toSerialize["unlimitedPage"] = o.UnlimitedPage.Get()
}
if o.PageLimit.IsSet() {
toSerialize["pageLimit"] = o.PageLimit.Get()
}
if o.ReadonlyTimeLimitType.IsSet() {
toSerialize["readonlyTimeLimitType"] = o.ReadonlyTimeLimitType.Get()
}
if o.ReadonlyTimeLimit.IsSet() {
toSerialize["readonlyTimeLimit"] = o.ReadonlyTimeLimit.Get()
}
if !IsNil(o.Tasks) {
toSerialize["tasks"] = o.Tasks
}
toSerialize["$t"] = o.T
return toSerialize, nil
}
func (o *CreateSubscriptionPlanVM) 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{
"$t",
}
allProperties := make(map[string]interface{})
err = json.Unmarshal(data, &allProperties)
if err != nil {
return err;
}
for _, requiredProperty := range(requiredProperties) {
if _, exists := allProperties[requiredProperty]; !exists {
return fmt.Errorf("no value given for required property %v", requiredProperty)
}
}
varCreateSubscriptionPlanVM := _CreateSubscriptionPlanVM{}
decoder := json.NewDecoder(bytes.NewReader(data))
decoder.DisallowUnknownFields()
err = decoder.Decode(&varCreateSubscriptionPlanVM)
if err != nil {
return err
}
*o = CreateSubscriptionPlanVM(varCreateSubscriptionPlanVM)
return err
}
type NullableCreateSubscriptionPlanVM struct {
value *CreateSubscriptionPlanVM
isSet bool
}
func (v NullableCreateSubscriptionPlanVM) Get() *CreateSubscriptionPlanVM {