-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel_formatted_api_org_public.go
1942 lines (1654 loc) · 57.6 KB
/
model_formatted_api_org_public.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
/*
GCOM API
Grafana.com API (public). Looking for GCOM API client packages? You can find them at [grafana-com-public-clients](https://github.com/grafana/grafana-com-public-clients) repository. If you have any questions, please contact support in the Grafana Cloud UI. This spec is in *Beta* stage, so use it with caution: - Not all endpoint responses are properly typed for the time being. - Some request parameter types may not be precise
API version: public
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package gcom
import (
"encoding/json"
)
// checks if the FormattedApiOrgPublic type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &FormattedApiOrgPublic{}
// FormattedApiOrgPublic struct for FormattedApiOrgPublic
type FormattedApiOrgPublic struct {
Id float32 `json:"id"`
Slug string `json:"slug"`
Name string `json:"name"`
Url string `json:"url"`
CreatedAt string `json:"createdAt"`
CreatedBy NullableString `json:"createdBy"`
UpdatedAt NullableString `json:"updatedAt"`
UpdatedBy NullableString `json:"updatedBy"`
Avatar NullableString `json:"avatar"`
ChecksPerMonth float32 `json:"checksPerMonth"`
WpPlan string `json:"wpPlan"`
HgInstanceLimit float32 `json:"hgInstanceLimit"`
HmInstanceLimit float32 `json:"hmInstanceLimit"`
HlInstanceLimit float32 `json:"hlInstanceLimit"`
UserQuota float32 `json:"userQuota"`
SupportPlan string `json:"supportPlan"`
CreditApproved float32 `json:"creditApproved"`
MsaSignedAt NullableString `json:"msaSignedAt"`
MsaSignedBy NullableString `json:"msaSignedBy"`
EnterprisePlugins float32 `json:"enterprisePlugins"`
LicenseProducts []string `json:"licenseProducts"`
GrafanaCloud float32 `json:"grafanaCloud"`
Privacy string `json:"privacy"`
Reseller string `json:"reseller"`
ResellerId NullableFloat32 `json:"resellerId"`
ResellerName NullableString `json:"resellerName"`
EmergencySupport bool `json:"emergencySupport"`
GcloudMonthlyCost float32 `json:"gcloudMonthlyCost"`
HgUsage float32 `json:"hgUsage"`
HgCurrentActiveUsers float32 `json:"hgCurrentActiveUsers"`
HgGrafanaUsage float32 `json:"hgGrafanaUsage"`
HgOnCallUsage float32 `json:"hgOnCallUsage"`
HmUsage float32 `json:"hmUsage"`
HmCurrentUsage float32 `json:"hmCurrentUsage"`
HmGraphiteUsage float32 `json:"hmGraphiteUsage"`
HlUsage float32 `json:"hlUsage"`
HlRetentionUsage float32 `json:"hlRetentionUsage"`
HtUsage float32 `json:"htUsage"`
HpUsage float32 `json:"hpUsage"`
IrmUsage float32 `json:"irmUsage"`
K6VuhUsage float32 `json:"k6VuhUsage"`
K6IPUsage float32 `json:"k6IPUsage"`
FeO11YUsage float32 `json:"feO11YUsage"`
AppO11YUsage float32 `json:"appO11YUsage"`
SmUsage float32 `json:"smUsage"`
InfraO11YHostsUsage float32 `json:"infraO11YHostsUsage"`
InfraO11YContainersUsage float32 `json:"infraO11YContainersUsage"`
GeUsersUsage float32 `json:"geUsersUsage"`
GeInstancesUsage float32 `json:"geInstancesUsage"`
AwsMarketplaceSupport float32 `json:"awsMarketplaceSupport"`
TrialStartDate NullableString `json:"trialStartDate"`
TrialEndDate NullableString `json:"trialEndDate"`
TrialLengthDays NullableFloat32 `json:"trialLengthDays"`
TrialNoticeDate NullableString `json:"trialNoticeDate"`
CancellationDate NullableString `json:"cancellationDate"`
RetainedStackId float32 `json:"retainedStackId"`
AllowGCloudTrial FormattedOrgMembershipAllowGCloudTrial `json:"allowGCloudTrial"`
PluginSignatureType string `json:"pluginSignatureType"`
ContractType string `json:"contractType"`
ContractTypeId float32 `json:"contractTypeId"`
LiveChatEnabled bool `json:"liveChatEnabled"`
DisableTokenExpirationEmails bool `json:"disableTokenExpirationEmails"`
Links []LinksInner1 `json:"links"`
Subscriptions Subscriptions `json:"subscriptions"`
AdditionalProperties map[string]interface{}
}
type _FormattedApiOrgPublic FormattedApiOrgPublic
// NewFormattedApiOrgPublic instantiates a new FormattedApiOrgPublic 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 NewFormattedApiOrgPublic(id float32, slug string, name string, url string, createdAt string, createdBy NullableString, updatedAt NullableString, updatedBy NullableString, avatar NullableString, checksPerMonth float32, wpPlan string, hgInstanceLimit float32, hmInstanceLimit float32, hlInstanceLimit float32, userQuota float32, supportPlan string, creditApproved float32, msaSignedAt NullableString, msaSignedBy NullableString, enterprisePlugins float32, licenseProducts []string, grafanaCloud float32, privacy string, reseller string, resellerId NullableFloat32, resellerName NullableString, emergencySupport bool, gcloudMonthlyCost float32, hgUsage float32, hgCurrentActiveUsers float32, hgGrafanaUsage float32, hgOnCallUsage float32, hmUsage float32, hmCurrentUsage float32, hmGraphiteUsage float32, hlUsage float32, hlRetentionUsage float32, htUsage float32, hpUsage float32, irmUsage float32, k6VuhUsage float32, k6IPUsage float32, feO11YUsage float32, appO11YUsage float32, smUsage float32, infraO11YHostsUsage float32, infraO11YContainersUsage float32, geUsersUsage float32, geInstancesUsage float32, awsMarketplaceSupport float32, trialStartDate NullableString, trialEndDate NullableString, trialLengthDays NullableFloat32, trialNoticeDate NullableString, cancellationDate NullableString, retainedStackId float32, allowGCloudTrial FormattedOrgMembershipAllowGCloudTrial, pluginSignatureType string, contractType string, contractTypeId float32, liveChatEnabled bool, disableTokenExpirationEmails bool, links []LinksInner1, subscriptions Subscriptions) *FormattedApiOrgPublic {
this := FormattedApiOrgPublic{}
this.Id = id
this.Slug = slug
this.Name = name
this.Url = url
this.CreatedAt = createdAt
this.CreatedBy = createdBy
this.UpdatedAt = updatedAt
this.UpdatedBy = updatedBy
this.Avatar = avatar
this.ChecksPerMonth = checksPerMonth
this.WpPlan = wpPlan
this.HgInstanceLimit = hgInstanceLimit
this.HmInstanceLimit = hmInstanceLimit
this.HlInstanceLimit = hlInstanceLimit
this.UserQuota = userQuota
this.SupportPlan = supportPlan
this.CreditApproved = creditApproved
this.MsaSignedAt = msaSignedAt
this.MsaSignedBy = msaSignedBy
this.EnterprisePlugins = enterprisePlugins
this.LicenseProducts = licenseProducts
this.GrafanaCloud = grafanaCloud
this.Privacy = privacy
this.Reseller = reseller
this.ResellerId = resellerId
this.ResellerName = resellerName
this.EmergencySupport = emergencySupport
this.GcloudMonthlyCost = gcloudMonthlyCost
this.HgUsage = hgUsage
this.HgCurrentActiveUsers = hgCurrentActiveUsers
this.HgGrafanaUsage = hgGrafanaUsage
this.HgOnCallUsage = hgOnCallUsage
this.HmUsage = hmUsage
this.HmCurrentUsage = hmCurrentUsage
this.HmGraphiteUsage = hmGraphiteUsage
this.HlUsage = hlUsage
this.HlRetentionUsage = hlRetentionUsage
this.HtUsage = htUsage
this.HpUsage = hpUsage
this.IrmUsage = irmUsage
this.K6VuhUsage = k6VuhUsage
this.K6IPUsage = k6IPUsage
this.FeO11YUsage = feO11YUsage
this.AppO11YUsage = appO11YUsage
this.SmUsage = smUsage
this.InfraO11YHostsUsage = infraO11YHostsUsage
this.InfraO11YContainersUsage = infraO11YContainersUsage
this.GeUsersUsage = geUsersUsage
this.GeInstancesUsage = geInstancesUsage
this.AwsMarketplaceSupport = awsMarketplaceSupport
this.TrialStartDate = trialStartDate
this.TrialEndDate = trialEndDate
this.TrialLengthDays = trialLengthDays
this.TrialNoticeDate = trialNoticeDate
this.CancellationDate = cancellationDate
this.RetainedStackId = retainedStackId
this.AllowGCloudTrial = allowGCloudTrial
this.PluginSignatureType = pluginSignatureType
this.ContractType = contractType
this.ContractTypeId = contractTypeId
this.LiveChatEnabled = liveChatEnabled
this.DisableTokenExpirationEmails = disableTokenExpirationEmails
this.Links = links
this.Subscriptions = subscriptions
return &this
}
// NewFormattedApiOrgPublicWithDefaults instantiates a new FormattedApiOrgPublic 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 NewFormattedApiOrgPublicWithDefaults() *FormattedApiOrgPublic {
this := FormattedApiOrgPublic{}
return &this
}
// GetId returns the Id field value
func (o *FormattedApiOrgPublic) GetId() float32 {
if o == nil {
var ret float32
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 *FormattedApiOrgPublic) GetIdOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.Id, true
}
// SetId sets field value
func (o *FormattedApiOrgPublic) SetId(v float32) {
o.Id = v
}
// GetSlug returns the Slug field value
func (o *FormattedApiOrgPublic) GetSlug() string {
if o == nil {
var ret string
return ret
}
return o.Slug
}
// GetSlugOk returns a tuple with the Slug field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetSlugOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Slug, true
}
// SetSlug sets field value
func (o *FormattedApiOrgPublic) SetSlug(v string) {
o.Slug = v
}
// GetName returns the Name field value
func (o *FormattedApiOrgPublic) 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 *FormattedApiOrgPublic) GetNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Name, true
}
// SetName sets field value
func (o *FormattedApiOrgPublic) SetName(v string) {
o.Name = v
}
// GetUrl returns the Url field value
func (o *FormattedApiOrgPublic) 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 *FormattedApiOrgPublic) GetUrlOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Url, true
}
// SetUrl sets field value
func (o *FormattedApiOrgPublic) SetUrl(v string) {
o.Url = v
}
// GetCreatedAt returns the CreatedAt field value
func (o *FormattedApiOrgPublic) GetCreatedAt() string {
if o == nil {
var ret string
return ret
}
return o.CreatedAt
}
// GetCreatedAtOk returns a tuple with the CreatedAt field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetCreatedAtOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.CreatedAt, true
}
// SetCreatedAt sets field value
func (o *FormattedApiOrgPublic) SetCreatedAt(v string) {
o.CreatedAt = v
}
// GetCreatedBy returns the CreatedBy field value
// If the value is explicit nil, the zero value for string will be returned
func (o *FormattedApiOrgPublic) GetCreatedBy() string {
if o == nil || o.CreatedBy.Get() == nil {
var ret string
return ret
}
return *o.CreatedBy.Get()
}
// GetCreatedByOk returns a tuple with the CreatedBy 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 *FormattedApiOrgPublic) GetCreatedByOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.CreatedBy.Get(), o.CreatedBy.IsSet()
}
// SetCreatedBy sets field value
func (o *FormattedApiOrgPublic) SetCreatedBy(v string) {
o.CreatedBy.Set(&v)
}
// GetUpdatedAt returns the UpdatedAt field value
// If the value is explicit nil, the zero value for string will be returned
func (o *FormattedApiOrgPublic) GetUpdatedAt() string {
if o == nil || o.UpdatedAt.Get() == nil {
var ret string
return ret
}
return *o.UpdatedAt.Get()
}
// GetUpdatedAtOk returns a tuple with the UpdatedAt 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 *FormattedApiOrgPublic) GetUpdatedAtOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.UpdatedAt.Get(), o.UpdatedAt.IsSet()
}
// SetUpdatedAt sets field value
func (o *FormattedApiOrgPublic) SetUpdatedAt(v string) {
o.UpdatedAt.Set(&v)
}
// GetUpdatedBy returns the UpdatedBy field value
// If the value is explicit nil, the zero value for string will be returned
func (o *FormattedApiOrgPublic) GetUpdatedBy() string {
if o == nil || o.UpdatedBy.Get() == nil {
var ret string
return ret
}
return *o.UpdatedBy.Get()
}
// GetUpdatedByOk returns a tuple with the UpdatedBy 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 *FormattedApiOrgPublic) GetUpdatedByOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.UpdatedBy.Get(), o.UpdatedBy.IsSet()
}
// SetUpdatedBy sets field value
func (o *FormattedApiOrgPublic) SetUpdatedBy(v string) {
o.UpdatedBy.Set(&v)
}
// GetAvatar returns the Avatar field value
// If the value is explicit nil, the zero value for string will be returned
func (o *FormattedApiOrgPublic) GetAvatar() string {
if o == nil || o.Avatar.Get() == nil {
var ret string
return ret
}
return *o.Avatar.Get()
}
// GetAvatarOk returns a tuple with the Avatar 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 *FormattedApiOrgPublic) GetAvatarOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.Avatar.Get(), o.Avatar.IsSet()
}
// SetAvatar sets field value
func (o *FormattedApiOrgPublic) SetAvatar(v string) {
o.Avatar.Set(&v)
}
// GetChecksPerMonth returns the ChecksPerMonth field value
func (o *FormattedApiOrgPublic) GetChecksPerMonth() float32 {
if o == nil {
var ret float32
return ret
}
return o.ChecksPerMonth
}
// GetChecksPerMonthOk returns a tuple with the ChecksPerMonth field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetChecksPerMonthOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.ChecksPerMonth, true
}
// SetChecksPerMonth sets field value
func (o *FormattedApiOrgPublic) SetChecksPerMonth(v float32) {
o.ChecksPerMonth = v
}
// GetWpPlan returns the WpPlan field value
func (o *FormattedApiOrgPublic) GetWpPlan() string {
if o == nil {
var ret string
return ret
}
return o.WpPlan
}
// GetWpPlanOk returns a tuple with the WpPlan field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetWpPlanOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.WpPlan, true
}
// SetWpPlan sets field value
func (o *FormattedApiOrgPublic) SetWpPlan(v string) {
o.WpPlan = v
}
// GetHgInstanceLimit returns the HgInstanceLimit field value
func (o *FormattedApiOrgPublic) GetHgInstanceLimit() float32 {
if o == nil {
var ret float32
return ret
}
return o.HgInstanceLimit
}
// GetHgInstanceLimitOk returns a tuple with the HgInstanceLimit field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetHgInstanceLimitOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.HgInstanceLimit, true
}
// SetHgInstanceLimit sets field value
func (o *FormattedApiOrgPublic) SetHgInstanceLimit(v float32) {
o.HgInstanceLimit = v
}
// GetHmInstanceLimit returns the HmInstanceLimit field value
func (o *FormattedApiOrgPublic) GetHmInstanceLimit() float32 {
if o == nil {
var ret float32
return ret
}
return o.HmInstanceLimit
}
// GetHmInstanceLimitOk returns a tuple with the HmInstanceLimit field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetHmInstanceLimitOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.HmInstanceLimit, true
}
// SetHmInstanceLimit sets field value
func (o *FormattedApiOrgPublic) SetHmInstanceLimit(v float32) {
o.HmInstanceLimit = v
}
// GetHlInstanceLimit returns the HlInstanceLimit field value
func (o *FormattedApiOrgPublic) GetHlInstanceLimit() float32 {
if o == nil {
var ret float32
return ret
}
return o.HlInstanceLimit
}
// GetHlInstanceLimitOk returns a tuple with the HlInstanceLimit field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetHlInstanceLimitOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.HlInstanceLimit, true
}
// SetHlInstanceLimit sets field value
func (o *FormattedApiOrgPublic) SetHlInstanceLimit(v float32) {
o.HlInstanceLimit = v
}
// GetUserQuota returns the UserQuota field value
func (o *FormattedApiOrgPublic) GetUserQuota() float32 {
if o == nil {
var ret float32
return ret
}
return o.UserQuota
}
// GetUserQuotaOk returns a tuple with the UserQuota field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetUserQuotaOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.UserQuota, true
}
// SetUserQuota sets field value
func (o *FormattedApiOrgPublic) SetUserQuota(v float32) {
o.UserQuota = v
}
// GetSupportPlan returns the SupportPlan field value
func (o *FormattedApiOrgPublic) GetSupportPlan() string {
if o == nil {
var ret string
return ret
}
return o.SupportPlan
}
// GetSupportPlanOk returns a tuple with the SupportPlan field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetSupportPlanOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.SupportPlan, true
}
// SetSupportPlan sets field value
func (o *FormattedApiOrgPublic) SetSupportPlan(v string) {
o.SupportPlan = v
}
// GetCreditApproved returns the CreditApproved field value
func (o *FormattedApiOrgPublic) GetCreditApproved() float32 {
if o == nil {
var ret float32
return ret
}
return o.CreditApproved
}
// GetCreditApprovedOk returns a tuple with the CreditApproved field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetCreditApprovedOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.CreditApproved, true
}
// SetCreditApproved sets field value
func (o *FormattedApiOrgPublic) SetCreditApproved(v float32) {
o.CreditApproved = v
}
// GetMsaSignedAt returns the MsaSignedAt field value
// If the value is explicit nil, the zero value for string will be returned
func (o *FormattedApiOrgPublic) GetMsaSignedAt() string {
if o == nil || o.MsaSignedAt.Get() == nil {
var ret string
return ret
}
return *o.MsaSignedAt.Get()
}
// GetMsaSignedAtOk returns a tuple with the MsaSignedAt 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 *FormattedApiOrgPublic) GetMsaSignedAtOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.MsaSignedAt.Get(), o.MsaSignedAt.IsSet()
}
// SetMsaSignedAt sets field value
func (o *FormattedApiOrgPublic) SetMsaSignedAt(v string) {
o.MsaSignedAt.Set(&v)
}
// GetMsaSignedBy returns the MsaSignedBy field value
// If the value is explicit nil, the zero value for string will be returned
func (o *FormattedApiOrgPublic) GetMsaSignedBy() string {
if o == nil || o.MsaSignedBy.Get() == nil {
var ret string
return ret
}
return *o.MsaSignedBy.Get()
}
// GetMsaSignedByOk returns a tuple with the MsaSignedBy 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 *FormattedApiOrgPublic) GetMsaSignedByOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.MsaSignedBy.Get(), o.MsaSignedBy.IsSet()
}
// SetMsaSignedBy sets field value
func (o *FormattedApiOrgPublic) SetMsaSignedBy(v string) {
o.MsaSignedBy.Set(&v)
}
// GetEnterprisePlugins returns the EnterprisePlugins field value
func (o *FormattedApiOrgPublic) GetEnterprisePlugins() float32 {
if o == nil {
var ret float32
return ret
}
return o.EnterprisePlugins
}
// GetEnterprisePluginsOk returns a tuple with the EnterprisePlugins field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetEnterprisePluginsOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.EnterprisePlugins, true
}
// SetEnterprisePlugins sets field value
func (o *FormattedApiOrgPublic) SetEnterprisePlugins(v float32) {
o.EnterprisePlugins = v
}
// GetLicenseProducts returns the LicenseProducts field value
func (o *FormattedApiOrgPublic) GetLicenseProducts() []string {
if o == nil {
var ret []string
return ret
}
return o.LicenseProducts
}
// GetLicenseProductsOk returns a tuple with the LicenseProducts field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetLicenseProductsOk() ([]string, bool) {
if o == nil {
return nil, false
}
return o.LicenseProducts, true
}
// SetLicenseProducts sets field value
func (o *FormattedApiOrgPublic) SetLicenseProducts(v []string) {
o.LicenseProducts = v
}
// GetGrafanaCloud returns the GrafanaCloud field value
func (o *FormattedApiOrgPublic) GetGrafanaCloud() float32 {
if o == nil {
var ret float32
return ret
}
return o.GrafanaCloud
}
// GetGrafanaCloudOk returns a tuple with the GrafanaCloud field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetGrafanaCloudOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.GrafanaCloud, true
}
// SetGrafanaCloud sets field value
func (o *FormattedApiOrgPublic) SetGrafanaCloud(v float32) {
o.GrafanaCloud = v
}
// GetPrivacy returns the Privacy field value
func (o *FormattedApiOrgPublic) GetPrivacy() string {
if o == nil {
var ret string
return ret
}
return o.Privacy
}
// GetPrivacyOk returns a tuple with the Privacy field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetPrivacyOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Privacy, true
}
// SetPrivacy sets field value
func (o *FormattedApiOrgPublic) SetPrivacy(v string) {
o.Privacy = v
}
// GetReseller returns the Reseller field value
func (o *FormattedApiOrgPublic) GetReseller() string {
if o == nil {
var ret string
return ret
}
return o.Reseller
}
// GetResellerOk returns a tuple with the Reseller field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetResellerOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Reseller, true
}
// SetReseller sets field value
func (o *FormattedApiOrgPublic) SetReseller(v string) {
o.Reseller = v
}
// GetResellerId returns the ResellerId field value
// If the value is explicit nil, the zero value for float32 will be returned
func (o *FormattedApiOrgPublic) GetResellerId() float32 {
if o == nil || o.ResellerId.Get() == nil {
var ret float32
return ret
}
return *o.ResellerId.Get()
}
// GetResellerIdOk returns a tuple with the ResellerId 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 *FormattedApiOrgPublic) GetResellerIdOk() (*float32, bool) {
if o == nil {
return nil, false
}
return o.ResellerId.Get(), o.ResellerId.IsSet()
}
// SetResellerId sets field value
func (o *FormattedApiOrgPublic) SetResellerId(v float32) {
o.ResellerId.Set(&v)
}
// GetResellerName returns the ResellerName field value
// If the value is explicit nil, the zero value for string will be returned
func (o *FormattedApiOrgPublic) GetResellerName() string {
if o == nil || o.ResellerName.Get() == nil {
var ret string
return ret
}
return *o.ResellerName.Get()
}
// GetResellerNameOk returns a tuple with the ResellerName 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 *FormattedApiOrgPublic) GetResellerNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ResellerName.Get(), o.ResellerName.IsSet()
}
// SetResellerName sets field value
func (o *FormattedApiOrgPublic) SetResellerName(v string) {
o.ResellerName.Set(&v)
}
// GetEmergencySupport returns the EmergencySupport field value
func (o *FormattedApiOrgPublic) GetEmergencySupport() bool {
if o == nil {
var ret bool
return ret
}
return o.EmergencySupport
}
// GetEmergencySupportOk returns a tuple with the EmergencySupport field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetEmergencySupportOk() (*bool, bool) {
if o == nil {
return nil, false
}
return &o.EmergencySupport, true
}
// SetEmergencySupport sets field value
func (o *FormattedApiOrgPublic) SetEmergencySupport(v bool) {
o.EmergencySupport = v
}
// GetGcloudMonthlyCost returns the GcloudMonthlyCost field value
func (o *FormattedApiOrgPublic) GetGcloudMonthlyCost() float32 {
if o == nil {
var ret float32
return ret
}
return o.GcloudMonthlyCost
}
// GetGcloudMonthlyCostOk returns a tuple with the GcloudMonthlyCost field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetGcloudMonthlyCostOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.GcloudMonthlyCost, true
}
// SetGcloudMonthlyCost sets field value
func (o *FormattedApiOrgPublic) SetGcloudMonthlyCost(v float32) {
o.GcloudMonthlyCost = v
}
// GetHgUsage returns the HgUsage field value
func (o *FormattedApiOrgPublic) GetHgUsage() float32 {
if o == nil {
var ret float32
return ret
}
return o.HgUsage
}
// GetHgUsageOk returns a tuple with the HgUsage field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetHgUsageOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.HgUsage, true
}
// SetHgUsage sets field value
func (o *FormattedApiOrgPublic) SetHgUsage(v float32) {
o.HgUsage = v
}
// GetHgCurrentActiveUsers returns the HgCurrentActiveUsers field value
func (o *FormattedApiOrgPublic) GetHgCurrentActiveUsers() float32 {
if o == nil {
var ret float32
return ret
}
return o.HgCurrentActiveUsers
}
// GetHgCurrentActiveUsersOk returns a tuple with the HgCurrentActiveUsers field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetHgCurrentActiveUsersOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.HgCurrentActiveUsers, true
}
// SetHgCurrentActiveUsers sets field value
func (o *FormattedApiOrgPublic) SetHgCurrentActiveUsers(v float32) {
o.HgCurrentActiveUsers = v
}
// GetHgGrafanaUsage returns the HgGrafanaUsage field value
func (o *FormattedApiOrgPublic) GetHgGrafanaUsage() float32 {
if o == nil {
var ret float32
return ret
}
return o.HgGrafanaUsage
}
// GetHgGrafanaUsageOk returns a tuple with the HgGrafanaUsage field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetHgGrafanaUsageOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.HgGrafanaUsage, true
}
// SetHgGrafanaUsage sets field value
func (o *FormattedApiOrgPublic) SetHgGrafanaUsage(v float32) {
o.HgGrafanaUsage = v
}
// GetHgOnCallUsage returns the HgOnCallUsage field value
func (o *FormattedApiOrgPublic) GetHgOnCallUsage() float32 {
if o == nil {
var ret float32
return ret
}
return o.HgOnCallUsage
}
// GetHgOnCallUsageOk returns a tuple with the HgOnCallUsage field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetHgOnCallUsageOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.HgOnCallUsage, true
}
// SetHgOnCallUsage sets field value
func (o *FormattedApiOrgPublic) SetHgOnCallUsage(v float32) {
o.HgOnCallUsage = v
}
// GetHmUsage returns the HmUsage field value
func (o *FormattedApiOrgPublic) GetHmUsage() float32 {
if o == nil {
var ret float32
return ret
}
return o.HmUsage
}
// GetHmUsageOk returns a tuple with the HmUsage field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetHmUsageOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.HmUsage, true
}
// SetHmUsage sets field value
func (o *FormattedApiOrgPublic) SetHmUsage(v float32) {
o.HmUsage = v
}
// GetHmCurrentUsage returns the HmCurrentUsage field value
func (o *FormattedApiOrgPublic) GetHmCurrentUsage() float32 {
if o == nil {
var ret float32
return ret
}
return o.HmCurrentUsage
}
// GetHmCurrentUsageOk returns a tuple with the HmCurrentUsage field value
// and a boolean to check if the value has been set.
func (o *FormattedApiOrgPublic) GetHmCurrentUsageOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.HmCurrentUsage, true
}
// SetHmCurrentUsage sets field value
func (o *FormattedApiOrgPublic) SetHmCurrentUsage(v float32) {