1/*
2 THIS FILE IS AUTOMATICALLY GENERATED BY create-accessors; DO NOT EDIT.
3 * Datadog API for Go
4 *
5 * Please see the included LICENSE file for licensing information.
6 *
7 * Copyright 2019 by authors and contributors.
8*/
9
10package datadog
11
12import (
13	"encoding/json"
14	"time"
15)
16
17// GetCreator returns the Creator field if non-nil, zero value otherwise.
18func (a *Alert) GetCreator() int {
19	if a == nil || a.Creator == nil {
20		return 0
21	}
22	return *a.Creator
23}
24
25// GetCreatorOk returns a tuple with the Creator field if it's non-nil, zero value otherwise
26// and a boolean to check if the value has been set.
27func (a *Alert) GetCreatorOk() (int, bool) {
28	if a == nil || a.Creator == nil {
29		return 0, false
30	}
31	return *a.Creator, true
32}
33
34// HasCreator returns a boolean if a field has been set.
35func (a *Alert) HasCreator() bool {
36	if a != nil && a.Creator != nil {
37		return true
38	}
39
40	return false
41}
42
43// SetCreator allocates a new a.Creator and returns the pointer to it.
44func (a *Alert) SetCreator(v int) {
45	a.Creator = &v
46}
47
48// GetId returns the Id field if non-nil, zero value otherwise.
49func (a *Alert) GetId() int {
50	if a == nil || a.Id == nil {
51		return 0
52	}
53	return *a.Id
54}
55
56// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
57// and a boolean to check if the value has been set.
58func (a *Alert) GetIdOk() (int, bool) {
59	if a == nil || a.Id == nil {
60		return 0, false
61	}
62	return *a.Id, true
63}
64
65// HasId returns a boolean if a field has been set.
66func (a *Alert) HasId() bool {
67	if a != nil && a.Id != nil {
68		return true
69	}
70
71	return false
72}
73
74// SetId allocates a new a.Id and returns the pointer to it.
75func (a *Alert) SetId(v int) {
76	a.Id = &v
77}
78
79// GetMessage returns the Message field if non-nil, zero value otherwise.
80func (a *Alert) GetMessage() string {
81	if a == nil || a.Message == nil {
82		return ""
83	}
84	return *a.Message
85}
86
87// GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise
88// and a boolean to check if the value has been set.
89func (a *Alert) GetMessageOk() (string, bool) {
90	if a == nil || a.Message == nil {
91		return "", false
92	}
93	return *a.Message, true
94}
95
96// HasMessage returns a boolean if a field has been set.
97func (a *Alert) HasMessage() bool {
98	if a != nil && a.Message != nil {
99		return true
100	}
101
102	return false
103}
104
105// SetMessage allocates a new a.Message and returns the pointer to it.
106func (a *Alert) SetMessage(v string) {
107	a.Message = &v
108}
109
110// GetName returns the Name field if non-nil, zero value otherwise.
111func (a *Alert) GetName() string {
112	if a == nil || a.Name == nil {
113		return ""
114	}
115	return *a.Name
116}
117
118// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
119// and a boolean to check if the value has been set.
120func (a *Alert) GetNameOk() (string, bool) {
121	if a == nil || a.Name == nil {
122		return "", false
123	}
124	return *a.Name, true
125}
126
127// HasName returns a boolean if a field has been set.
128func (a *Alert) HasName() bool {
129	if a != nil && a.Name != nil {
130		return true
131	}
132
133	return false
134}
135
136// SetName allocates a new a.Name and returns the pointer to it.
137func (a *Alert) SetName(v string) {
138	a.Name = &v
139}
140
141// GetNotifyNoData returns the NotifyNoData field if non-nil, zero value otherwise.
142func (a *Alert) GetNotifyNoData() bool {
143	if a == nil || a.NotifyNoData == nil {
144		return false
145	}
146	return *a.NotifyNoData
147}
148
149// GetNotifyNoDataOk returns a tuple with the NotifyNoData field if it's non-nil, zero value otherwise
150// and a boolean to check if the value has been set.
151func (a *Alert) GetNotifyNoDataOk() (bool, bool) {
152	if a == nil || a.NotifyNoData == nil {
153		return false, false
154	}
155	return *a.NotifyNoData, true
156}
157
158// HasNotifyNoData returns a boolean if a field has been set.
159func (a *Alert) HasNotifyNoData() bool {
160	if a != nil && a.NotifyNoData != nil {
161		return true
162	}
163
164	return false
165}
166
167// SetNotifyNoData allocates a new a.NotifyNoData and returns the pointer to it.
168func (a *Alert) SetNotifyNoData(v bool) {
169	a.NotifyNoData = &v
170}
171
172// GetQuery returns the Query field if non-nil, zero value otherwise.
173func (a *Alert) GetQuery() string {
174	if a == nil || a.Query == nil {
175		return ""
176	}
177	return *a.Query
178}
179
180// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
181// and a boolean to check if the value has been set.
182func (a *Alert) GetQueryOk() (string, bool) {
183	if a == nil || a.Query == nil {
184		return "", false
185	}
186	return *a.Query, true
187}
188
189// HasQuery returns a boolean if a field has been set.
190func (a *Alert) HasQuery() bool {
191	if a != nil && a.Query != nil {
192		return true
193	}
194
195	return false
196}
197
198// SetQuery allocates a new a.Query and returns the pointer to it.
199func (a *Alert) SetQuery(v string) {
200	a.Query = &v
201}
202
203// GetSilenced returns the Silenced field if non-nil, zero value otherwise.
204func (a *Alert) GetSilenced() bool {
205	if a == nil || a.Silenced == nil {
206		return false
207	}
208	return *a.Silenced
209}
210
211// GetSilencedOk returns a tuple with the Silenced field if it's non-nil, zero value otherwise
212// and a boolean to check if the value has been set.
213func (a *Alert) GetSilencedOk() (bool, bool) {
214	if a == nil || a.Silenced == nil {
215		return false, false
216	}
217	return *a.Silenced, true
218}
219
220// HasSilenced returns a boolean if a field has been set.
221func (a *Alert) HasSilenced() bool {
222	if a != nil && a.Silenced != nil {
223		return true
224	}
225
226	return false
227}
228
229// SetSilenced allocates a new a.Silenced and returns the pointer to it.
230func (a *Alert) SetSilenced(v bool) {
231	a.Silenced = &v
232}
233
234// GetState returns the State field if non-nil, zero value otherwise.
235func (a *Alert) GetState() string {
236	if a == nil || a.State == nil {
237		return ""
238	}
239	return *a.State
240}
241
242// GetStateOk returns a tuple with the State field if it's non-nil, zero value otherwise
243// and a boolean to check if the value has been set.
244func (a *Alert) GetStateOk() (string, bool) {
245	if a == nil || a.State == nil {
246		return "", false
247	}
248	return *a.State, true
249}
250
251// HasState returns a boolean if a field has been set.
252func (a *Alert) HasState() bool {
253	if a != nil && a.State != nil {
254		return true
255	}
256
257	return false
258}
259
260// SetState allocates a new a.State and returns the pointer to it.
261func (a *Alert) SetState(v string) {
262	a.State = &v
263}
264
265// GetAlertId returns the AlertId field if non-nil, zero value otherwise.
266func (a *AlertGraphDefinition) GetAlertId() string {
267	if a == nil || a.AlertId == nil {
268		return ""
269	}
270	return *a.AlertId
271}
272
273// GetAlertIdOk returns a tuple with the AlertId field if it's non-nil, zero value otherwise
274// and a boolean to check if the value has been set.
275func (a *AlertGraphDefinition) GetAlertIdOk() (string, bool) {
276	if a == nil || a.AlertId == nil {
277		return "", false
278	}
279	return *a.AlertId, true
280}
281
282// HasAlertId returns a boolean if a field has been set.
283func (a *AlertGraphDefinition) HasAlertId() bool {
284	if a != nil && a.AlertId != nil {
285		return true
286	}
287
288	return false
289}
290
291// SetAlertId allocates a new a.AlertId and returns the pointer to it.
292func (a *AlertGraphDefinition) SetAlertId(v string) {
293	a.AlertId = &v
294}
295
296// GetTime returns the Time field if non-nil, zero value otherwise.
297func (a *AlertGraphDefinition) GetTime() WidgetTime {
298	if a == nil || a.Time == nil {
299		return WidgetTime{}
300	}
301	return *a.Time
302}
303
304// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
305// and a boolean to check if the value has been set.
306func (a *AlertGraphDefinition) GetTimeOk() (WidgetTime, bool) {
307	if a == nil || a.Time == nil {
308		return WidgetTime{}, false
309	}
310	return *a.Time, true
311}
312
313// HasTime returns a boolean if a field has been set.
314func (a *AlertGraphDefinition) HasTime() bool {
315	if a != nil && a.Time != nil {
316		return true
317	}
318
319	return false
320}
321
322// SetTime allocates a new a.Time and returns the pointer to it.
323func (a *AlertGraphDefinition) SetTime(v WidgetTime) {
324	a.Time = &v
325}
326
327// GetTitle returns the Title field if non-nil, zero value otherwise.
328func (a *AlertGraphDefinition) GetTitle() string {
329	if a == nil || a.Title == nil {
330		return ""
331	}
332	return *a.Title
333}
334
335// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
336// and a boolean to check if the value has been set.
337func (a *AlertGraphDefinition) GetTitleOk() (string, bool) {
338	if a == nil || a.Title == nil {
339		return "", false
340	}
341	return *a.Title, true
342}
343
344// HasTitle returns a boolean if a field has been set.
345func (a *AlertGraphDefinition) HasTitle() bool {
346	if a != nil && a.Title != nil {
347		return true
348	}
349
350	return false
351}
352
353// SetTitle allocates a new a.Title and returns the pointer to it.
354func (a *AlertGraphDefinition) SetTitle(v string) {
355	a.Title = &v
356}
357
358// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
359func (a *AlertGraphDefinition) GetTitleAlign() string {
360	if a == nil || a.TitleAlign == nil {
361		return ""
362	}
363	return *a.TitleAlign
364}
365
366// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
367// and a boolean to check if the value has been set.
368func (a *AlertGraphDefinition) GetTitleAlignOk() (string, bool) {
369	if a == nil || a.TitleAlign == nil {
370		return "", false
371	}
372	return *a.TitleAlign, true
373}
374
375// HasTitleAlign returns a boolean if a field has been set.
376func (a *AlertGraphDefinition) HasTitleAlign() bool {
377	if a != nil && a.TitleAlign != nil {
378		return true
379	}
380
381	return false
382}
383
384// SetTitleAlign allocates a new a.TitleAlign and returns the pointer to it.
385func (a *AlertGraphDefinition) SetTitleAlign(v string) {
386	a.TitleAlign = &v
387}
388
389// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
390func (a *AlertGraphDefinition) GetTitleSize() string {
391	if a == nil || a.TitleSize == nil {
392		return ""
393	}
394	return *a.TitleSize
395}
396
397// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
398// and a boolean to check if the value has been set.
399func (a *AlertGraphDefinition) GetTitleSizeOk() (string, bool) {
400	if a == nil || a.TitleSize == nil {
401		return "", false
402	}
403	return *a.TitleSize, true
404}
405
406// HasTitleSize returns a boolean if a field has been set.
407func (a *AlertGraphDefinition) HasTitleSize() bool {
408	if a != nil && a.TitleSize != nil {
409		return true
410	}
411
412	return false
413}
414
415// SetTitleSize allocates a new a.TitleSize and returns the pointer to it.
416func (a *AlertGraphDefinition) SetTitleSize(v string) {
417	a.TitleSize = &v
418}
419
420// GetType returns the Type field if non-nil, zero value otherwise.
421func (a *AlertGraphDefinition) GetType() string {
422	if a == nil || a.Type == nil {
423		return ""
424	}
425	return *a.Type
426}
427
428// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
429// and a boolean to check if the value has been set.
430func (a *AlertGraphDefinition) GetTypeOk() (string, bool) {
431	if a == nil || a.Type == nil {
432		return "", false
433	}
434	return *a.Type, true
435}
436
437// HasType returns a boolean if a field has been set.
438func (a *AlertGraphDefinition) HasType() bool {
439	if a != nil && a.Type != nil {
440		return true
441	}
442
443	return false
444}
445
446// SetType allocates a new a.Type and returns the pointer to it.
447func (a *AlertGraphDefinition) SetType(v string) {
448	a.Type = &v
449}
450
451// GetVizType returns the VizType field if non-nil, zero value otherwise.
452func (a *AlertGraphDefinition) GetVizType() string {
453	if a == nil || a.VizType == nil {
454		return ""
455	}
456	return *a.VizType
457}
458
459// GetVizTypeOk returns a tuple with the VizType field if it's non-nil, zero value otherwise
460// and a boolean to check if the value has been set.
461func (a *AlertGraphDefinition) GetVizTypeOk() (string, bool) {
462	if a == nil || a.VizType == nil {
463		return "", false
464	}
465	return *a.VizType, true
466}
467
468// HasVizType returns a boolean if a field has been set.
469func (a *AlertGraphDefinition) HasVizType() bool {
470	if a != nil && a.VizType != nil {
471		return true
472	}
473
474	return false
475}
476
477// SetVizType allocates a new a.VizType and returns the pointer to it.
478func (a *AlertGraphDefinition) SetVizType(v string) {
479	a.VizType = &v
480}
481
482// GetAlertId returns the AlertId field if non-nil, zero value otherwise.
483func (a *AlertValueDefinition) GetAlertId() string {
484	if a == nil || a.AlertId == nil {
485		return ""
486	}
487	return *a.AlertId
488}
489
490// GetAlertIdOk returns a tuple with the AlertId field if it's non-nil, zero value otherwise
491// and a boolean to check if the value has been set.
492func (a *AlertValueDefinition) GetAlertIdOk() (string, bool) {
493	if a == nil || a.AlertId == nil {
494		return "", false
495	}
496	return *a.AlertId, true
497}
498
499// HasAlertId returns a boolean if a field has been set.
500func (a *AlertValueDefinition) HasAlertId() bool {
501	if a != nil && a.AlertId != nil {
502		return true
503	}
504
505	return false
506}
507
508// SetAlertId allocates a new a.AlertId and returns the pointer to it.
509func (a *AlertValueDefinition) SetAlertId(v string) {
510	a.AlertId = &v
511}
512
513// GetPrecision returns the Precision field if non-nil, zero value otherwise.
514func (a *AlertValueDefinition) GetPrecision() int {
515	if a == nil || a.Precision == nil {
516		return 0
517	}
518	return *a.Precision
519}
520
521// GetPrecisionOk returns a tuple with the Precision field if it's non-nil, zero value otherwise
522// and a boolean to check if the value has been set.
523func (a *AlertValueDefinition) GetPrecisionOk() (int, bool) {
524	if a == nil || a.Precision == nil {
525		return 0, false
526	}
527	return *a.Precision, true
528}
529
530// HasPrecision returns a boolean if a field has been set.
531func (a *AlertValueDefinition) HasPrecision() bool {
532	if a != nil && a.Precision != nil {
533		return true
534	}
535
536	return false
537}
538
539// SetPrecision allocates a new a.Precision and returns the pointer to it.
540func (a *AlertValueDefinition) SetPrecision(v int) {
541	a.Precision = &v
542}
543
544// GetTextAlign returns the TextAlign field if non-nil, zero value otherwise.
545func (a *AlertValueDefinition) GetTextAlign() string {
546	if a == nil || a.TextAlign == nil {
547		return ""
548	}
549	return *a.TextAlign
550}
551
552// GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise
553// and a boolean to check if the value has been set.
554func (a *AlertValueDefinition) GetTextAlignOk() (string, bool) {
555	if a == nil || a.TextAlign == nil {
556		return "", false
557	}
558	return *a.TextAlign, true
559}
560
561// HasTextAlign returns a boolean if a field has been set.
562func (a *AlertValueDefinition) HasTextAlign() bool {
563	if a != nil && a.TextAlign != nil {
564		return true
565	}
566
567	return false
568}
569
570// SetTextAlign allocates a new a.TextAlign and returns the pointer to it.
571func (a *AlertValueDefinition) SetTextAlign(v string) {
572	a.TextAlign = &v
573}
574
575// GetTitle returns the Title field if non-nil, zero value otherwise.
576func (a *AlertValueDefinition) GetTitle() string {
577	if a == nil || a.Title == nil {
578		return ""
579	}
580	return *a.Title
581}
582
583// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
584// and a boolean to check if the value has been set.
585func (a *AlertValueDefinition) GetTitleOk() (string, bool) {
586	if a == nil || a.Title == nil {
587		return "", false
588	}
589	return *a.Title, true
590}
591
592// HasTitle returns a boolean if a field has been set.
593func (a *AlertValueDefinition) HasTitle() bool {
594	if a != nil && a.Title != nil {
595		return true
596	}
597
598	return false
599}
600
601// SetTitle allocates a new a.Title and returns the pointer to it.
602func (a *AlertValueDefinition) SetTitle(v string) {
603	a.Title = &v
604}
605
606// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
607func (a *AlertValueDefinition) GetTitleAlign() string {
608	if a == nil || a.TitleAlign == nil {
609		return ""
610	}
611	return *a.TitleAlign
612}
613
614// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
615// and a boolean to check if the value has been set.
616func (a *AlertValueDefinition) GetTitleAlignOk() (string, bool) {
617	if a == nil || a.TitleAlign == nil {
618		return "", false
619	}
620	return *a.TitleAlign, true
621}
622
623// HasTitleAlign returns a boolean if a field has been set.
624func (a *AlertValueDefinition) HasTitleAlign() bool {
625	if a != nil && a.TitleAlign != nil {
626		return true
627	}
628
629	return false
630}
631
632// SetTitleAlign allocates a new a.TitleAlign and returns the pointer to it.
633func (a *AlertValueDefinition) SetTitleAlign(v string) {
634	a.TitleAlign = &v
635}
636
637// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
638func (a *AlertValueDefinition) GetTitleSize() string {
639	if a == nil || a.TitleSize == nil {
640		return ""
641	}
642	return *a.TitleSize
643}
644
645// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
646// and a boolean to check if the value has been set.
647func (a *AlertValueDefinition) GetTitleSizeOk() (string, bool) {
648	if a == nil || a.TitleSize == nil {
649		return "", false
650	}
651	return *a.TitleSize, true
652}
653
654// HasTitleSize returns a boolean if a field has been set.
655func (a *AlertValueDefinition) HasTitleSize() bool {
656	if a != nil && a.TitleSize != nil {
657		return true
658	}
659
660	return false
661}
662
663// SetTitleSize allocates a new a.TitleSize and returns the pointer to it.
664func (a *AlertValueDefinition) SetTitleSize(v string) {
665	a.TitleSize = &v
666}
667
668// GetType returns the Type field if non-nil, zero value otherwise.
669func (a *AlertValueDefinition) GetType() string {
670	if a == nil || a.Type == nil {
671		return ""
672	}
673	return *a.Type
674}
675
676// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
677// and a boolean to check if the value has been set.
678func (a *AlertValueDefinition) GetTypeOk() (string, bool) {
679	if a == nil || a.Type == nil {
680		return "", false
681	}
682	return *a.Type, true
683}
684
685// HasType returns a boolean if a field has been set.
686func (a *AlertValueDefinition) HasType() bool {
687	if a != nil && a.Type != nil {
688		return true
689	}
690
691	return false
692}
693
694// SetType allocates a new a.Type and returns the pointer to it.
695func (a *AlertValueDefinition) SetType(v string) {
696	a.Type = &v
697}
698
699// GetUnit returns the Unit field if non-nil, zero value otherwise.
700func (a *AlertValueDefinition) GetUnit() string {
701	if a == nil || a.Unit == nil {
702		return ""
703	}
704	return *a.Unit
705}
706
707// GetUnitOk returns a tuple with the Unit field if it's non-nil, zero value otherwise
708// and a boolean to check if the value has been set.
709func (a *AlertValueDefinition) GetUnitOk() (string, bool) {
710	if a == nil || a.Unit == nil {
711		return "", false
712	}
713	return *a.Unit, true
714}
715
716// HasUnit returns a boolean if a field has been set.
717func (a *AlertValueDefinition) HasUnit() bool {
718	if a != nil && a.Unit != nil {
719		return true
720	}
721
722	return false
723}
724
725// SetUnit allocates a new a.Unit and returns the pointer to it.
726func (a *AlertValueDefinition) SetUnit(v string) {
727	a.Unit = &v
728}
729
730// GetCreated returns the Created field if non-nil, zero value otherwise.
731func (a *APIKey) GetCreated() time.Time {
732	if a == nil || a.Created == nil {
733		return time.Time{}
734	}
735	return *a.Created
736}
737
738// GetCreatedOk returns a tuple with the Created field if it's non-nil, zero value otherwise
739// and a boolean to check if the value has been set.
740func (a *APIKey) GetCreatedOk() (time.Time, bool) {
741	if a == nil || a.Created == nil {
742		return time.Time{}, false
743	}
744	return *a.Created, true
745}
746
747// HasCreated returns a boolean if a field has been set.
748func (a *APIKey) HasCreated() bool {
749	if a != nil && a.Created != nil {
750		return true
751	}
752
753	return false
754}
755
756// SetCreated allocates a new a.Created and returns the pointer to it.
757func (a *APIKey) SetCreated(v time.Time) {
758	a.Created = &v
759}
760
761// GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise.
762func (a *APIKey) GetCreatedBy() string {
763	if a == nil || a.CreatedBy == nil {
764		return ""
765	}
766	return *a.CreatedBy
767}
768
769// GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise
770// and a boolean to check if the value has been set.
771func (a *APIKey) GetCreatedByOk() (string, bool) {
772	if a == nil || a.CreatedBy == nil {
773		return "", false
774	}
775	return *a.CreatedBy, true
776}
777
778// HasCreatedBy returns a boolean if a field has been set.
779func (a *APIKey) HasCreatedBy() bool {
780	if a != nil && a.CreatedBy != nil {
781		return true
782	}
783
784	return false
785}
786
787// SetCreatedBy allocates a new a.CreatedBy and returns the pointer to it.
788func (a *APIKey) SetCreatedBy(v string) {
789	a.CreatedBy = &v
790}
791
792// GetKey returns the Key field if non-nil, zero value otherwise.
793func (a *APIKey) GetKey() string {
794	if a == nil || a.Key == nil {
795		return ""
796	}
797	return *a.Key
798}
799
800// GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise
801// and a boolean to check if the value has been set.
802func (a *APIKey) GetKeyOk() (string, bool) {
803	if a == nil || a.Key == nil {
804		return "", false
805	}
806	return *a.Key, true
807}
808
809// HasKey returns a boolean if a field has been set.
810func (a *APIKey) HasKey() bool {
811	if a != nil && a.Key != nil {
812		return true
813	}
814
815	return false
816}
817
818// SetKey allocates a new a.Key and returns the pointer to it.
819func (a *APIKey) SetKey(v string) {
820	a.Key = &v
821}
822
823// GetName returns the Name field if non-nil, zero value otherwise.
824func (a *APIKey) GetName() string {
825	if a == nil || a.Name == nil {
826		return ""
827	}
828	return *a.Name
829}
830
831// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
832// and a boolean to check if the value has been set.
833func (a *APIKey) GetNameOk() (string, bool) {
834	if a == nil || a.Name == nil {
835		return "", false
836	}
837	return *a.Name, true
838}
839
840// HasName returns a boolean if a field has been set.
841func (a *APIKey) HasName() bool {
842	if a != nil && a.Name != nil {
843		return true
844	}
845
846	return false
847}
848
849// SetName allocates a new a.Name and returns the pointer to it.
850func (a *APIKey) SetName(v string) {
851	a.Name = &v
852}
853
854// GetAggregation returns the Aggregation field if non-nil, zero value otherwise.
855func (a *ApmOrLogQueryCompute) GetAggregation() string {
856	if a == nil || a.Aggregation == nil {
857		return ""
858	}
859	return *a.Aggregation
860}
861
862// GetAggregationOk returns a tuple with the Aggregation field if it's non-nil, zero value otherwise
863// and a boolean to check if the value has been set.
864func (a *ApmOrLogQueryCompute) GetAggregationOk() (string, bool) {
865	if a == nil || a.Aggregation == nil {
866		return "", false
867	}
868	return *a.Aggregation, true
869}
870
871// HasAggregation returns a boolean if a field has been set.
872func (a *ApmOrLogQueryCompute) HasAggregation() bool {
873	if a != nil && a.Aggregation != nil {
874		return true
875	}
876
877	return false
878}
879
880// SetAggregation allocates a new a.Aggregation and returns the pointer to it.
881func (a *ApmOrLogQueryCompute) SetAggregation(v string) {
882	a.Aggregation = &v
883}
884
885// GetFacet returns the Facet field if non-nil, zero value otherwise.
886func (a *ApmOrLogQueryCompute) GetFacet() string {
887	if a == nil || a.Facet == nil {
888		return ""
889	}
890	return *a.Facet
891}
892
893// GetFacetOk returns a tuple with the Facet field if it's non-nil, zero value otherwise
894// and a boolean to check if the value has been set.
895func (a *ApmOrLogQueryCompute) GetFacetOk() (string, bool) {
896	if a == nil || a.Facet == nil {
897		return "", false
898	}
899	return *a.Facet, true
900}
901
902// HasFacet returns a boolean if a field has been set.
903func (a *ApmOrLogQueryCompute) HasFacet() bool {
904	if a != nil && a.Facet != nil {
905		return true
906	}
907
908	return false
909}
910
911// SetFacet allocates a new a.Facet and returns the pointer to it.
912func (a *ApmOrLogQueryCompute) SetFacet(v string) {
913	a.Facet = &v
914}
915
916// GetInterval returns the Interval field if non-nil, zero value otherwise.
917func (a *ApmOrLogQueryCompute) GetInterval() int {
918	if a == nil || a.Interval == nil {
919		return 0
920	}
921	return *a.Interval
922}
923
924// GetIntervalOk returns a tuple with the Interval field if it's non-nil, zero value otherwise
925// and a boolean to check if the value has been set.
926func (a *ApmOrLogQueryCompute) GetIntervalOk() (int, bool) {
927	if a == nil || a.Interval == nil {
928		return 0, false
929	}
930	return *a.Interval, true
931}
932
933// HasInterval returns a boolean if a field has been set.
934func (a *ApmOrLogQueryCompute) HasInterval() bool {
935	if a != nil && a.Interval != nil {
936		return true
937	}
938
939	return false
940}
941
942// SetInterval allocates a new a.Interval and returns the pointer to it.
943func (a *ApmOrLogQueryCompute) SetInterval(v int) {
944	a.Interval = &v
945}
946
947// GetFacet returns the Facet field if non-nil, zero value otherwise.
948func (a *ApmOrLogQueryGroupBy) GetFacet() string {
949	if a == nil || a.Facet == nil {
950		return ""
951	}
952	return *a.Facet
953}
954
955// GetFacetOk returns a tuple with the Facet field if it's non-nil, zero value otherwise
956// and a boolean to check if the value has been set.
957func (a *ApmOrLogQueryGroupBy) GetFacetOk() (string, bool) {
958	if a == nil || a.Facet == nil {
959		return "", false
960	}
961	return *a.Facet, true
962}
963
964// HasFacet returns a boolean if a field has been set.
965func (a *ApmOrLogQueryGroupBy) HasFacet() bool {
966	if a != nil && a.Facet != nil {
967		return true
968	}
969
970	return false
971}
972
973// SetFacet allocates a new a.Facet and returns the pointer to it.
974func (a *ApmOrLogQueryGroupBy) SetFacet(v string) {
975	a.Facet = &v
976}
977
978// GetLimit returns the Limit field if non-nil, zero value otherwise.
979func (a *ApmOrLogQueryGroupBy) GetLimit() int {
980	if a == nil || a.Limit == nil {
981		return 0
982	}
983	return *a.Limit
984}
985
986// GetLimitOk returns a tuple with the Limit field if it's non-nil, zero value otherwise
987// and a boolean to check if the value has been set.
988func (a *ApmOrLogQueryGroupBy) GetLimitOk() (int, bool) {
989	if a == nil || a.Limit == nil {
990		return 0, false
991	}
992	return *a.Limit, true
993}
994
995// HasLimit returns a boolean if a field has been set.
996func (a *ApmOrLogQueryGroupBy) HasLimit() bool {
997	if a != nil && a.Limit != nil {
998		return true
999	}
1000
1001	return false
1002}
1003
1004// SetLimit allocates a new a.Limit and returns the pointer to it.
1005func (a *ApmOrLogQueryGroupBy) SetLimit(v int) {
1006	a.Limit = &v
1007}
1008
1009// GetSort returns the Sort field if non-nil, zero value otherwise.
1010func (a *ApmOrLogQueryGroupBy) GetSort() ApmOrLogQueryGroupBySort {
1011	if a == nil || a.Sort == nil {
1012		return ApmOrLogQueryGroupBySort{}
1013	}
1014	return *a.Sort
1015}
1016
1017// GetSortOk returns a tuple with the Sort field if it's non-nil, zero value otherwise
1018// and a boolean to check if the value has been set.
1019func (a *ApmOrLogQueryGroupBy) GetSortOk() (ApmOrLogQueryGroupBySort, bool) {
1020	if a == nil || a.Sort == nil {
1021		return ApmOrLogQueryGroupBySort{}, false
1022	}
1023	return *a.Sort, true
1024}
1025
1026// HasSort returns a boolean if a field has been set.
1027func (a *ApmOrLogQueryGroupBy) HasSort() bool {
1028	if a != nil && a.Sort != nil {
1029		return true
1030	}
1031
1032	return false
1033}
1034
1035// SetSort allocates a new a.Sort and returns the pointer to it.
1036func (a *ApmOrLogQueryGroupBy) SetSort(v ApmOrLogQueryGroupBySort) {
1037	a.Sort = &v
1038}
1039
1040// GetAggregation returns the Aggregation field if non-nil, zero value otherwise.
1041func (a *ApmOrLogQueryGroupBySort) GetAggregation() string {
1042	if a == nil || a.Aggregation == nil {
1043		return ""
1044	}
1045	return *a.Aggregation
1046}
1047
1048// GetAggregationOk returns a tuple with the Aggregation field if it's non-nil, zero value otherwise
1049// and a boolean to check if the value has been set.
1050func (a *ApmOrLogQueryGroupBySort) GetAggregationOk() (string, bool) {
1051	if a == nil || a.Aggregation == nil {
1052		return "", false
1053	}
1054	return *a.Aggregation, true
1055}
1056
1057// HasAggregation returns a boolean if a field has been set.
1058func (a *ApmOrLogQueryGroupBySort) HasAggregation() bool {
1059	if a != nil && a.Aggregation != nil {
1060		return true
1061	}
1062
1063	return false
1064}
1065
1066// SetAggregation allocates a new a.Aggregation and returns the pointer to it.
1067func (a *ApmOrLogQueryGroupBySort) SetAggregation(v string) {
1068	a.Aggregation = &v
1069}
1070
1071// GetFacet returns the Facet field if non-nil, zero value otherwise.
1072func (a *ApmOrLogQueryGroupBySort) GetFacet() string {
1073	if a == nil || a.Facet == nil {
1074		return ""
1075	}
1076	return *a.Facet
1077}
1078
1079// GetFacetOk returns a tuple with the Facet field if it's non-nil, zero value otherwise
1080// and a boolean to check if the value has been set.
1081func (a *ApmOrLogQueryGroupBySort) GetFacetOk() (string, bool) {
1082	if a == nil || a.Facet == nil {
1083		return "", false
1084	}
1085	return *a.Facet, true
1086}
1087
1088// HasFacet returns a boolean if a field has been set.
1089func (a *ApmOrLogQueryGroupBySort) HasFacet() bool {
1090	if a != nil && a.Facet != nil {
1091		return true
1092	}
1093
1094	return false
1095}
1096
1097// SetFacet allocates a new a.Facet and returns the pointer to it.
1098func (a *ApmOrLogQueryGroupBySort) SetFacet(v string) {
1099	a.Facet = &v
1100}
1101
1102// GetOrder returns the Order field if non-nil, zero value otherwise.
1103func (a *ApmOrLogQueryGroupBySort) GetOrder() string {
1104	if a == nil || a.Order == nil {
1105		return ""
1106	}
1107	return *a.Order
1108}
1109
1110// GetOrderOk returns a tuple with the Order field if it's non-nil, zero value otherwise
1111// and a boolean to check if the value has been set.
1112func (a *ApmOrLogQueryGroupBySort) GetOrderOk() (string, bool) {
1113	if a == nil || a.Order == nil {
1114		return "", false
1115	}
1116	return *a.Order, true
1117}
1118
1119// HasOrder returns a boolean if a field has been set.
1120func (a *ApmOrLogQueryGroupBySort) HasOrder() bool {
1121	if a != nil && a.Order != nil {
1122		return true
1123	}
1124
1125	return false
1126}
1127
1128// SetOrder allocates a new a.Order and returns the pointer to it.
1129func (a *ApmOrLogQueryGroupBySort) SetOrder(v string) {
1130	a.Order = &v
1131}
1132
1133// GetQuery returns the Query field if non-nil, zero value otherwise.
1134func (a *ApmOrLogQuerySearch) GetQuery() string {
1135	if a == nil || a.Query == nil {
1136		return ""
1137	}
1138	return *a.Query
1139}
1140
1141// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
1142// and a boolean to check if the value has been set.
1143func (a *ApmOrLogQuerySearch) GetQueryOk() (string, bool) {
1144	if a == nil || a.Query == nil {
1145		return "", false
1146	}
1147	return *a.Query, true
1148}
1149
1150// HasQuery returns a boolean if a field has been set.
1151func (a *ApmOrLogQuerySearch) HasQuery() bool {
1152	if a != nil && a.Query != nil {
1153		return true
1154	}
1155
1156	return false
1157}
1158
1159// SetQuery allocates a new a.Query and returns the pointer to it.
1160func (a *ApmOrLogQuerySearch) SetQuery(v string) {
1161	a.Query = &v
1162}
1163
1164// GetAuthorHandle returns the AuthorHandle field if non-nil, zero value otherwise.
1165func (b *Board) GetAuthorHandle() string {
1166	if b == nil || b.AuthorHandle == nil {
1167		return ""
1168	}
1169	return *b.AuthorHandle
1170}
1171
1172// GetAuthorHandleOk returns a tuple with the AuthorHandle field if it's non-nil, zero value otherwise
1173// and a boolean to check if the value has been set.
1174func (b *Board) GetAuthorHandleOk() (string, bool) {
1175	if b == nil || b.AuthorHandle == nil {
1176		return "", false
1177	}
1178	return *b.AuthorHandle, true
1179}
1180
1181// HasAuthorHandle returns a boolean if a field has been set.
1182func (b *Board) HasAuthorHandle() bool {
1183	if b != nil && b.AuthorHandle != nil {
1184		return true
1185	}
1186
1187	return false
1188}
1189
1190// SetAuthorHandle allocates a new b.AuthorHandle and returns the pointer to it.
1191func (b *Board) SetAuthorHandle(v string) {
1192	b.AuthorHandle = &v
1193}
1194
1195// GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
1196func (b *Board) GetCreatedAt() string {
1197	if b == nil || b.CreatedAt == nil {
1198		return ""
1199	}
1200	return *b.CreatedAt
1201}
1202
1203// GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise
1204// and a boolean to check if the value has been set.
1205func (b *Board) GetCreatedAtOk() (string, bool) {
1206	if b == nil || b.CreatedAt == nil {
1207		return "", false
1208	}
1209	return *b.CreatedAt, true
1210}
1211
1212// HasCreatedAt returns a boolean if a field has been set.
1213func (b *Board) HasCreatedAt() bool {
1214	if b != nil && b.CreatedAt != nil {
1215		return true
1216	}
1217
1218	return false
1219}
1220
1221// SetCreatedAt allocates a new b.CreatedAt and returns the pointer to it.
1222func (b *Board) SetCreatedAt(v string) {
1223	b.CreatedAt = &v
1224}
1225
1226// GetDescription returns the Description field if non-nil, zero value otherwise.
1227func (b *Board) GetDescription() string {
1228	if b == nil || b.Description == nil {
1229		return ""
1230	}
1231	return *b.Description
1232}
1233
1234// GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
1235// and a boolean to check if the value has been set.
1236func (b *Board) GetDescriptionOk() (string, bool) {
1237	if b == nil || b.Description == nil {
1238		return "", false
1239	}
1240	return *b.Description, true
1241}
1242
1243// HasDescription returns a boolean if a field has been set.
1244func (b *Board) HasDescription() bool {
1245	if b != nil && b.Description != nil {
1246		return true
1247	}
1248
1249	return false
1250}
1251
1252// SetDescription allocates a new b.Description and returns the pointer to it.
1253func (b *Board) SetDescription(v string) {
1254	b.Description = &v
1255}
1256
1257// GetId returns the Id field if non-nil, zero value otherwise.
1258func (b *Board) GetId() string {
1259	if b == nil || b.Id == nil {
1260		return ""
1261	}
1262	return *b.Id
1263}
1264
1265// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
1266// and a boolean to check if the value has been set.
1267func (b *Board) GetIdOk() (string, bool) {
1268	if b == nil || b.Id == nil {
1269		return "", false
1270	}
1271	return *b.Id, true
1272}
1273
1274// HasId returns a boolean if a field has been set.
1275func (b *Board) HasId() bool {
1276	if b != nil && b.Id != nil {
1277		return true
1278	}
1279
1280	return false
1281}
1282
1283// SetId allocates a new b.Id and returns the pointer to it.
1284func (b *Board) SetId(v string) {
1285	b.Id = &v
1286}
1287
1288// GetIsReadOnly returns the IsReadOnly field if non-nil, zero value otherwise.
1289func (b *Board) GetIsReadOnly() bool {
1290	if b == nil || b.IsReadOnly == nil {
1291		return false
1292	}
1293	return *b.IsReadOnly
1294}
1295
1296// GetIsReadOnlyOk returns a tuple with the IsReadOnly field if it's non-nil, zero value otherwise
1297// and a boolean to check if the value has been set.
1298func (b *Board) GetIsReadOnlyOk() (bool, bool) {
1299	if b == nil || b.IsReadOnly == nil {
1300		return false, false
1301	}
1302	return *b.IsReadOnly, true
1303}
1304
1305// HasIsReadOnly returns a boolean if a field has been set.
1306func (b *Board) HasIsReadOnly() bool {
1307	if b != nil && b.IsReadOnly != nil {
1308		return true
1309	}
1310
1311	return false
1312}
1313
1314// SetIsReadOnly allocates a new b.IsReadOnly and returns the pointer to it.
1315func (b *Board) SetIsReadOnly(v bool) {
1316	b.IsReadOnly = &v
1317}
1318
1319// GetLayoutType returns the LayoutType field if non-nil, zero value otherwise.
1320func (b *Board) GetLayoutType() string {
1321	if b == nil || b.LayoutType == nil {
1322		return ""
1323	}
1324	return *b.LayoutType
1325}
1326
1327// GetLayoutTypeOk returns a tuple with the LayoutType field if it's non-nil, zero value otherwise
1328// and a boolean to check if the value has been set.
1329func (b *Board) GetLayoutTypeOk() (string, bool) {
1330	if b == nil || b.LayoutType == nil {
1331		return "", false
1332	}
1333	return *b.LayoutType, true
1334}
1335
1336// HasLayoutType returns a boolean if a field has been set.
1337func (b *Board) HasLayoutType() bool {
1338	if b != nil && b.LayoutType != nil {
1339		return true
1340	}
1341
1342	return false
1343}
1344
1345// SetLayoutType allocates a new b.LayoutType and returns the pointer to it.
1346func (b *Board) SetLayoutType(v string) {
1347	b.LayoutType = &v
1348}
1349
1350// GetModifiedAt returns the ModifiedAt field if non-nil, zero value otherwise.
1351func (b *Board) GetModifiedAt() string {
1352	if b == nil || b.ModifiedAt == nil {
1353		return ""
1354	}
1355	return *b.ModifiedAt
1356}
1357
1358// GetModifiedAtOk returns a tuple with the ModifiedAt field if it's non-nil, zero value otherwise
1359// and a boolean to check if the value has been set.
1360func (b *Board) GetModifiedAtOk() (string, bool) {
1361	if b == nil || b.ModifiedAt == nil {
1362		return "", false
1363	}
1364	return *b.ModifiedAt, true
1365}
1366
1367// HasModifiedAt returns a boolean if a field has been set.
1368func (b *Board) HasModifiedAt() bool {
1369	if b != nil && b.ModifiedAt != nil {
1370		return true
1371	}
1372
1373	return false
1374}
1375
1376// SetModifiedAt allocates a new b.ModifiedAt and returns the pointer to it.
1377func (b *Board) SetModifiedAt(v string) {
1378	b.ModifiedAt = &v
1379}
1380
1381// GetTitle returns the Title field if non-nil, zero value otherwise.
1382func (b *Board) GetTitle() string {
1383	if b == nil || b.Title == nil {
1384		return ""
1385	}
1386	return *b.Title
1387}
1388
1389// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
1390// and a boolean to check if the value has been set.
1391func (b *Board) GetTitleOk() (string, bool) {
1392	if b == nil || b.Title == nil {
1393		return "", false
1394	}
1395	return *b.Title, true
1396}
1397
1398// HasTitle returns a boolean if a field has been set.
1399func (b *Board) HasTitle() bool {
1400	if b != nil && b.Title != nil {
1401		return true
1402	}
1403
1404	return false
1405}
1406
1407// SetTitle allocates a new b.Title and returns the pointer to it.
1408func (b *Board) SetTitle(v string) {
1409	b.Title = &v
1410}
1411
1412// GetUrl returns the Url field if non-nil, zero value otherwise.
1413func (b *Board) GetUrl() string {
1414	if b == nil || b.Url == nil {
1415		return ""
1416	}
1417	return *b.Url
1418}
1419
1420// GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
1421// and a boolean to check if the value has been set.
1422func (b *Board) GetUrlOk() (string, bool) {
1423	if b == nil || b.Url == nil {
1424		return "", false
1425	}
1426	return *b.Url, true
1427}
1428
1429// HasUrl returns a boolean if a field has been set.
1430func (b *Board) HasUrl() bool {
1431	if b != nil && b.Url != nil {
1432		return true
1433	}
1434
1435	return false
1436}
1437
1438// SetUrl allocates a new b.Url and returns the pointer to it.
1439func (b *Board) SetUrl(v string) {
1440	b.Url = &v
1441}
1442
1443// GetId returns the Id field if non-nil, zero value otherwise.
1444func (b *BoardWidget) GetId() int {
1445	if b == nil || b.Id == nil {
1446		return 0
1447	}
1448	return *b.Id
1449}
1450
1451// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
1452// and a boolean to check if the value has been set.
1453func (b *BoardWidget) GetIdOk() (int, bool) {
1454	if b == nil || b.Id == nil {
1455		return 0, false
1456	}
1457	return *b.Id, true
1458}
1459
1460// HasId returns a boolean if a field has been set.
1461func (b *BoardWidget) HasId() bool {
1462	if b != nil && b.Id != nil {
1463		return true
1464	}
1465
1466	return false
1467}
1468
1469// SetId allocates a new b.Id and returns the pointer to it.
1470func (b *BoardWidget) SetId(v int) {
1471	b.Id = &v
1472}
1473
1474// GetLayout returns the Layout field if non-nil, zero value otherwise.
1475func (b *BoardWidget) GetLayout() WidgetLayout {
1476	if b == nil || b.Layout == nil {
1477		return WidgetLayout{}
1478	}
1479	return *b.Layout
1480}
1481
1482// GetLayoutOk returns a tuple with the Layout field if it's non-nil, zero value otherwise
1483// and a boolean to check if the value has been set.
1484func (b *BoardWidget) GetLayoutOk() (WidgetLayout, bool) {
1485	if b == nil || b.Layout == nil {
1486		return WidgetLayout{}, false
1487	}
1488	return *b.Layout, true
1489}
1490
1491// HasLayout returns a boolean if a field has been set.
1492func (b *BoardWidget) HasLayout() bool {
1493	if b != nil && b.Layout != nil {
1494		return true
1495	}
1496
1497	return false
1498}
1499
1500// SetLayout allocates a new b.Layout and returns the pointer to it.
1501func (b *BoardWidget) SetLayout(v WidgetLayout) {
1502	b.Layout = &v
1503}
1504
1505// GetTime returns the Time field if non-nil, zero value otherwise.
1506func (c *ChangeDefinition) GetTime() WidgetTime {
1507	if c == nil || c.Time == nil {
1508		return WidgetTime{}
1509	}
1510	return *c.Time
1511}
1512
1513// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
1514// and a boolean to check if the value has been set.
1515func (c *ChangeDefinition) GetTimeOk() (WidgetTime, bool) {
1516	if c == nil || c.Time == nil {
1517		return WidgetTime{}, false
1518	}
1519	return *c.Time, true
1520}
1521
1522// HasTime returns a boolean if a field has been set.
1523func (c *ChangeDefinition) HasTime() bool {
1524	if c != nil && c.Time != nil {
1525		return true
1526	}
1527
1528	return false
1529}
1530
1531// SetTime allocates a new c.Time and returns the pointer to it.
1532func (c *ChangeDefinition) SetTime(v WidgetTime) {
1533	c.Time = &v
1534}
1535
1536// GetTitle returns the Title field if non-nil, zero value otherwise.
1537func (c *ChangeDefinition) GetTitle() string {
1538	if c == nil || c.Title == nil {
1539		return ""
1540	}
1541	return *c.Title
1542}
1543
1544// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
1545// and a boolean to check if the value has been set.
1546func (c *ChangeDefinition) GetTitleOk() (string, bool) {
1547	if c == nil || c.Title == nil {
1548		return "", false
1549	}
1550	return *c.Title, true
1551}
1552
1553// HasTitle returns a boolean if a field has been set.
1554func (c *ChangeDefinition) HasTitle() bool {
1555	if c != nil && c.Title != nil {
1556		return true
1557	}
1558
1559	return false
1560}
1561
1562// SetTitle allocates a new c.Title and returns the pointer to it.
1563func (c *ChangeDefinition) SetTitle(v string) {
1564	c.Title = &v
1565}
1566
1567// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
1568func (c *ChangeDefinition) GetTitleAlign() string {
1569	if c == nil || c.TitleAlign == nil {
1570		return ""
1571	}
1572	return *c.TitleAlign
1573}
1574
1575// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
1576// and a boolean to check if the value has been set.
1577func (c *ChangeDefinition) GetTitleAlignOk() (string, bool) {
1578	if c == nil || c.TitleAlign == nil {
1579		return "", false
1580	}
1581	return *c.TitleAlign, true
1582}
1583
1584// HasTitleAlign returns a boolean if a field has been set.
1585func (c *ChangeDefinition) HasTitleAlign() bool {
1586	if c != nil && c.TitleAlign != nil {
1587		return true
1588	}
1589
1590	return false
1591}
1592
1593// SetTitleAlign allocates a new c.TitleAlign and returns the pointer to it.
1594func (c *ChangeDefinition) SetTitleAlign(v string) {
1595	c.TitleAlign = &v
1596}
1597
1598// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
1599func (c *ChangeDefinition) GetTitleSize() string {
1600	if c == nil || c.TitleSize == nil {
1601		return ""
1602	}
1603	return *c.TitleSize
1604}
1605
1606// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
1607// and a boolean to check if the value has been set.
1608func (c *ChangeDefinition) GetTitleSizeOk() (string, bool) {
1609	if c == nil || c.TitleSize == nil {
1610		return "", false
1611	}
1612	return *c.TitleSize, true
1613}
1614
1615// HasTitleSize returns a boolean if a field has been set.
1616func (c *ChangeDefinition) HasTitleSize() bool {
1617	if c != nil && c.TitleSize != nil {
1618		return true
1619	}
1620
1621	return false
1622}
1623
1624// SetTitleSize allocates a new c.TitleSize and returns the pointer to it.
1625func (c *ChangeDefinition) SetTitleSize(v string) {
1626	c.TitleSize = &v
1627}
1628
1629// GetType returns the Type field if non-nil, zero value otherwise.
1630func (c *ChangeDefinition) GetType() string {
1631	if c == nil || c.Type == nil {
1632		return ""
1633	}
1634	return *c.Type
1635}
1636
1637// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
1638// and a boolean to check if the value has been set.
1639func (c *ChangeDefinition) GetTypeOk() (string, bool) {
1640	if c == nil || c.Type == nil {
1641		return "", false
1642	}
1643	return *c.Type, true
1644}
1645
1646// HasType returns a boolean if a field has been set.
1647func (c *ChangeDefinition) HasType() bool {
1648	if c != nil && c.Type != nil {
1649		return true
1650	}
1651
1652	return false
1653}
1654
1655// SetType allocates a new c.Type and returns the pointer to it.
1656func (c *ChangeDefinition) SetType(v string) {
1657	c.Type = &v
1658}
1659
1660// GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise.
1661func (c *ChangeRequest) GetApmQuery() WidgetApmOrLogQuery {
1662	if c == nil || c.ApmQuery == nil {
1663		return WidgetApmOrLogQuery{}
1664	}
1665	return *c.ApmQuery
1666}
1667
1668// GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise
1669// and a boolean to check if the value has been set.
1670func (c *ChangeRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) {
1671	if c == nil || c.ApmQuery == nil {
1672		return WidgetApmOrLogQuery{}, false
1673	}
1674	return *c.ApmQuery, true
1675}
1676
1677// HasApmQuery returns a boolean if a field has been set.
1678func (c *ChangeRequest) HasApmQuery() bool {
1679	if c != nil && c.ApmQuery != nil {
1680		return true
1681	}
1682
1683	return false
1684}
1685
1686// SetApmQuery allocates a new c.ApmQuery and returns the pointer to it.
1687func (c *ChangeRequest) SetApmQuery(v WidgetApmOrLogQuery) {
1688	c.ApmQuery = &v
1689}
1690
1691// GetChangeType returns the ChangeType field if non-nil, zero value otherwise.
1692func (c *ChangeRequest) GetChangeType() string {
1693	if c == nil || c.ChangeType == nil {
1694		return ""
1695	}
1696	return *c.ChangeType
1697}
1698
1699// GetChangeTypeOk returns a tuple with the ChangeType field if it's non-nil, zero value otherwise
1700// and a boolean to check if the value has been set.
1701func (c *ChangeRequest) GetChangeTypeOk() (string, bool) {
1702	if c == nil || c.ChangeType == nil {
1703		return "", false
1704	}
1705	return *c.ChangeType, true
1706}
1707
1708// HasChangeType returns a boolean if a field has been set.
1709func (c *ChangeRequest) HasChangeType() bool {
1710	if c != nil && c.ChangeType != nil {
1711		return true
1712	}
1713
1714	return false
1715}
1716
1717// SetChangeType allocates a new c.ChangeType and returns the pointer to it.
1718func (c *ChangeRequest) SetChangeType(v string) {
1719	c.ChangeType = &v
1720}
1721
1722// GetCompareTo returns the CompareTo field if non-nil, zero value otherwise.
1723func (c *ChangeRequest) GetCompareTo() string {
1724	if c == nil || c.CompareTo == nil {
1725		return ""
1726	}
1727	return *c.CompareTo
1728}
1729
1730// GetCompareToOk returns a tuple with the CompareTo field if it's non-nil, zero value otherwise
1731// and a boolean to check if the value has been set.
1732func (c *ChangeRequest) GetCompareToOk() (string, bool) {
1733	if c == nil || c.CompareTo == nil {
1734		return "", false
1735	}
1736	return *c.CompareTo, true
1737}
1738
1739// HasCompareTo returns a boolean if a field has been set.
1740func (c *ChangeRequest) HasCompareTo() bool {
1741	if c != nil && c.CompareTo != nil {
1742		return true
1743	}
1744
1745	return false
1746}
1747
1748// SetCompareTo allocates a new c.CompareTo and returns the pointer to it.
1749func (c *ChangeRequest) SetCompareTo(v string) {
1750	c.CompareTo = &v
1751}
1752
1753// GetIncreaseGood returns the IncreaseGood field if non-nil, zero value otherwise.
1754func (c *ChangeRequest) GetIncreaseGood() bool {
1755	if c == nil || c.IncreaseGood == nil {
1756		return false
1757	}
1758	return *c.IncreaseGood
1759}
1760
1761// GetIncreaseGoodOk returns a tuple with the IncreaseGood field if it's non-nil, zero value otherwise
1762// and a boolean to check if the value has been set.
1763func (c *ChangeRequest) GetIncreaseGoodOk() (bool, bool) {
1764	if c == nil || c.IncreaseGood == nil {
1765		return false, false
1766	}
1767	return *c.IncreaseGood, true
1768}
1769
1770// HasIncreaseGood returns a boolean if a field has been set.
1771func (c *ChangeRequest) HasIncreaseGood() bool {
1772	if c != nil && c.IncreaseGood != nil {
1773		return true
1774	}
1775
1776	return false
1777}
1778
1779// SetIncreaseGood allocates a new c.IncreaseGood and returns the pointer to it.
1780func (c *ChangeRequest) SetIncreaseGood(v bool) {
1781	c.IncreaseGood = &v
1782}
1783
1784// GetLogQuery returns the LogQuery field if non-nil, zero value otherwise.
1785func (c *ChangeRequest) GetLogQuery() WidgetApmOrLogQuery {
1786	if c == nil || c.LogQuery == nil {
1787		return WidgetApmOrLogQuery{}
1788	}
1789	return *c.LogQuery
1790}
1791
1792// GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise
1793// and a boolean to check if the value has been set.
1794func (c *ChangeRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) {
1795	if c == nil || c.LogQuery == nil {
1796		return WidgetApmOrLogQuery{}, false
1797	}
1798	return *c.LogQuery, true
1799}
1800
1801// HasLogQuery returns a boolean if a field has been set.
1802func (c *ChangeRequest) HasLogQuery() bool {
1803	if c != nil && c.LogQuery != nil {
1804		return true
1805	}
1806
1807	return false
1808}
1809
1810// SetLogQuery allocates a new c.LogQuery and returns the pointer to it.
1811func (c *ChangeRequest) SetLogQuery(v WidgetApmOrLogQuery) {
1812	c.LogQuery = &v
1813}
1814
1815// GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise.
1816func (c *ChangeRequest) GetMetricQuery() string {
1817	if c == nil || c.MetricQuery == nil {
1818		return ""
1819	}
1820	return *c.MetricQuery
1821}
1822
1823// GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise
1824// and a boolean to check if the value has been set.
1825func (c *ChangeRequest) GetMetricQueryOk() (string, bool) {
1826	if c == nil || c.MetricQuery == nil {
1827		return "", false
1828	}
1829	return *c.MetricQuery, true
1830}
1831
1832// HasMetricQuery returns a boolean if a field has been set.
1833func (c *ChangeRequest) HasMetricQuery() bool {
1834	if c != nil && c.MetricQuery != nil {
1835		return true
1836	}
1837
1838	return false
1839}
1840
1841// SetMetricQuery allocates a new c.MetricQuery and returns the pointer to it.
1842func (c *ChangeRequest) SetMetricQuery(v string) {
1843	c.MetricQuery = &v
1844}
1845
1846// GetOrderBy returns the OrderBy field if non-nil, zero value otherwise.
1847func (c *ChangeRequest) GetOrderBy() string {
1848	if c == nil || c.OrderBy == nil {
1849		return ""
1850	}
1851	return *c.OrderBy
1852}
1853
1854// GetOrderByOk returns a tuple with the OrderBy field if it's non-nil, zero value otherwise
1855// and a boolean to check if the value has been set.
1856func (c *ChangeRequest) GetOrderByOk() (string, bool) {
1857	if c == nil || c.OrderBy == nil {
1858		return "", false
1859	}
1860	return *c.OrderBy, true
1861}
1862
1863// HasOrderBy returns a boolean if a field has been set.
1864func (c *ChangeRequest) HasOrderBy() bool {
1865	if c != nil && c.OrderBy != nil {
1866		return true
1867	}
1868
1869	return false
1870}
1871
1872// SetOrderBy allocates a new c.OrderBy and returns the pointer to it.
1873func (c *ChangeRequest) SetOrderBy(v string) {
1874	c.OrderBy = &v
1875}
1876
1877// GetOrderDir returns the OrderDir field if non-nil, zero value otherwise.
1878func (c *ChangeRequest) GetOrderDir() string {
1879	if c == nil || c.OrderDir == nil {
1880		return ""
1881	}
1882	return *c.OrderDir
1883}
1884
1885// GetOrderDirOk returns a tuple with the OrderDir field if it's non-nil, zero value otherwise
1886// and a boolean to check if the value has been set.
1887func (c *ChangeRequest) GetOrderDirOk() (string, bool) {
1888	if c == nil || c.OrderDir == nil {
1889		return "", false
1890	}
1891	return *c.OrderDir, true
1892}
1893
1894// HasOrderDir returns a boolean if a field has been set.
1895func (c *ChangeRequest) HasOrderDir() bool {
1896	if c != nil && c.OrderDir != nil {
1897		return true
1898	}
1899
1900	return false
1901}
1902
1903// SetOrderDir allocates a new c.OrderDir and returns the pointer to it.
1904func (c *ChangeRequest) SetOrderDir(v string) {
1905	c.OrderDir = &v
1906}
1907
1908// GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise.
1909func (c *ChangeRequest) GetProcessQuery() WidgetProcessQuery {
1910	if c == nil || c.ProcessQuery == nil {
1911		return WidgetProcessQuery{}
1912	}
1913	return *c.ProcessQuery
1914}
1915
1916// GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise
1917// and a boolean to check if the value has been set.
1918func (c *ChangeRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) {
1919	if c == nil || c.ProcessQuery == nil {
1920		return WidgetProcessQuery{}, false
1921	}
1922	return *c.ProcessQuery, true
1923}
1924
1925// HasProcessQuery returns a boolean if a field has been set.
1926func (c *ChangeRequest) HasProcessQuery() bool {
1927	if c != nil && c.ProcessQuery != nil {
1928		return true
1929	}
1930
1931	return false
1932}
1933
1934// SetProcessQuery allocates a new c.ProcessQuery and returns the pointer to it.
1935func (c *ChangeRequest) SetProcessQuery(v WidgetProcessQuery) {
1936	c.ProcessQuery = &v
1937}
1938
1939// GetShowPresent returns the ShowPresent field if non-nil, zero value otherwise.
1940func (c *ChangeRequest) GetShowPresent() bool {
1941	if c == nil || c.ShowPresent == nil {
1942		return false
1943	}
1944	return *c.ShowPresent
1945}
1946
1947// GetShowPresentOk returns a tuple with the ShowPresent field if it's non-nil, zero value otherwise
1948// and a boolean to check if the value has been set.
1949func (c *ChangeRequest) GetShowPresentOk() (bool, bool) {
1950	if c == nil || c.ShowPresent == nil {
1951		return false, false
1952	}
1953	return *c.ShowPresent, true
1954}
1955
1956// HasShowPresent returns a boolean if a field has been set.
1957func (c *ChangeRequest) HasShowPresent() bool {
1958	if c != nil && c.ShowPresent != nil {
1959		return true
1960	}
1961
1962	return false
1963}
1964
1965// SetShowPresent allocates a new c.ShowPresent and returns the pointer to it.
1966func (c *ChangeRequest) SetShowPresent(v bool) {
1967	c.ShowPresent = &v
1968}
1969
1970// GetAccount returns the Account field if non-nil, zero value otherwise.
1971func (c *ChannelSlackRequest) GetAccount() string {
1972	if c == nil || c.Account == nil {
1973		return ""
1974	}
1975	return *c.Account
1976}
1977
1978// GetAccountOk returns a tuple with the Account field if it's non-nil, zero value otherwise
1979// and a boolean to check if the value has been set.
1980func (c *ChannelSlackRequest) GetAccountOk() (string, bool) {
1981	if c == nil || c.Account == nil {
1982		return "", false
1983	}
1984	return *c.Account, true
1985}
1986
1987// HasAccount returns a boolean if a field has been set.
1988func (c *ChannelSlackRequest) HasAccount() bool {
1989	if c != nil && c.Account != nil {
1990		return true
1991	}
1992
1993	return false
1994}
1995
1996// SetAccount allocates a new c.Account and returns the pointer to it.
1997func (c *ChannelSlackRequest) SetAccount(v string) {
1998	c.Account = &v
1999}
2000
2001// GetChannelName returns the ChannelName field if non-nil, zero value otherwise.
2002func (c *ChannelSlackRequest) GetChannelName() string {
2003	if c == nil || c.ChannelName == nil {
2004		return ""
2005	}
2006	return *c.ChannelName
2007}
2008
2009// GetChannelNameOk returns a tuple with the ChannelName field if it's non-nil, zero value otherwise
2010// and a boolean to check if the value has been set.
2011func (c *ChannelSlackRequest) GetChannelNameOk() (string, bool) {
2012	if c == nil || c.ChannelName == nil {
2013		return "", false
2014	}
2015	return *c.ChannelName, true
2016}
2017
2018// HasChannelName returns a boolean if a field has been set.
2019func (c *ChannelSlackRequest) HasChannelName() bool {
2020	if c != nil && c.ChannelName != nil {
2021		return true
2022	}
2023
2024	return false
2025}
2026
2027// SetChannelName allocates a new c.ChannelName and returns the pointer to it.
2028func (c *ChannelSlackRequest) SetChannelName(v string) {
2029	c.ChannelName = &v
2030}
2031
2032// GetTransferAllUserComments returns the TransferAllUserComments field if non-nil, zero value otherwise.
2033func (c *ChannelSlackRequest) GetTransferAllUserComments() bool {
2034	if c == nil || c.TransferAllUserComments == nil {
2035		return false
2036	}
2037	return *c.TransferAllUserComments
2038}
2039
2040// GetTransferAllUserCommentsOk returns a tuple with the TransferAllUserComments field if it's non-nil, zero value otherwise
2041// and a boolean to check if the value has been set.
2042func (c *ChannelSlackRequest) GetTransferAllUserCommentsOk() (bool, bool) {
2043	if c == nil || c.TransferAllUserComments == nil {
2044		return false, false
2045	}
2046	return *c.TransferAllUserComments, true
2047}
2048
2049// HasTransferAllUserComments returns a boolean if a field has been set.
2050func (c *ChannelSlackRequest) HasTransferAllUserComments() bool {
2051	if c != nil && c.TransferAllUserComments != nil {
2052		return true
2053	}
2054
2055	return false
2056}
2057
2058// SetTransferAllUserComments allocates a new c.TransferAllUserComments and returns the pointer to it.
2059func (c *ChannelSlackRequest) SetTransferAllUserComments(v bool) {
2060	c.TransferAllUserComments = &v
2061}
2062
2063// GetCheck returns the Check field if non-nil, zero value otherwise.
2064func (c *Check) GetCheck() string {
2065	if c == nil || c.Check == nil {
2066		return ""
2067	}
2068	return *c.Check
2069}
2070
2071// GetCheckOk returns a tuple with the Check field if it's non-nil, zero value otherwise
2072// and a boolean to check if the value has been set.
2073func (c *Check) GetCheckOk() (string, bool) {
2074	if c == nil || c.Check == nil {
2075		return "", false
2076	}
2077	return *c.Check, true
2078}
2079
2080// HasCheck returns a boolean if a field has been set.
2081func (c *Check) HasCheck() bool {
2082	if c != nil && c.Check != nil {
2083		return true
2084	}
2085
2086	return false
2087}
2088
2089// SetCheck allocates a new c.Check and returns the pointer to it.
2090func (c *Check) SetCheck(v string) {
2091	c.Check = &v
2092}
2093
2094// GetHostName returns the HostName field if non-nil, zero value otherwise.
2095func (c *Check) GetHostName() string {
2096	if c == nil || c.HostName == nil {
2097		return ""
2098	}
2099	return *c.HostName
2100}
2101
2102// GetHostNameOk returns a tuple with the HostName field if it's non-nil, zero value otherwise
2103// and a boolean to check if the value has been set.
2104func (c *Check) GetHostNameOk() (string, bool) {
2105	if c == nil || c.HostName == nil {
2106		return "", false
2107	}
2108	return *c.HostName, true
2109}
2110
2111// HasHostName returns a boolean if a field has been set.
2112func (c *Check) HasHostName() bool {
2113	if c != nil && c.HostName != nil {
2114		return true
2115	}
2116
2117	return false
2118}
2119
2120// SetHostName allocates a new c.HostName and returns the pointer to it.
2121func (c *Check) SetHostName(v string) {
2122	c.HostName = &v
2123}
2124
2125// GetMessage returns the Message field if non-nil, zero value otherwise.
2126func (c *Check) GetMessage() string {
2127	if c == nil || c.Message == nil {
2128		return ""
2129	}
2130	return *c.Message
2131}
2132
2133// GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise
2134// and a boolean to check if the value has been set.
2135func (c *Check) GetMessageOk() (string, bool) {
2136	if c == nil || c.Message == nil {
2137		return "", false
2138	}
2139	return *c.Message, true
2140}
2141
2142// HasMessage returns a boolean if a field has been set.
2143func (c *Check) HasMessage() bool {
2144	if c != nil && c.Message != nil {
2145		return true
2146	}
2147
2148	return false
2149}
2150
2151// SetMessage allocates a new c.Message and returns the pointer to it.
2152func (c *Check) SetMessage(v string) {
2153	c.Message = &v
2154}
2155
2156// GetStatus returns the Status field if non-nil, zero value otherwise.
2157func (c *Check) GetStatus() Status {
2158	if c == nil || c.Status == nil {
2159		return 0
2160	}
2161	return *c.Status
2162}
2163
2164// GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
2165// and a boolean to check if the value has been set.
2166func (c *Check) GetStatusOk() (Status, bool) {
2167	if c == nil || c.Status == nil {
2168		return 0, false
2169	}
2170	return *c.Status, true
2171}
2172
2173// HasStatus returns a boolean if a field has been set.
2174func (c *Check) HasStatus() bool {
2175	if c != nil && c.Status != nil {
2176		return true
2177	}
2178
2179	return false
2180}
2181
2182// SetStatus allocates a new c.Status and returns the pointer to it.
2183func (c *Check) SetStatus(v Status) {
2184	c.Status = &v
2185}
2186
2187// GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.
2188func (c *Check) GetTimestamp() string {
2189	if c == nil || c.Timestamp == nil {
2190		return ""
2191	}
2192	return *c.Timestamp
2193}
2194
2195// GetTimestampOk returns a tuple with the Timestamp field if it's non-nil, zero value otherwise
2196// and a boolean to check if the value has been set.
2197func (c *Check) GetTimestampOk() (string, bool) {
2198	if c == nil || c.Timestamp == nil {
2199		return "", false
2200	}
2201	return *c.Timestamp, true
2202}
2203
2204// HasTimestamp returns a boolean if a field has been set.
2205func (c *Check) HasTimestamp() bool {
2206	if c != nil && c.Timestamp != nil {
2207		return true
2208	}
2209
2210	return false
2211}
2212
2213// SetTimestamp allocates a new c.Timestamp and returns the pointer to it.
2214func (c *Check) SetTimestamp(v string) {
2215	c.Timestamp = &v
2216}
2217
2218// GetCheck returns the Check field if non-nil, zero value otherwise.
2219func (c *CheckStatusDefinition) GetCheck() string {
2220	if c == nil || c.Check == nil {
2221		return ""
2222	}
2223	return *c.Check
2224}
2225
2226// GetCheckOk returns a tuple with the Check field if it's non-nil, zero value otherwise
2227// and a boolean to check if the value has been set.
2228func (c *CheckStatusDefinition) GetCheckOk() (string, bool) {
2229	if c == nil || c.Check == nil {
2230		return "", false
2231	}
2232	return *c.Check, true
2233}
2234
2235// HasCheck returns a boolean if a field has been set.
2236func (c *CheckStatusDefinition) HasCheck() bool {
2237	if c != nil && c.Check != nil {
2238		return true
2239	}
2240
2241	return false
2242}
2243
2244// SetCheck allocates a new c.Check and returns the pointer to it.
2245func (c *CheckStatusDefinition) SetCheck(v string) {
2246	c.Check = &v
2247}
2248
2249// GetGroup returns the Group field if non-nil, zero value otherwise.
2250func (c *CheckStatusDefinition) GetGroup() string {
2251	if c == nil || c.Group == nil {
2252		return ""
2253	}
2254	return *c.Group
2255}
2256
2257// GetGroupOk returns a tuple with the Group field if it's non-nil, zero value otherwise
2258// and a boolean to check if the value has been set.
2259func (c *CheckStatusDefinition) GetGroupOk() (string, bool) {
2260	if c == nil || c.Group == nil {
2261		return "", false
2262	}
2263	return *c.Group, true
2264}
2265
2266// HasGroup returns a boolean if a field has been set.
2267func (c *CheckStatusDefinition) HasGroup() bool {
2268	if c != nil && c.Group != nil {
2269		return true
2270	}
2271
2272	return false
2273}
2274
2275// SetGroup allocates a new c.Group and returns the pointer to it.
2276func (c *CheckStatusDefinition) SetGroup(v string) {
2277	c.Group = &v
2278}
2279
2280// GetGrouping returns the Grouping field if non-nil, zero value otherwise.
2281func (c *CheckStatusDefinition) GetGrouping() string {
2282	if c == nil || c.Grouping == nil {
2283		return ""
2284	}
2285	return *c.Grouping
2286}
2287
2288// GetGroupingOk returns a tuple with the Grouping field if it's non-nil, zero value otherwise
2289// and a boolean to check if the value has been set.
2290func (c *CheckStatusDefinition) GetGroupingOk() (string, bool) {
2291	if c == nil || c.Grouping == nil {
2292		return "", false
2293	}
2294	return *c.Grouping, true
2295}
2296
2297// HasGrouping returns a boolean if a field has been set.
2298func (c *CheckStatusDefinition) HasGrouping() bool {
2299	if c != nil && c.Grouping != nil {
2300		return true
2301	}
2302
2303	return false
2304}
2305
2306// SetGrouping allocates a new c.Grouping and returns the pointer to it.
2307func (c *CheckStatusDefinition) SetGrouping(v string) {
2308	c.Grouping = &v
2309}
2310
2311// GetTime returns the Time field if non-nil, zero value otherwise.
2312func (c *CheckStatusDefinition) GetTime() WidgetTime {
2313	if c == nil || c.Time == nil {
2314		return WidgetTime{}
2315	}
2316	return *c.Time
2317}
2318
2319// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
2320// and a boolean to check if the value has been set.
2321func (c *CheckStatusDefinition) GetTimeOk() (WidgetTime, bool) {
2322	if c == nil || c.Time == nil {
2323		return WidgetTime{}, false
2324	}
2325	return *c.Time, true
2326}
2327
2328// HasTime returns a boolean if a field has been set.
2329func (c *CheckStatusDefinition) HasTime() bool {
2330	if c != nil && c.Time != nil {
2331		return true
2332	}
2333
2334	return false
2335}
2336
2337// SetTime allocates a new c.Time and returns the pointer to it.
2338func (c *CheckStatusDefinition) SetTime(v WidgetTime) {
2339	c.Time = &v
2340}
2341
2342// GetTitle returns the Title field if non-nil, zero value otherwise.
2343func (c *CheckStatusDefinition) GetTitle() string {
2344	if c == nil || c.Title == nil {
2345		return ""
2346	}
2347	return *c.Title
2348}
2349
2350// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
2351// and a boolean to check if the value has been set.
2352func (c *CheckStatusDefinition) GetTitleOk() (string, bool) {
2353	if c == nil || c.Title == nil {
2354		return "", false
2355	}
2356	return *c.Title, true
2357}
2358
2359// HasTitle returns a boolean if a field has been set.
2360func (c *CheckStatusDefinition) HasTitle() bool {
2361	if c != nil && c.Title != nil {
2362		return true
2363	}
2364
2365	return false
2366}
2367
2368// SetTitle allocates a new c.Title and returns the pointer to it.
2369func (c *CheckStatusDefinition) SetTitle(v string) {
2370	c.Title = &v
2371}
2372
2373// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
2374func (c *CheckStatusDefinition) GetTitleAlign() string {
2375	if c == nil || c.TitleAlign == nil {
2376		return ""
2377	}
2378	return *c.TitleAlign
2379}
2380
2381// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
2382// and a boolean to check if the value has been set.
2383func (c *CheckStatusDefinition) GetTitleAlignOk() (string, bool) {
2384	if c == nil || c.TitleAlign == nil {
2385		return "", false
2386	}
2387	return *c.TitleAlign, true
2388}
2389
2390// HasTitleAlign returns a boolean if a field has been set.
2391func (c *CheckStatusDefinition) HasTitleAlign() bool {
2392	if c != nil && c.TitleAlign != nil {
2393		return true
2394	}
2395
2396	return false
2397}
2398
2399// SetTitleAlign allocates a new c.TitleAlign and returns the pointer to it.
2400func (c *CheckStatusDefinition) SetTitleAlign(v string) {
2401	c.TitleAlign = &v
2402}
2403
2404// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
2405func (c *CheckStatusDefinition) GetTitleSize() string {
2406	if c == nil || c.TitleSize == nil {
2407		return ""
2408	}
2409	return *c.TitleSize
2410}
2411
2412// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
2413// and a boolean to check if the value has been set.
2414func (c *CheckStatusDefinition) GetTitleSizeOk() (string, bool) {
2415	if c == nil || c.TitleSize == nil {
2416		return "", false
2417	}
2418	return *c.TitleSize, true
2419}
2420
2421// HasTitleSize returns a boolean if a field has been set.
2422func (c *CheckStatusDefinition) HasTitleSize() bool {
2423	if c != nil && c.TitleSize != nil {
2424		return true
2425	}
2426
2427	return false
2428}
2429
2430// SetTitleSize allocates a new c.TitleSize and returns the pointer to it.
2431func (c *CheckStatusDefinition) SetTitleSize(v string) {
2432	c.TitleSize = &v
2433}
2434
2435// GetType returns the Type field if non-nil, zero value otherwise.
2436func (c *CheckStatusDefinition) GetType() string {
2437	if c == nil || c.Type == nil {
2438		return ""
2439	}
2440	return *c.Type
2441}
2442
2443// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
2444// and a boolean to check if the value has been set.
2445func (c *CheckStatusDefinition) GetTypeOk() (string, bool) {
2446	if c == nil || c.Type == nil {
2447		return "", false
2448	}
2449	return *c.Type, true
2450}
2451
2452// HasType returns a boolean if a field has been set.
2453func (c *CheckStatusDefinition) HasType() bool {
2454	if c != nil && c.Type != nil {
2455		return true
2456	}
2457
2458	return false
2459}
2460
2461// SetType allocates a new c.Type and returns the pointer to it.
2462func (c *CheckStatusDefinition) SetType(v string) {
2463	c.Type = &v
2464}
2465
2466// GetHandle returns the Handle field if non-nil, zero value otherwise.
2467func (c *Comment) GetHandle() string {
2468	if c == nil || c.Handle == nil {
2469		return ""
2470	}
2471	return *c.Handle
2472}
2473
2474// GetHandleOk returns a tuple with the Handle field if it's non-nil, zero value otherwise
2475// and a boolean to check if the value has been set.
2476func (c *Comment) GetHandleOk() (string, bool) {
2477	if c == nil || c.Handle == nil {
2478		return "", false
2479	}
2480	return *c.Handle, true
2481}
2482
2483// HasHandle returns a boolean if a field has been set.
2484func (c *Comment) HasHandle() bool {
2485	if c != nil && c.Handle != nil {
2486		return true
2487	}
2488
2489	return false
2490}
2491
2492// SetHandle allocates a new c.Handle and returns the pointer to it.
2493func (c *Comment) SetHandle(v string) {
2494	c.Handle = &v
2495}
2496
2497// GetId returns the Id field if non-nil, zero value otherwise.
2498func (c *Comment) GetId() int {
2499	if c == nil || c.Id == nil {
2500		return 0
2501	}
2502	return *c.Id
2503}
2504
2505// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
2506// and a boolean to check if the value has been set.
2507func (c *Comment) GetIdOk() (int, bool) {
2508	if c == nil || c.Id == nil {
2509		return 0, false
2510	}
2511	return *c.Id, true
2512}
2513
2514// HasId returns a boolean if a field has been set.
2515func (c *Comment) HasId() bool {
2516	if c != nil && c.Id != nil {
2517		return true
2518	}
2519
2520	return false
2521}
2522
2523// SetId allocates a new c.Id and returns the pointer to it.
2524func (c *Comment) SetId(v int) {
2525	c.Id = &v
2526}
2527
2528// GetMessage returns the Message field if non-nil, zero value otherwise.
2529func (c *Comment) GetMessage() string {
2530	if c == nil || c.Message == nil {
2531		return ""
2532	}
2533	return *c.Message
2534}
2535
2536// GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise
2537// and a boolean to check if the value has been set.
2538func (c *Comment) GetMessageOk() (string, bool) {
2539	if c == nil || c.Message == nil {
2540		return "", false
2541	}
2542	return *c.Message, true
2543}
2544
2545// HasMessage returns a boolean if a field has been set.
2546func (c *Comment) HasMessage() bool {
2547	if c != nil && c.Message != nil {
2548		return true
2549	}
2550
2551	return false
2552}
2553
2554// SetMessage allocates a new c.Message and returns the pointer to it.
2555func (c *Comment) SetMessage(v string) {
2556	c.Message = &v
2557}
2558
2559// GetRelatedId returns the RelatedId field if non-nil, zero value otherwise.
2560func (c *Comment) GetRelatedId() int {
2561	if c == nil || c.RelatedId == nil {
2562		return 0
2563	}
2564	return *c.RelatedId
2565}
2566
2567// GetRelatedIdOk returns a tuple with the RelatedId field if it's non-nil, zero value otherwise
2568// and a boolean to check if the value has been set.
2569func (c *Comment) GetRelatedIdOk() (int, bool) {
2570	if c == nil || c.RelatedId == nil {
2571		return 0, false
2572	}
2573	return *c.RelatedId, true
2574}
2575
2576// HasRelatedId returns a boolean if a field has been set.
2577func (c *Comment) HasRelatedId() bool {
2578	if c != nil && c.RelatedId != nil {
2579		return true
2580	}
2581
2582	return false
2583}
2584
2585// SetRelatedId allocates a new c.RelatedId and returns the pointer to it.
2586func (c *Comment) SetRelatedId(v int) {
2587	c.RelatedId = &v
2588}
2589
2590// GetResource returns the Resource field if non-nil, zero value otherwise.
2591func (c *Comment) GetResource() string {
2592	if c == nil || c.Resource == nil {
2593		return ""
2594	}
2595	return *c.Resource
2596}
2597
2598// GetResourceOk returns a tuple with the Resource field if it's non-nil, zero value otherwise
2599// and a boolean to check if the value has been set.
2600func (c *Comment) GetResourceOk() (string, bool) {
2601	if c == nil || c.Resource == nil {
2602		return "", false
2603	}
2604	return *c.Resource, true
2605}
2606
2607// HasResource returns a boolean if a field has been set.
2608func (c *Comment) HasResource() bool {
2609	if c != nil && c.Resource != nil {
2610		return true
2611	}
2612
2613	return false
2614}
2615
2616// SetResource allocates a new c.Resource and returns the pointer to it.
2617func (c *Comment) SetResource(v string) {
2618	c.Resource = &v
2619}
2620
2621// GetUrl returns the Url field if non-nil, zero value otherwise.
2622func (c *Comment) GetUrl() string {
2623	if c == nil || c.Url == nil {
2624		return ""
2625	}
2626	return *c.Url
2627}
2628
2629// GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
2630// and a boolean to check if the value has been set.
2631func (c *Comment) GetUrlOk() (string, bool) {
2632	if c == nil || c.Url == nil {
2633		return "", false
2634	}
2635	return *c.Url, true
2636}
2637
2638// HasUrl returns a boolean if a field has been set.
2639func (c *Comment) HasUrl() bool {
2640	if c != nil && c.Url != nil {
2641		return true
2642	}
2643
2644	return false
2645}
2646
2647// SetUrl allocates a new c.Url and returns the pointer to it.
2648func (c *Comment) SetUrl(v string) {
2649	c.Url = &v
2650}
2651
2652// GetColor returns the Color field if non-nil, zero value otherwise.
2653func (c *ConditionalFormat) GetColor() string {
2654	if c == nil || c.Color == nil {
2655		return ""
2656	}
2657	return *c.Color
2658}
2659
2660// GetColorOk returns a tuple with the Color field if it's non-nil, zero value otherwise
2661// and a boolean to check if the value has been set.
2662func (c *ConditionalFormat) GetColorOk() (string, bool) {
2663	if c == nil || c.Color == nil {
2664		return "", false
2665	}
2666	return *c.Color, true
2667}
2668
2669// HasColor returns a boolean if a field has been set.
2670func (c *ConditionalFormat) HasColor() bool {
2671	if c != nil && c.Color != nil {
2672		return true
2673	}
2674
2675	return false
2676}
2677
2678// SetColor allocates a new c.Color and returns the pointer to it.
2679func (c *ConditionalFormat) SetColor(v string) {
2680	c.Color = &v
2681}
2682
2683// GetComparator returns the Comparator field if non-nil, zero value otherwise.
2684func (c *ConditionalFormat) GetComparator() string {
2685	if c == nil || c.Comparator == nil {
2686		return ""
2687	}
2688	return *c.Comparator
2689}
2690
2691// GetComparatorOk returns a tuple with the Comparator field if it's non-nil, zero value otherwise
2692// and a boolean to check if the value has been set.
2693func (c *ConditionalFormat) GetComparatorOk() (string, bool) {
2694	if c == nil || c.Comparator == nil {
2695		return "", false
2696	}
2697	return *c.Comparator, true
2698}
2699
2700// HasComparator returns a boolean if a field has been set.
2701func (c *ConditionalFormat) HasComparator() bool {
2702	if c != nil && c.Comparator != nil {
2703		return true
2704	}
2705
2706	return false
2707}
2708
2709// SetComparator allocates a new c.Comparator and returns the pointer to it.
2710func (c *ConditionalFormat) SetComparator(v string) {
2711	c.Comparator = &v
2712}
2713
2714// GetCustomBgColor returns the CustomBgColor field if non-nil, zero value otherwise.
2715func (c *ConditionalFormat) GetCustomBgColor() string {
2716	if c == nil || c.CustomBgColor == nil {
2717		return ""
2718	}
2719	return *c.CustomBgColor
2720}
2721
2722// GetCustomBgColorOk returns a tuple with the CustomBgColor field if it's non-nil, zero value otherwise
2723// and a boolean to check if the value has been set.
2724func (c *ConditionalFormat) GetCustomBgColorOk() (string, bool) {
2725	if c == nil || c.CustomBgColor == nil {
2726		return "", false
2727	}
2728	return *c.CustomBgColor, true
2729}
2730
2731// HasCustomBgColor returns a boolean if a field has been set.
2732func (c *ConditionalFormat) HasCustomBgColor() bool {
2733	if c != nil && c.CustomBgColor != nil {
2734		return true
2735	}
2736
2737	return false
2738}
2739
2740// SetCustomBgColor allocates a new c.CustomBgColor and returns the pointer to it.
2741func (c *ConditionalFormat) SetCustomBgColor(v string) {
2742	c.CustomBgColor = &v
2743}
2744
2745// GetImageURL returns the ImageURL field if non-nil, zero value otherwise.
2746func (c *ConditionalFormat) GetImageURL() string {
2747	if c == nil || c.ImageURL == nil {
2748		return ""
2749	}
2750	return *c.ImageURL
2751}
2752
2753// GetImageURLOk returns a tuple with the ImageURL field if it's non-nil, zero value otherwise
2754// and a boolean to check if the value has been set.
2755func (c *ConditionalFormat) GetImageURLOk() (string, bool) {
2756	if c == nil || c.ImageURL == nil {
2757		return "", false
2758	}
2759	return *c.ImageURL, true
2760}
2761
2762// HasImageURL returns a boolean if a field has been set.
2763func (c *ConditionalFormat) HasImageURL() bool {
2764	if c != nil && c.ImageURL != nil {
2765		return true
2766	}
2767
2768	return false
2769}
2770
2771// SetImageURL allocates a new c.ImageURL and returns the pointer to it.
2772func (c *ConditionalFormat) SetImageURL(v string) {
2773	c.ImageURL = &v
2774}
2775
2776// GetInvert returns the Invert field if non-nil, zero value otherwise.
2777func (c *ConditionalFormat) GetInvert() bool {
2778	if c == nil || c.Invert == nil {
2779		return false
2780	}
2781	return *c.Invert
2782}
2783
2784// GetInvertOk returns a tuple with the Invert field if it's non-nil, zero value otherwise
2785// and a boolean to check if the value has been set.
2786func (c *ConditionalFormat) GetInvertOk() (bool, bool) {
2787	if c == nil || c.Invert == nil {
2788		return false, false
2789	}
2790	return *c.Invert, true
2791}
2792
2793// HasInvert returns a boolean if a field has been set.
2794func (c *ConditionalFormat) HasInvert() bool {
2795	if c != nil && c.Invert != nil {
2796		return true
2797	}
2798
2799	return false
2800}
2801
2802// SetInvert allocates a new c.Invert and returns the pointer to it.
2803func (c *ConditionalFormat) SetInvert(v bool) {
2804	c.Invert = &v
2805}
2806
2807// GetPalette returns the Palette field if non-nil, zero value otherwise.
2808func (c *ConditionalFormat) GetPalette() string {
2809	if c == nil || c.Palette == nil {
2810		return ""
2811	}
2812	return *c.Palette
2813}
2814
2815// GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise
2816// and a boolean to check if the value has been set.
2817func (c *ConditionalFormat) GetPaletteOk() (string, bool) {
2818	if c == nil || c.Palette == nil {
2819		return "", false
2820	}
2821	return *c.Palette, true
2822}
2823
2824// HasPalette returns a boolean if a field has been set.
2825func (c *ConditionalFormat) HasPalette() bool {
2826	if c != nil && c.Palette != nil {
2827		return true
2828	}
2829
2830	return false
2831}
2832
2833// SetPalette allocates a new c.Palette and returns the pointer to it.
2834func (c *ConditionalFormat) SetPalette(v string) {
2835	c.Palette = &v
2836}
2837
2838// GetValue returns the Value field if non-nil, zero value otherwise.
2839func (c *ConditionalFormat) GetValue() string {
2840	if c == nil || c.Value == nil {
2841		return ""
2842	}
2843	return *c.Value
2844}
2845
2846// GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise
2847// and a boolean to check if the value has been set.
2848func (c *ConditionalFormat) GetValueOk() (string, bool) {
2849	if c == nil || c.Value == nil {
2850		return "", false
2851	}
2852	return *c.Value, true
2853}
2854
2855// HasValue returns a boolean if a field has been set.
2856func (c *ConditionalFormat) HasValue() bool {
2857	if c != nil && c.Value != nil {
2858		return true
2859	}
2860
2861	return false
2862}
2863
2864// SetValue allocates a new c.Value and returns the pointer to it.
2865func (c *ConditionalFormat) SetValue(v string) {
2866	c.Value = &v
2867}
2868
2869// GetAccessRole returns the AccessRole field if non-nil, zero value otherwise.
2870func (c *CreatedBy) GetAccessRole() string {
2871	if c == nil || c.AccessRole == nil {
2872		return ""
2873	}
2874	return *c.AccessRole
2875}
2876
2877// GetAccessRoleOk returns a tuple with the AccessRole field if it's non-nil, zero value otherwise
2878// and a boolean to check if the value has been set.
2879func (c *CreatedBy) GetAccessRoleOk() (string, bool) {
2880	if c == nil || c.AccessRole == nil {
2881		return "", false
2882	}
2883	return *c.AccessRole, true
2884}
2885
2886// HasAccessRole returns a boolean if a field has been set.
2887func (c *CreatedBy) HasAccessRole() bool {
2888	if c != nil && c.AccessRole != nil {
2889		return true
2890	}
2891
2892	return false
2893}
2894
2895// SetAccessRole allocates a new c.AccessRole and returns the pointer to it.
2896func (c *CreatedBy) SetAccessRole(v string) {
2897	c.AccessRole = &v
2898}
2899
2900// GetDisabled returns the Disabled field if non-nil, zero value otherwise.
2901func (c *CreatedBy) GetDisabled() bool {
2902	if c == nil || c.Disabled == nil {
2903		return false
2904	}
2905	return *c.Disabled
2906}
2907
2908// GetDisabledOk returns a tuple with the Disabled field if it's non-nil, zero value otherwise
2909// and a boolean to check if the value has been set.
2910func (c *CreatedBy) GetDisabledOk() (bool, bool) {
2911	if c == nil || c.Disabled == nil {
2912		return false, false
2913	}
2914	return *c.Disabled, true
2915}
2916
2917// HasDisabled returns a boolean if a field has been set.
2918func (c *CreatedBy) HasDisabled() bool {
2919	if c != nil && c.Disabled != nil {
2920		return true
2921	}
2922
2923	return false
2924}
2925
2926// SetDisabled allocates a new c.Disabled and returns the pointer to it.
2927func (c *CreatedBy) SetDisabled(v bool) {
2928	c.Disabled = &v
2929}
2930
2931// GetEmail returns the Email field if non-nil, zero value otherwise.
2932func (c *CreatedBy) GetEmail() string {
2933	if c == nil || c.Email == nil {
2934		return ""
2935	}
2936	return *c.Email
2937}
2938
2939// GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise
2940// and a boolean to check if the value has been set.
2941func (c *CreatedBy) GetEmailOk() (string, bool) {
2942	if c == nil || c.Email == nil {
2943		return "", false
2944	}
2945	return *c.Email, true
2946}
2947
2948// HasEmail returns a boolean if a field has been set.
2949func (c *CreatedBy) HasEmail() bool {
2950	if c != nil && c.Email != nil {
2951		return true
2952	}
2953
2954	return false
2955}
2956
2957// SetEmail allocates a new c.Email and returns the pointer to it.
2958func (c *CreatedBy) SetEmail(v string) {
2959	c.Email = &v
2960}
2961
2962// GetHandle returns the Handle field if non-nil, zero value otherwise.
2963func (c *CreatedBy) GetHandle() string {
2964	if c == nil || c.Handle == nil {
2965		return ""
2966	}
2967	return *c.Handle
2968}
2969
2970// GetHandleOk returns a tuple with the Handle field if it's non-nil, zero value otherwise
2971// and a boolean to check if the value has been set.
2972func (c *CreatedBy) GetHandleOk() (string, bool) {
2973	if c == nil || c.Handle == nil {
2974		return "", false
2975	}
2976	return *c.Handle, true
2977}
2978
2979// HasHandle returns a boolean if a field has been set.
2980func (c *CreatedBy) HasHandle() bool {
2981	if c != nil && c.Handle != nil {
2982		return true
2983	}
2984
2985	return false
2986}
2987
2988// SetHandle allocates a new c.Handle and returns the pointer to it.
2989func (c *CreatedBy) SetHandle(v string) {
2990	c.Handle = &v
2991}
2992
2993// GetIcon returns the Icon field if non-nil, zero value otherwise.
2994func (c *CreatedBy) GetIcon() string {
2995	if c == nil || c.Icon == nil {
2996		return ""
2997	}
2998	return *c.Icon
2999}
3000
3001// GetIconOk returns a tuple with the Icon field if it's non-nil, zero value otherwise
3002// and a boolean to check if the value has been set.
3003func (c *CreatedBy) GetIconOk() (string, bool) {
3004	if c == nil || c.Icon == nil {
3005		return "", false
3006	}
3007	return *c.Icon, true
3008}
3009
3010// HasIcon returns a boolean if a field has been set.
3011func (c *CreatedBy) HasIcon() bool {
3012	if c != nil && c.Icon != nil {
3013		return true
3014	}
3015
3016	return false
3017}
3018
3019// SetIcon allocates a new c.Icon and returns the pointer to it.
3020func (c *CreatedBy) SetIcon(v string) {
3021	c.Icon = &v
3022}
3023
3024// GetIsAdmin returns the IsAdmin field if non-nil, zero value otherwise.
3025func (c *CreatedBy) GetIsAdmin() bool {
3026	if c == nil || c.IsAdmin == nil {
3027		return false
3028	}
3029	return *c.IsAdmin
3030}
3031
3032// GetIsAdminOk returns a tuple with the IsAdmin field if it's non-nil, zero value otherwise
3033// and a boolean to check if the value has been set.
3034func (c *CreatedBy) GetIsAdminOk() (bool, bool) {
3035	if c == nil || c.IsAdmin == nil {
3036		return false, false
3037	}
3038	return *c.IsAdmin, true
3039}
3040
3041// HasIsAdmin returns a boolean if a field has been set.
3042func (c *CreatedBy) HasIsAdmin() bool {
3043	if c != nil && c.IsAdmin != nil {
3044		return true
3045	}
3046
3047	return false
3048}
3049
3050// SetIsAdmin allocates a new c.IsAdmin and returns the pointer to it.
3051func (c *CreatedBy) SetIsAdmin(v bool) {
3052	c.IsAdmin = &v
3053}
3054
3055// GetName returns the Name field if non-nil, zero value otherwise.
3056func (c *CreatedBy) GetName() string {
3057	if c == nil || c.Name == nil {
3058		return ""
3059	}
3060	return *c.Name
3061}
3062
3063// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
3064// and a boolean to check if the value has been set.
3065func (c *CreatedBy) GetNameOk() (string, bool) {
3066	if c == nil || c.Name == nil {
3067		return "", false
3068	}
3069	return *c.Name, true
3070}
3071
3072// HasName returns a boolean if a field has been set.
3073func (c *CreatedBy) HasName() bool {
3074	if c != nil && c.Name != nil {
3075		return true
3076	}
3077
3078	return false
3079}
3080
3081// SetName allocates a new c.Name and returns the pointer to it.
3082func (c *CreatedBy) SetName(v string) {
3083	c.Name = &v
3084}
3085
3086// GetRole returns the Role field if non-nil, zero value otherwise.
3087func (c *CreatedBy) GetRole() string {
3088	if c == nil || c.Role == nil {
3089		return ""
3090	}
3091	return *c.Role
3092}
3093
3094// GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise
3095// and a boolean to check if the value has been set.
3096func (c *CreatedBy) GetRoleOk() (string, bool) {
3097	if c == nil || c.Role == nil {
3098		return "", false
3099	}
3100	return *c.Role, true
3101}
3102
3103// HasRole returns a boolean if a field has been set.
3104func (c *CreatedBy) HasRole() bool {
3105	if c != nil && c.Role != nil {
3106		return true
3107	}
3108
3109	return false
3110}
3111
3112// SetRole allocates a new c.Role and returns the pointer to it.
3113func (c *CreatedBy) SetRole(v string) {
3114	c.Role = &v
3115}
3116
3117// GetVerified returns the Verified field if non-nil, zero value otherwise.
3118func (c *CreatedBy) GetVerified() bool {
3119	if c == nil || c.Verified == nil {
3120		return false
3121	}
3122	return *c.Verified
3123}
3124
3125// GetVerifiedOk returns a tuple with the Verified field if it's non-nil, zero value otherwise
3126// and a boolean to check if the value has been set.
3127func (c *CreatedBy) GetVerifiedOk() (bool, bool) {
3128	if c == nil || c.Verified == nil {
3129		return false, false
3130	}
3131	return *c.Verified, true
3132}
3133
3134// HasVerified returns a boolean if a field has been set.
3135func (c *CreatedBy) HasVerified() bool {
3136	if c != nil && c.Verified != nil {
3137		return true
3138	}
3139
3140	return false
3141}
3142
3143// SetVerified allocates a new c.Verified and returns the pointer to it.
3144func (c *CreatedBy) SetVerified(v bool) {
3145	c.Verified = &v
3146}
3147
3148// GetEmail returns the Email field if non-nil, zero value otherwise.
3149func (c *Creator) GetEmail() string {
3150	if c == nil || c.Email == nil {
3151		return ""
3152	}
3153	return *c.Email
3154}
3155
3156// GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise
3157// and a boolean to check if the value has been set.
3158func (c *Creator) GetEmailOk() (string, bool) {
3159	if c == nil || c.Email == nil {
3160		return "", false
3161	}
3162	return *c.Email, true
3163}
3164
3165// HasEmail returns a boolean if a field has been set.
3166func (c *Creator) HasEmail() bool {
3167	if c != nil && c.Email != nil {
3168		return true
3169	}
3170
3171	return false
3172}
3173
3174// SetEmail allocates a new c.Email and returns the pointer to it.
3175func (c *Creator) SetEmail(v string) {
3176	c.Email = &v
3177}
3178
3179// GetHandle returns the Handle field if non-nil, zero value otherwise.
3180func (c *Creator) GetHandle() string {
3181	if c == nil || c.Handle == nil {
3182		return ""
3183	}
3184	return *c.Handle
3185}
3186
3187// GetHandleOk returns a tuple with the Handle field if it's non-nil, zero value otherwise
3188// and a boolean to check if the value has been set.
3189func (c *Creator) GetHandleOk() (string, bool) {
3190	if c == nil || c.Handle == nil {
3191		return "", false
3192	}
3193	return *c.Handle, true
3194}
3195
3196// HasHandle returns a boolean if a field has been set.
3197func (c *Creator) HasHandle() bool {
3198	if c != nil && c.Handle != nil {
3199		return true
3200	}
3201
3202	return false
3203}
3204
3205// SetHandle allocates a new c.Handle and returns the pointer to it.
3206func (c *Creator) SetHandle(v string) {
3207	c.Handle = &v
3208}
3209
3210// GetId returns the Id field if non-nil, zero value otherwise.
3211func (c *Creator) GetId() int {
3212	if c == nil || c.Id == nil {
3213		return 0
3214	}
3215	return *c.Id
3216}
3217
3218// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
3219// and a boolean to check if the value has been set.
3220func (c *Creator) GetIdOk() (int, bool) {
3221	if c == nil || c.Id == nil {
3222		return 0, false
3223	}
3224	return *c.Id, true
3225}
3226
3227// HasId returns a boolean if a field has been set.
3228func (c *Creator) HasId() bool {
3229	if c != nil && c.Id != nil {
3230		return true
3231	}
3232
3233	return false
3234}
3235
3236// SetId allocates a new c.Id and returns the pointer to it.
3237func (c *Creator) SetId(v int) {
3238	c.Id = &v
3239}
3240
3241// GetName returns the Name field if non-nil, zero value otherwise.
3242func (c *Creator) GetName() string {
3243	if c == nil || c.Name == nil {
3244		return ""
3245	}
3246	return *c.Name
3247}
3248
3249// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
3250// and a boolean to check if the value has been set.
3251func (c *Creator) GetNameOk() (string, bool) {
3252	if c == nil || c.Name == nil {
3253		return "", false
3254	}
3255	return *c.Name, true
3256}
3257
3258// HasName returns a boolean if a field has been set.
3259func (c *Creator) HasName() bool {
3260	if c != nil && c.Name != nil {
3261		return true
3262	}
3263
3264	return false
3265}
3266
3267// SetName allocates a new c.Name and returns the pointer to it.
3268func (c *Creator) SetName(v string) {
3269	c.Name = &v
3270}
3271
3272// GetDescription returns the Description field if non-nil, zero value otherwise.
3273func (d *Dashboard) GetDescription() string {
3274	if d == nil || d.Description == nil {
3275		return ""
3276	}
3277	return *d.Description
3278}
3279
3280// GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
3281// and a boolean to check if the value has been set.
3282func (d *Dashboard) GetDescriptionOk() (string, bool) {
3283	if d == nil || d.Description == nil {
3284		return "", false
3285	}
3286	return *d.Description, true
3287}
3288
3289// HasDescription returns a boolean if a field has been set.
3290func (d *Dashboard) HasDescription() bool {
3291	if d != nil && d.Description != nil {
3292		return true
3293	}
3294
3295	return false
3296}
3297
3298// SetDescription allocates a new d.Description and returns the pointer to it.
3299func (d *Dashboard) SetDescription(v string) {
3300	d.Description = &v
3301}
3302
3303// GetId returns the Id field if non-nil, zero value otherwise.
3304func (d *Dashboard) GetId() int {
3305	if d == nil || d.Id == nil {
3306		return 0
3307	}
3308	return *d.Id
3309}
3310
3311// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
3312// and a boolean to check if the value has been set.
3313func (d *Dashboard) GetIdOk() (int, bool) {
3314	if d == nil || d.Id == nil {
3315		return 0, false
3316	}
3317	return *d.Id, true
3318}
3319
3320// HasId returns a boolean if a field has been set.
3321func (d *Dashboard) HasId() bool {
3322	if d != nil && d.Id != nil {
3323		return true
3324	}
3325
3326	return false
3327}
3328
3329// SetId allocates a new d.Id and returns the pointer to it.
3330func (d *Dashboard) SetId(v int) {
3331	d.Id = &v
3332}
3333
3334// GetNewId returns the NewId field if non-nil, zero value otherwise.
3335func (d *Dashboard) GetNewId() string {
3336	if d == nil || d.NewId == nil {
3337		return ""
3338	}
3339	return *d.NewId
3340}
3341
3342// GetNewIdOk returns a tuple with the NewId field if it's non-nil, zero value otherwise
3343// and a boolean to check if the value has been set.
3344func (d *Dashboard) GetNewIdOk() (string, bool) {
3345	if d == nil || d.NewId == nil {
3346		return "", false
3347	}
3348	return *d.NewId, true
3349}
3350
3351// HasNewId returns a boolean if a field has been set.
3352func (d *Dashboard) HasNewId() bool {
3353	if d != nil && d.NewId != nil {
3354		return true
3355	}
3356
3357	return false
3358}
3359
3360// SetNewId allocates a new d.NewId and returns the pointer to it.
3361func (d *Dashboard) SetNewId(v string) {
3362	d.NewId = &v
3363}
3364
3365// GetReadOnly returns the ReadOnly field if non-nil, zero value otherwise.
3366func (d *Dashboard) GetReadOnly() bool {
3367	if d == nil || d.ReadOnly == nil {
3368		return false
3369	}
3370	return *d.ReadOnly
3371}
3372
3373// GetReadOnlyOk returns a tuple with the ReadOnly field if it's non-nil, zero value otherwise
3374// and a boolean to check if the value has been set.
3375func (d *Dashboard) GetReadOnlyOk() (bool, bool) {
3376	if d == nil || d.ReadOnly == nil {
3377		return false, false
3378	}
3379	return *d.ReadOnly, true
3380}
3381
3382// HasReadOnly returns a boolean if a field has been set.
3383func (d *Dashboard) HasReadOnly() bool {
3384	if d != nil && d.ReadOnly != nil {
3385		return true
3386	}
3387
3388	return false
3389}
3390
3391// SetReadOnly allocates a new d.ReadOnly and returns the pointer to it.
3392func (d *Dashboard) SetReadOnly(v bool) {
3393	d.ReadOnly = &v
3394}
3395
3396// GetTitle returns the Title field if non-nil, zero value otherwise.
3397func (d *Dashboard) GetTitle() string {
3398	if d == nil || d.Title == nil {
3399		return ""
3400	}
3401	return *d.Title
3402}
3403
3404// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
3405// and a boolean to check if the value has been set.
3406func (d *Dashboard) GetTitleOk() (string, bool) {
3407	if d == nil || d.Title == nil {
3408		return "", false
3409	}
3410	return *d.Title, true
3411}
3412
3413// HasTitle returns a boolean if a field has been set.
3414func (d *Dashboard) HasTitle() bool {
3415	if d != nil && d.Title != nil {
3416		return true
3417	}
3418
3419	return false
3420}
3421
3422// SetTitle allocates a new d.Title and returns the pointer to it.
3423func (d *Dashboard) SetTitle(v string) {
3424	d.Title = &v
3425}
3426
3427// GetComparator returns the Comparator field if non-nil, zero value otherwise.
3428func (d *DashboardConditionalFormat) GetComparator() string {
3429	if d == nil || d.Comparator == nil {
3430		return ""
3431	}
3432	return *d.Comparator
3433}
3434
3435// GetComparatorOk returns a tuple with the Comparator field if it's non-nil, zero value otherwise
3436// and a boolean to check if the value has been set.
3437func (d *DashboardConditionalFormat) GetComparatorOk() (string, bool) {
3438	if d == nil || d.Comparator == nil {
3439		return "", false
3440	}
3441	return *d.Comparator, true
3442}
3443
3444// HasComparator returns a boolean if a field has been set.
3445func (d *DashboardConditionalFormat) HasComparator() bool {
3446	if d != nil && d.Comparator != nil {
3447		return true
3448	}
3449
3450	return false
3451}
3452
3453// SetComparator allocates a new d.Comparator and returns the pointer to it.
3454func (d *DashboardConditionalFormat) SetComparator(v string) {
3455	d.Comparator = &v
3456}
3457
3458// GetCustomBgColor returns the CustomBgColor field if non-nil, zero value otherwise.
3459func (d *DashboardConditionalFormat) GetCustomBgColor() string {
3460	if d == nil || d.CustomBgColor == nil {
3461		return ""
3462	}
3463	return *d.CustomBgColor
3464}
3465
3466// GetCustomBgColorOk returns a tuple with the CustomBgColor field if it's non-nil, zero value otherwise
3467// and a boolean to check if the value has been set.
3468func (d *DashboardConditionalFormat) GetCustomBgColorOk() (string, bool) {
3469	if d == nil || d.CustomBgColor == nil {
3470		return "", false
3471	}
3472	return *d.CustomBgColor, true
3473}
3474
3475// HasCustomBgColor returns a boolean if a field has been set.
3476func (d *DashboardConditionalFormat) HasCustomBgColor() bool {
3477	if d != nil && d.CustomBgColor != nil {
3478		return true
3479	}
3480
3481	return false
3482}
3483
3484// SetCustomBgColor allocates a new d.CustomBgColor and returns the pointer to it.
3485func (d *DashboardConditionalFormat) SetCustomBgColor(v string) {
3486	d.CustomBgColor = &v
3487}
3488
3489// GetCustomFgColor returns the CustomFgColor field if non-nil, zero value otherwise.
3490func (d *DashboardConditionalFormat) GetCustomFgColor() string {
3491	if d == nil || d.CustomFgColor == nil {
3492		return ""
3493	}
3494	return *d.CustomFgColor
3495}
3496
3497// GetCustomFgColorOk returns a tuple with the CustomFgColor field if it's non-nil, zero value otherwise
3498// and a boolean to check if the value has been set.
3499func (d *DashboardConditionalFormat) GetCustomFgColorOk() (string, bool) {
3500	if d == nil || d.CustomFgColor == nil {
3501		return "", false
3502	}
3503	return *d.CustomFgColor, true
3504}
3505
3506// HasCustomFgColor returns a boolean if a field has been set.
3507func (d *DashboardConditionalFormat) HasCustomFgColor() bool {
3508	if d != nil && d.CustomFgColor != nil {
3509		return true
3510	}
3511
3512	return false
3513}
3514
3515// SetCustomFgColor allocates a new d.CustomFgColor and returns the pointer to it.
3516func (d *DashboardConditionalFormat) SetCustomFgColor(v string) {
3517	d.CustomFgColor = &v
3518}
3519
3520// GetCustomImageUrl returns the CustomImageUrl field if non-nil, zero value otherwise.
3521func (d *DashboardConditionalFormat) GetCustomImageUrl() string {
3522	if d == nil || d.CustomImageUrl == nil {
3523		return ""
3524	}
3525	return *d.CustomImageUrl
3526}
3527
3528// GetCustomImageUrlOk returns a tuple with the CustomImageUrl field if it's non-nil, zero value otherwise
3529// and a boolean to check if the value has been set.
3530func (d *DashboardConditionalFormat) GetCustomImageUrlOk() (string, bool) {
3531	if d == nil || d.CustomImageUrl == nil {
3532		return "", false
3533	}
3534	return *d.CustomImageUrl, true
3535}
3536
3537// HasCustomImageUrl returns a boolean if a field has been set.
3538func (d *DashboardConditionalFormat) HasCustomImageUrl() bool {
3539	if d != nil && d.CustomImageUrl != nil {
3540		return true
3541	}
3542
3543	return false
3544}
3545
3546// SetCustomImageUrl allocates a new d.CustomImageUrl and returns the pointer to it.
3547func (d *DashboardConditionalFormat) SetCustomImageUrl(v string) {
3548	d.CustomImageUrl = &v
3549}
3550
3551// GetInverted returns the Inverted field if non-nil, zero value otherwise.
3552func (d *DashboardConditionalFormat) GetInverted() bool {
3553	if d == nil || d.Inverted == nil {
3554		return false
3555	}
3556	return *d.Inverted
3557}
3558
3559// GetInvertedOk returns a tuple with the Inverted field if it's non-nil, zero value otherwise
3560// and a boolean to check if the value has been set.
3561func (d *DashboardConditionalFormat) GetInvertedOk() (bool, bool) {
3562	if d == nil || d.Inverted == nil {
3563		return false, false
3564	}
3565	return *d.Inverted, true
3566}
3567
3568// HasInverted returns a boolean if a field has been set.
3569func (d *DashboardConditionalFormat) HasInverted() bool {
3570	if d != nil && d.Inverted != nil {
3571		return true
3572	}
3573
3574	return false
3575}
3576
3577// SetInverted allocates a new d.Inverted and returns the pointer to it.
3578func (d *DashboardConditionalFormat) SetInverted(v bool) {
3579	d.Inverted = &v
3580}
3581
3582// GetPalette returns the Palette field if non-nil, zero value otherwise.
3583func (d *DashboardConditionalFormat) GetPalette() string {
3584	if d == nil || d.Palette == nil {
3585		return ""
3586	}
3587	return *d.Palette
3588}
3589
3590// GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise
3591// and a boolean to check if the value has been set.
3592func (d *DashboardConditionalFormat) GetPaletteOk() (string, bool) {
3593	if d == nil || d.Palette == nil {
3594		return "", false
3595	}
3596	return *d.Palette, true
3597}
3598
3599// HasPalette returns a boolean if a field has been set.
3600func (d *DashboardConditionalFormat) HasPalette() bool {
3601	if d != nil && d.Palette != nil {
3602		return true
3603	}
3604
3605	return false
3606}
3607
3608// SetPalette allocates a new d.Palette and returns the pointer to it.
3609func (d *DashboardConditionalFormat) SetPalette(v string) {
3610	d.Palette = &v
3611}
3612
3613// GetValue returns the Value field if non-nil, zero value otherwise.
3614func (d *DashboardConditionalFormat) GetValue() json.Number {
3615	if d == nil || d.Value == nil {
3616		return ""
3617	}
3618	return *d.Value
3619}
3620
3621// GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise
3622// and a boolean to check if the value has been set.
3623func (d *DashboardConditionalFormat) GetValueOk() (json.Number, bool) {
3624	if d == nil || d.Value == nil {
3625		return "", false
3626	}
3627	return *d.Value, true
3628}
3629
3630// HasValue returns a boolean if a field has been set.
3631func (d *DashboardConditionalFormat) HasValue() bool {
3632	if d != nil && d.Value != nil {
3633		return true
3634	}
3635
3636	return false
3637}
3638
3639// SetValue allocates a new d.Value and returns the pointer to it.
3640func (d *DashboardConditionalFormat) SetValue(v json.Number) {
3641	d.Value = &v
3642}
3643
3644// GetDashboardCount returns the DashboardCount field if non-nil, zero value otherwise.
3645func (d *DashboardList) GetDashboardCount() int {
3646	if d == nil || d.DashboardCount == nil {
3647		return 0
3648	}
3649	return *d.DashboardCount
3650}
3651
3652// GetDashboardCountOk returns a tuple with the DashboardCount field if it's non-nil, zero value otherwise
3653// and a boolean to check if the value has been set.
3654func (d *DashboardList) GetDashboardCountOk() (int, bool) {
3655	if d == nil || d.DashboardCount == nil {
3656		return 0, false
3657	}
3658	return *d.DashboardCount, true
3659}
3660
3661// HasDashboardCount returns a boolean if a field has been set.
3662func (d *DashboardList) HasDashboardCount() bool {
3663	if d != nil && d.DashboardCount != nil {
3664		return true
3665	}
3666
3667	return false
3668}
3669
3670// SetDashboardCount allocates a new d.DashboardCount and returns the pointer to it.
3671func (d *DashboardList) SetDashboardCount(v int) {
3672	d.DashboardCount = &v
3673}
3674
3675// GetId returns the Id field if non-nil, zero value otherwise.
3676func (d *DashboardList) GetId() int {
3677	if d == nil || d.Id == nil {
3678		return 0
3679	}
3680	return *d.Id
3681}
3682
3683// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
3684// and a boolean to check if the value has been set.
3685func (d *DashboardList) GetIdOk() (int, bool) {
3686	if d == nil || d.Id == nil {
3687		return 0, false
3688	}
3689	return *d.Id, true
3690}
3691
3692// HasId returns a boolean if a field has been set.
3693func (d *DashboardList) HasId() bool {
3694	if d != nil && d.Id != nil {
3695		return true
3696	}
3697
3698	return false
3699}
3700
3701// SetId allocates a new d.Id and returns the pointer to it.
3702func (d *DashboardList) SetId(v int) {
3703	d.Id = &v
3704}
3705
3706// GetName returns the Name field if non-nil, zero value otherwise.
3707func (d *DashboardList) GetName() string {
3708	if d == nil || d.Name == nil {
3709		return ""
3710	}
3711	return *d.Name
3712}
3713
3714// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
3715// and a boolean to check if the value has been set.
3716func (d *DashboardList) GetNameOk() (string, bool) {
3717	if d == nil || d.Name == nil {
3718		return "", false
3719	}
3720	return *d.Name, true
3721}
3722
3723// HasName returns a boolean if a field has been set.
3724func (d *DashboardList) HasName() bool {
3725	if d != nil && d.Name != nil {
3726		return true
3727	}
3728
3729	return false
3730}
3731
3732// SetName allocates a new d.Name and returns the pointer to it.
3733func (d *DashboardList) SetName(v string) {
3734	d.Name = &v
3735}
3736
3737// GetId returns the Id field if non-nil, zero value otherwise.
3738func (d *DashboardListItem) GetId() int {
3739	if d == nil || d.Id == nil {
3740		return 0
3741	}
3742	return *d.Id
3743}
3744
3745// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
3746// and a boolean to check if the value has been set.
3747func (d *DashboardListItem) GetIdOk() (int, bool) {
3748	if d == nil || d.Id == nil {
3749		return 0, false
3750	}
3751	return *d.Id, true
3752}
3753
3754// HasId returns a boolean if a field has been set.
3755func (d *DashboardListItem) HasId() bool {
3756	if d != nil && d.Id != nil {
3757		return true
3758	}
3759
3760	return false
3761}
3762
3763// SetId allocates a new d.Id and returns the pointer to it.
3764func (d *DashboardListItem) SetId(v int) {
3765	d.Id = &v
3766}
3767
3768// GetType returns the Type field if non-nil, zero value otherwise.
3769func (d *DashboardListItem) GetType() string {
3770	if d == nil || d.Type == nil {
3771		return ""
3772	}
3773	return *d.Type
3774}
3775
3776// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
3777// and a boolean to check if the value has been set.
3778func (d *DashboardListItem) GetTypeOk() (string, bool) {
3779	if d == nil || d.Type == nil {
3780		return "", false
3781	}
3782	return *d.Type, true
3783}
3784
3785// HasType returns a boolean if a field has been set.
3786func (d *DashboardListItem) HasType() bool {
3787	if d != nil && d.Type != nil {
3788		return true
3789	}
3790
3791	return false
3792}
3793
3794// SetType allocates a new d.Type and returns the pointer to it.
3795func (d *DashboardListItem) SetType(v string) {
3796	d.Type = &v
3797}
3798
3799// GetCreated returns the Created field if non-nil, zero value otherwise.
3800func (d *DashboardLite) GetCreated() string {
3801	if d == nil || d.Created == nil {
3802		return ""
3803	}
3804	return *d.Created
3805}
3806
3807// GetCreatedOk returns a tuple with the Created field if it's non-nil, zero value otherwise
3808// and a boolean to check if the value has been set.
3809func (d *DashboardLite) GetCreatedOk() (string, bool) {
3810	if d == nil || d.Created == nil {
3811		return "", false
3812	}
3813	return *d.Created, true
3814}
3815
3816// HasCreated returns a boolean if a field has been set.
3817func (d *DashboardLite) HasCreated() bool {
3818	if d != nil && d.Created != nil {
3819		return true
3820	}
3821
3822	return false
3823}
3824
3825// SetCreated allocates a new d.Created and returns the pointer to it.
3826func (d *DashboardLite) SetCreated(v string) {
3827	d.Created = &v
3828}
3829
3830// GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise.
3831func (d *DashboardLite) GetCreatedBy() CreatedBy {
3832	if d == nil || d.CreatedBy == nil {
3833		return CreatedBy{}
3834	}
3835	return *d.CreatedBy
3836}
3837
3838// GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise
3839// and a boolean to check if the value has been set.
3840func (d *DashboardLite) GetCreatedByOk() (CreatedBy, bool) {
3841	if d == nil || d.CreatedBy == nil {
3842		return CreatedBy{}, false
3843	}
3844	return *d.CreatedBy, true
3845}
3846
3847// HasCreatedBy returns a boolean if a field has been set.
3848func (d *DashboardLite) HasCreatedBy() bool {
3849	if d != nil && d.CreatedBy != nil {
3850		return true
3851	}
3852
3853	return false
3854}
3855
3856// SetCreatedBy allocates a new d.CreatedBy and returns the pointer to it.
3857func (d *DashboardLite) SetCreatedBy(v CreatedBy) {
3858	d.CreatedBy = &v
3859}
3860
3861// GetDescription returns the Description field if non-nil, zero value otherwise.
3862func (d *DashboardLite) GetDescription() string {
3863	if d == nil || d.Description == nil {
3864		return ""
3865	}
3866	return *d.Description
3867}
3868
3869// GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
3870// and a boolean to check if the value has been set.
3871func (d *DashboardLite) GetDescriptionOk() (string, bool) {
3872	if d == nil || d.Description == nil {
3873		return "", false
3874	}
3875	return *d.Description, true
3876}
3877
3878// HasDescription returns a boolean if a field has been set.
3879func (d *DashboardLite) HasDescription() bool {
3880	if d != nil && d.Description != nil {
3881		return true
3882	}
3883
3884	return false
3885}
3886
3887// SetDescription allocates a new d.Description and returns the pointer to it.
3888func (d *DashboardLite) SetDescription(v string) {
3889	d.Description = &v
3890}
3891
3892// GetId returns the Id field if non-nil, zero value otherwise.
3893func (d *DashboardLite) GetId() int {
3894	if d == nil || d.Id == nil {
3895		return 0
3896	}
3897	return *d.Id
3898}
3899
3900// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
3901// and a boolean to check if the value has been set.
3902func (d *DashboardLite) GetIdOk() (int, bool) {
3903	if d == nil || d.Id == nil {
3904		return 0, false
3905	}
3906	return *d.Id, true
3907}
3908
3909// HasId returns a boolean if a field has been set.
3910func (d *DashboardLite) HasId() bool {
3911	if d != nil && d.Id != nil {
3912		return true
3913	}
3914
3915	return false
3916}
3917
3918// SetId allocates a new d.Id and returns the pointer to it.
3919func (d *DashboardLite) SetId(v int) {
3920	d.Id = &v
3921}
3922
3923// GetModified returns the Modified field if non-nil, zero value otherwise.
3924func (d *DashboardLite) GetModified() string {
3925	if d == nil || d.Modified == nil {
3926		return ""
3927	}
3928	return *d.Modified
3929}
3930
3931// GetModifiedOk returns a tuple with the Modified field if it's non-nil, zero value otherwise
3932// and a boolean to check if the value has been set.
3933func (d *DashboardLite) GetModifiedOk() (string, bool) {
3934	if d == nil || d.Modified == nil {
3935		return "", false
3936	}
3937	return *d.Modified, true
3938}
3939
3940// HasModified returns a boolean if a field has been set.
3941func (d *DashboardLite) HasModified() bool {
3942	if d != nil && d.Modified != nil {
3943		return true
3944	}
3945
3946	return false
3947}
3948
3949// SetModified allocates a new d.Modified and returns the pointer to it.
3950func (d *DashboardLite) SetModified(v string) {
3951	d.Modified = &v
3952}
3953
3954// GetReadOnly returns the ReadOnly field if non-nil, zero value otherwise.
3955func (d *DashboardLite) GetReadOnly() bool {
3956	if d == nil || d.ReadOnly == nil {
3957		return false
3958	}
3959	return *d.ReadOnly
3960}
3961
3962// GetReadOnlyOk returns a tuple with the ReadOnly field if it's non-nil, zero value otherwise
3963// and a boolean to check if the value has been set.
3964func (d *DashboardLite) GetReadOnlyOk() (bool, bool) {
3965	if d == nil || d.ReadOnly == nil {
3966		return false, false
3967	}
3968	return *d.ReadOnly, true
3969}
3970
3971// HasReadOnly returns a boolean if a field has been set.
3972func (d *DashboardLite) HasReadOnly() bool {
3973	if d != nil && d.ReadOnly != nil {
3974		return true
3975	}
3976
3977	return false
3978}
3979
3980// SetReadOnly allocates a new d.ReadOnly and returns the pointer to it.
3981func (d *DashboardLite) SetReadOnly(v bool) {
3982	d.ReadOnly = &v
3983}
3984
3985// GetResource returns the Resource field if non-nil, zero value otherwise.
3986func (d *DashboardLite) GetResource() string {
3987	if d == nil || d.Resource == nil {
3988		return ""
3989	}
3990	return *d.Resource
3991}
3992
3993// GetResourceOk returns a tuple with the Resource field if it's non-nil, zero value otherwise
3994// and a boolean to check if the value has been set.
3995func (d *DashboardLite) GetResourceOk() (string, bool) {
3996	if d == nil || d.Resource == nil {
3997		return "", false
3998	}
3999	return *d.Resource, true
4000}
4001
4002// HasResource returns a boolean if a field has been set.
4003func (d *DashboardLite) HasResource() bool {
4004	if d != nil && d.Resource != nil {
4005		return true
4006	}
4007
4008	return false
4009}
4010
4011// SetResource allocates a new d.Resource and returns the pointer to it.
4012func (d *DashboardLite) SetResource(v string) {
4013	d.Resource = &v
4014}
4015
4016// GetTitle returns the Title field if non-nil, zero value otherwise.
4017func (d *DashboardLite) GetTitle() string {
4018	if d == nil || d.Title == nil {
4019		return ""
4020	}
4021	return *d.Title
4022}
4023
4024// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
4025// and a boolean to check if the value has been set.
4026func (d *DashboardLite) GetTitleOk() (string, bool) {
4027	if d == nil || d.Title == nil {
4028		return "", false
4029	}
4030	return *d.Title, true
4031}
4032
4033// HasTitle returns a boolean if a field has been set.
4034func (d *DashboardLite) HasTitle() bool {
4035	if d != nil && d.Title != nil {
4036		return true
4037	}
4038
4039	return false
4040}
4041
4042// SetTitle allocates a new d.Title and returns the pointer to it.
4043func (d *DashboardLite) SetTitle(v string) {
4044	d.Title = &v
4045}
4046
4047// GetTime returns the Time field if non-nil, zero value otherwise.
4048func (d *DistributionDefinition) GetTime() WidgetTime {
4049	if d == nil || d.Time == nil {
4050		return WidgetTime{}
4051	}
4052	return *d.Time
4053}
4054
4055// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
4056// and a boolean to check if the value has been set.
4057func (d *DistributionDefinition) GetTimeOk() (WidgetTime, bool) {
4058	if d == nil || d.Time == nil {
4059		return WidgetTime{}, false
4060	}
4061	return *d.Time, true
4062}
4063
4064// HasTime returns a boolean if a field has been set.
4065func (d *DistributionDefinition) HasTime() bool {
4066	if d != nil && d.Time != nil {
4067		return true
4068	}
4069
4070	return false
4071}
4072
4073// SetTime allocates a new d.Time and returns the pointer to it.
4074func (d *DistributionDefinition) SetTime(v WidgetTime) {
4075	d.Time = &v
4076}
4077
4078// GetTitle returns the Title field if non-nil, zero value otherwise.
4079func (d *DistributionDefinition) GetTitle() string {
4080	if d == nil || d.Title == nil {
4081		return ""
4082	}
4083	return *d.Title
4084}
4085
4086// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
4087// and a boolean to check if the value has been set.
4088func (d *DistributionDefinition) GetTitleOk() (string, bool) {
4089	if d == nil || d.Title == nil {
4090		return "", false
4091	}
4092	return *d.Title, true
4093}
4094
4095// HasTitle returns a boolean if a field has been set.
4096func (d *DistributionDefinition) HasTitle() bool {
4097	if d != nil && d.Title != nil {
4098		return true
4099	}
4100
4101	return false
4102}
4103
4104// SetTitle allocates a new d.Title and returns the pointer to it.
4105func (d *DistributionDefinition) SetTitle(v string) {
4106	d.Title = &v
4107}
4108
4109// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
4110func (d *DistributionDefinition) GetTitleAlign() string {
4111	if d == nil || d.TitleAlign == nil {
4112		return ""
4113	}
4114	return *d.TitleAlign
4115}
4116
4117// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
4118// and a boolean to check if the value has been set.
4119func (d *DistributionDefinition) GetTitleAlignOk() (string, bool) {
4120	if d == nil || d.TitleAlign == nil {
4121		return "", false
4122	}
4123	return *d.TitleAlign, true
4124}
4125
4126// HasTitleAlign returns a boolean if a field has been set.
4127func (d *DistributionDefinition) HasTitleAlign() bool {
4128	if d != nil && d.TitleAlign != nil {
4129		return true
4130	}
4131
4132	return false
4133}
4134
4135// SetTitleAlign allocates a new d.TitleAlign and returns the pointer to it.
4136func (d *DistributionDefinition) SetTitleAlign(v string) {
4137	d.TitleAlign = &v
4138}
4139
4140// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
4141func (d *DistributionDefinition) GetTitleSize() string {
4142	if d == nil || d.TitleSize == nil {
4143		return ""
4144	}
4145	return *d.TitleSize
4146}
4147
4148// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
4149// and a boolean to check if the value has been set.
4150func (d *DistributionDefinition) GetTitleSizeOk() (string, bool) {
4151	if d == nil || d.TitleSize == nil {
4152		return "", false
4153	}
4154	return *d.TitleSize, true
4155}
4156
4157// HasTitleSize returns a boolean if a field has been set.
4158func (d *DistributionDefinition) HasTitleSize() bool {
4159	if d != nil && d.TitleSize != nil {
4160		return true
4161	}
4162
4163	return false
4164}
4165
4166// SetTitleSize allocates a new d.TitleSize and returns the pointer to it.
4167func (d *DistributionDefinition) SetTitleSize(v string) {
4168	d.TitleSize = &v
4169}
4170
4171// GetType returns the Type field if non-nil, zero value otherwise.
4172func (d *DistributionDefinition) GetType() string {
4173	if d == nil || d.Type == nil {
4174		return ""
4175	}
4176	return *d.Type
4177}
4178
4179// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
4180// and a boolean to check if the value has been set.
4181func (d *DistributionDefinition) GetTypeOk() (string, bool) {
4182	if d == nil || d.Type == nil {
4183		return "", false
4184	}
4185	return *d.Type, true
4186}
4187
4188// HasType returns a boolean if a field has been set.
4189func (d *DistributionDefinition) HasType() bool {
4190	if d != nil && d.Type != nil {
4191		return true
4192	}
4193
4194	return false
4195}
4196
4197// SetType allocates a new d.Type and returns the pointer to it.
4198func (d *DistributionDefinition) SetType(v string) {
4199	d.Type = &v
4200}
4201
4202// GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise.
4203func (d *DistributionRequest) GetApmQuery() WidgetApmOrLogQuery {
4204	if d == nil || d.ApmQuery == nil {
4205		return WidgetApmOrLogQuery{}
4206	}
4207	return *d.ApmQuery
4208}
4209
4210// GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise
4211// and a boolean to check if the value has been set.
4212func (d *DistributionRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) {
4213	if d == nil || d.ApmQuery == nil {
4214		return WidgetApmOrLogQuery{}, false
4215	}
4216	return *d.ApmQuery, true
4217}
4218
4219// HasApmQuery returns a boolean if a field has been set.
4220func (d *DistributionRequest) HasApmQuery() bool {
4221	if d != nil && d.ApmQuery != nil {
4222		return true
4223	}
4224
4225	return false
4226}
4227
4228// SetApmQuery allocates a new d.ApmQuery and returns the pointer to it.
4229func (d *DistributionRequest) SetApmQuery(v WidgetApmOrLogQuery) {
4230	d.ApmQuery = &v
4231}
4232
4233// GetLogQuery returns the LogQuery field if non-nil, zero value otherwise.
4234func (d *DistributionRequest) GetLogQuery() WidgetApmOrLogQuery {
4235	if d == nil || d.LogQuery == nil {
4236		return WidgetApmOrLogQuery{}
4237	}
4238	return *d.LogQuery
4239}
4240
4241// GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise
4242// and a boolean to check if the value has been set.
4243func (d *DistributionRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) {
4244	if d == nil || d.LogQuery == nil {
4245		return WidgetApmOrLogQuery{}, false
4246	}
4247	return *d.LogQuery, true
4248}
4249
4250// HasLogQuery returns a boolean if a field has been set.
4251func (d *DistributionRequest) HasLogQuery() bool {
4252	if d != nil && d.LogQuery != nil {
4253		return true
4254	}
4255
4256	return false
4257}
4258
4259// SetLogQuery allocates a new d.LogQuery and returns the pointer to it.
4260func (d *DistributionRequest) SetLogQuery(v WidgetApmOrLogQuery) {
4261	d.LogQuery = &v
4262}
4263
4264// GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise.
4265func (d *DistributionRequest) GetMetricQuery() string {
4266	if d == nil || d.MetricQuery == nil {
4267		return ""
4268	}
4269	return *d.MetricQuery
4270}
4271
4272// GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise
4273// and a boolean to check if the value has been set.
4274func (d *DistributionRequest) GetMetricQueryOk() (string, bool) {
4275	if d == nil || d.MetricQuery == nil {
4276		return "", false
4277	}
4278	return *d.MetricQuery, true
4279}
4280
4281// HasMetricQuery returns a boolean if a field has been set.
4282func (d *DistributionRequest) HasMetricQuery() bool {
4283	if d != nil && d.MetricQuery != nil {
4284		return true
4285	}
4286
4287	return false
4288}
4289
4290// SetMetricQuery allocates a new d.MetricQuery and returns the pointer to it.
4291func (d *DistributionRequest) SetMetricQuery(v string) {
4292	d.MetricQuery = &v
4293}
4294
4295// GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise.
4296func (d *DistributionRequest) GetProcessQuery() WidgetProcessQuery {
4297	if d == nil || d.ProcessQuery == nil {
4298		return WidgetProcessQuery{}
4299	}
4300	return *d.ProcessQuery
4301}
4302
4303// GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise
4304// and a boolean to check if the value has been set.
4305func (d *DistributionRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) {
4306	if d == nil || d.ProcessQuery == nil {
4307		return WidgetProcessQuery{}, false
4308	}
4309	return *d.ProcessQuery, true
4310}
4311
4312// HasProcessQuery returns a boolean if a field has been set.
4313func (d *DistributionRequest) HasProcessQuery() bool {
4314	if d != nil && d.ProcessQuery != nil {
4315		return true
4316	}
4317
4318	return false
4319}
4320
4321// SetProcessQuery allocates a new d.ProcessQuery and returns the pointer to it.
4322func (d *DistributionRequest) SetProcessQuery(v WidgetProcessQuery) {
4323	d.ProcessQuery = &v
4324}
4325
4326// GetStyle returns the Style field if non-nil, zero value otherwise.
4327func (d *DistributionRequest) GetStyle() WidgetRequestStyle {
4328	if d == nil || d.Style == nil {
4329		return WidgetRequestStyle{}
4330	}
4331	return *d.Style
4332}
4333
4334// GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise
4335// and a boolean to check if the value has been set.
4336func (d *DistributionRequest) GetStyleOk() (WidgetRequestStyle, bool) {
4337	if d == nil || d.Style == nil {
4338		return WidgetRequestStyle{}, false
4339	}
4340	return *d.Style, true
4341}
4342
4343// HasStyle returns a boolean if a field has been set.
4344func (d *DistributionRequest) HasStyle() bool {
4345	if d != nil && d.Style != nil {
4346		return true
4347	}
4348
4349	return false
4350}
4351
4352// SetStyle allocates a new d.Style and returns the pointer to it.
4353func (d *DistributionRequest) SetStyle(v WidgetRequestStyle) {
4354	d.Style = &v
4355}
4356
4357// GetActive returns the Active field if non-nil, zero value otherwise.
4358func (d *Downtime) GetActive() bool {
4359	if d == nil || d.Active == nil {
4360		return false
4361	}
4362	return *d.Active
4363}
4364
4365// GetActiveOk returns a tuple with the Active field if it's non-nil, zero value otherwise
4366// and a boolean to check if the value has been set.
4367func (d *Downtime) GetActiveOk() (bool, bool) {
4368	if d == nil || d.Active == nil {
4369		return false, false
4370	}
4371	return *d.Active, true
4372}
4373
4374// HasActive returns a boolean if a field has been set.
4375func (d *Downtime) HasActive() bool {
4376	if d != nil && d.Active != nil {
4377		return true
4378	}
4379
4380	return false
4381}
4382
4383// SetActive allocates a new d.Active and returns the pointer to it.
4384func (d *Downtime) SetActive(v bool) {
4385	d.Active = &v
4386}
4387
4388// GetCanceled returns the Canceled field if non-nil, zero value otherwise.
4389func (d *Downtime) GetCanceled() int {
4390	if d == nil || d.Canceled == nil {
4391		return 0
4392	}
4393	return *d.Canceled
4394}
4395
4396// GetCanceledOk returns a tuple with the Canceled field if it's non-nil, zero value otherwise
4397// and a boolean to check if the value has been set.
4398func (d *Downtime) GetCanceledOk() (int, bool) {
4399	if d == nil || d.Canceled == nil {
4400		return 0, false
4401	}
4402	return *d.Canceled, true
4403}
4404
4405// HasCanceled returns a boolean if a field has been set.
4406func (d *Downtime) HasCanceled() bool {
4407	if d != nil && d.Canceled != nil {
4408		return true
4409	}
4410
4411	return false
4412}
4413
4414// SetCanceled allocates a new d.Canceled and returns the pointer to it.
4415func (d *Downtime) SetCanceled(v int) {
4416	d.Canceled = &v
4417}
4418
4419// GetCreatorID returns the CreatorID field if non-nil, zero value otherwise.
4420func (d *Downtime) GetCreatorID() int {
4421	if d == nil || d.CreatorID == nil {
4422		return 0
4423	}
4424	return *d.CreatorID
4425}
4426
4427// GetCreatorIDOk returns a tuple with the CreatorID field if it's non-nil, zero value otherwise
4428// and a boolean to check if the value has been set.
4429func (d *Downtime) GetCreatorIDOk() (int, bool) {
4430	if d == nil || d.CreatorID == nil {
4431		return 0, false
4432	}
4433	return *d.CreatorID, true
4434}
4435
4436// HasCreatorID returns a boolean if a field has been set.
4437func (d *Downtime) HasCreatorID() bool {
4438	if d != nil && d.CreatorID != nil {
4439		return true
4440	}
4441
4442	return false
4443}
4444
4445// SetCreatorID allocates a new d.CreatorID and returns the pointer to it.
4446func (d *Downtime) SetCreatorID(v int) {
4447	d.CreatorID = &v
4448}
4449
4450// GetDisabled returns the Disabled field if non-nil, zero value otherwise.
4451func (d *Downtime) GetDisabled() bool {
4452	if d == nil || d.Disabled == nil {
4453		return false
4454	}
4455	return *d.Disabled
4456}
4457
4458// GetDisabledOk returns a tuple with the Disabled field if it's non-nil, zero value otherwise
4459// and a boolean to check if the value has been set.
4460func (d *Downtime) GetDisabledOk() (bool, bool) {
4461	if d == nil || d.Disabled == nil {
4462		return false, false
4463	}
4464	return *d.Disabled, true
4465}
4466
4467// HasDisabled returns a boolean if a field has been set.
4468func (d *Downtime) HasDisabled() bool {
4469	if d != nil && d.Disabled != nil {
4470		return true
4471	}
4472
4473	return false
4474}
4475
4476// SetDisabled allocates a new d.Disabled and returns the pointer to it.
4477func (d *Downtime) SetDisabled(v bool) {
4478	d.Disabled = &v
4479}
4480
4481// GetEnd returns the End field if non-nil, zero value otherwise.
4482func (d *Downtime) GetEnd() int {
4483	if d == nil || d.End == nil {
4484		return 0
4485	}
4486	return *d.End
4487}
4488
4489// GetEndOk returns a tuple with the End field if it's non-nil, zero value otherwise
4490// and a boolean to check if the value has been set.
4491func (d *Downtime) GetEndOk() (int, bool) {
4492	if d == nil || d.End == nil {
4493		return 0, false
4494	}
4495	return *d.End, true
4496}
4497
4498// HasEnd returns a boolean if a field has been set.
4499func (d *Downtime) HasEnd() bool {
4500	if d != nil && d.End != nil {
4501		return true
4502	}
4503
4504	return false
4505}
4506
4507// SetEnd allocates a new d.End and returns the pointer to it.
4508func (d *Downtime) SetEnd(v int) {
4509	d.End = &v
4510}
4511
4512// GetId returns the Id field if non-nil, zero value otherwise.
4513func (d *Downtime) GetId() int {
4514	if d == nil || d.Id == nil {
4515		return 0
4516	}
4517	return *d.Id
4518}
4519
4520// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
4521// and a boolean to check if the value has been set.
4522func (d *Downtime) GetIdOk() (int, bool) {
4523	if d == nil || d.Id == nil {
4524		return 0, false
4525	}
4526	return *d.Id, true
4527}
4528
4529// HasId returns a boolean if a field has been set.
4530func (d *Downtime) HasId() bool {
4531	if d != nil && d.Id != nil {
4532		return true
4533	}
4534
4535	return false
4536}
4537
4538// SetId allocates a new d.Id and returns the pointer to it.
4539func (d *Downtime) SetId(v int) {
4540	d.Id = &v
4541}
4542
4543// GetMessage returns the Message field if non-nil, zero value otherwise.
4544func (d *Downtime) GetMessage() string {
4545	if d == nil || d.Message == nil {
4546		return ""
4547	}
4548	return *d.Message
4549}
4550
4551// GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise
4552// and a boolean to check if the value has been set.
4553func (d *Downtime) GetMessageOk() (string, bool) {
4554	if d == nil || d.Message == nil {
4555		return "", false
4556	}
4557	return *d.Message, true
4558}
4559
4560// HasMessage returns a boolean if a field has been set.
4561func (d *Downtime) HasMessage() bool {
4562	if d != nil && d.Message != nil {
4563		return true
4564	}
4565
4566	return false
4567}
4568
4569// SetMessage allocates a new d.Message and returns the pointer to it.
4570func (d *Downtime) SetMessage(v string) {
4571	d.Message = &v
4572}
4573
4574// GetMonitorId returns the MonitorId field if non-nil, zero value otherwise.
4575func (d *Downtime) GetMonitorId() int {
4576	if d == nil || d.MonitorId == nil {
4577		return 0
4578	}
4579	return *d.MonitorId
4580}
4581
4582// GetMonitorIdOk returns a tuple with the MonitorId field if it's non-nil, zero value otherwise
4583// and a boolean to check if the value has been set.
4584func (d *Downtime) GetMonitorIdOk() (int, bool) {
4585	if d == nil || d.MonitorId == nil {
4586		return 0, false
4587	}
4588	return *d.MonitorId, true
4589}
4590
4591// HasMonitorId returns a boolean if a field has been set.
4592func (d *Downtime) HasMonitorId() bool {
4593	if d != nil && d.MonitorId != nil {
4594		return true
4595	}
4596
4597	return false
4598}
4599
4600// SetMonitorId allocates a new d.MonitorId and returns the pointer to it.
4601func (d *Downtime) SetMonitorId(v int) {
4602	d.MonitorId = &v
4603}
4604
4605// GetParentId returns the ParentId field if non-nil, zero value otherwise.
4606func (d *Downtime) GetParentId() int {
4607	if d == nil || d.ParentId == nil {
4608		return 0
4609	}
4610	return *d.ParentId
4611}
4612
4613// GetParentIdOk returns a tuple with the ParentId field if it's non-nil, zero value otherwise
4614// and a boolean to check if the value has been set.
4615func (d *Downtime) GetParentIdOk() (int, bool) {
4616	if d == nil || d.ParentId == nil {
4617		return 0, false
4618	}
4619	return *d.ParentId, true
4620}
4621
4622// HasParentId returns a boolean if a field has been set.
4623func (d *Downtime) HasParentId() bool {
4624	if d != nil && d.ParentId != nil {
4625		return true
4626	}
4627
4628	return false
4629}
4630
4631// SetParentId allocates a new d.ParentId and returns the pointer to it.
4632func (d *Downtime) SetParentId(v int) {
4633	d.ParentId = &v
4634}
4635
4636// GetRecurrence returns the Recurrence field if non-nil, zero value otherwise.
4637func (d *Downtime) GetRecurrence() Recurrence {
4638	if d == nil || d.Recurrence == nil {
4639		return Recurrence{}
4640	}
4641	return *d.Recurrence
4642}
4643
4644// GetRecurrenceOk returns a tuple with the Recurrence field if it's non-nil, zero value otherwise
4645// and a boolean to check if the value has been set.
4646func (d *Downtime) GetRecurrenceOk() (Recurrence, bool) {
4647	if d == nil || d.Recurrence == nil {
4648		return Recurrence{}, false
4649	}
4650	return *d.Recurrence, true
4651}
4652
4653// HasRecurrence returns a boolean if a field has been set.
4654func (d *Downtime) HasRecurrence() bool {
4655	if d != nil && d.Recurrence != nil {
4656		return true
4657	}
4658
4659	return false
4660}
4661
4662// SetRecurrence allocates a new d.Recurrence and returns the pointer to it.
4663func (d *Downtime) SetRecurrence(v Recurrence) {
4664	d.Recurrence = &v
4665}
4666
4667// GetStart returns the Start field if non-nil, zero value otherwise.
4668func (d *Downtime) GetStart() int {
4669	if d == nil || d.Start == nil {
4670		return 0
4671	}
4672	return *d.Start
4673}
4674
4675// GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise
4676// and a boolean to check if the value has been set.
4677func (d *Downtime) GetStartOk() (int, bool) {
4678	if d == nil || d.Start == nil {
4679		return 0, false
4680	}
4681	return *d.Start, true
4682}
4683
4684// HasStart returns a boolean if a field has been set.
4685func (d *Downtime) HasStart() bool {
4686	if d != nil && d.Start != nil {
4687		return true
4688	}
4689
4690	return false
4691}
4692
4693// SetStart allocates a new d.Start and returns the pointer to it.
4694func (d *Downtime) SetStart(v int) {
4695	d.Start = &v
4696}
4697
4698// GetTimezone returns the Timezone field if non-nil, zero value otherwise.
4699func (d *Downtime) GetTimezone() string {
4700	if d == nil || d.Timezone == nil {
4701		return ""
4702	}
4703	return *d.Timezone
4704}
4705
4706// GetTimezoneOk returns a tuple with the Timezone field if it's non-nil, zero value otherwise
4707// and a boolean to check if the value has been set.
4708func (d *Downtime) GetTimezoneOk() (string, bool) {
4709	if d == nil || d.Timezone == nil {
4710		return "", false
4711	}
4712	return *d.Timezone, true
4713}
4714
4715// HasTimezone returns a boolean if a field has been set.
4716func (d *Downtime) HasTimezone() bool {
4717	if d != nil && d.Timezone != nil {
4718		return true
4719	}
4720
4721	return false
4722}
4723
4724// SetTimezone allocates a new d.Timezone and returns the pointer to it.
4725func (d *Downtime) SetTimezone(v string) {
4726	d.Timezone = &v
4727}
4728
4729// GetType returns the Type field if non-nil, zero value otherwise.
4730func (d *Downtime) GetType() int {
4731	if d == nil || d.Type == nil {
4732		return 0
4733	}
4734	return *d.Type
4735}
4736
4737// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
4738// and a boolean to check if the value has been set.
4739func (d *Downtime) GetTypeOk() (int, bool) {
4740	if d == nil || d.Type == nil {
4741		return 0, false
4742	}
4743	return *d.Type, true
4744}
4745
4746// HasType returns a boolean if a field has been set.
4747func (d *Downtime) HasType() bool {
4748	if d != nil && d.Type != nil {
4749		return true
4750	}
4751
4752	return false
4753}
4754
4755// SetType allocates a new d.Type and returns the pointer to it.
4756func (d *Downtime) SetType(v int) {
4757	d.Type = &v
4758}
4759
4760// GetUpdaterID returns the UpdaterID field if non-nil, zero value otherwise.
4761func (d *Downtime) GetUpdaterID() int {
4762	if d == nil || d.UpdaterID == nil {
4763		return 0
4764	}
4765	return *d.UpdaterID
4766}
4767
4768// GetUpdaterIDOk returns a tuple with the UpdaterID field if it's non-nil, zero value otherwise
4769// and a boolean to check if the value has been set.
4770func (d *Downtime) GetUpdaterIDOk() (int, bool) {
4771	if d == nil || d.UpdaterID == nil {
4772		return 0, false
4773	}
4774	return *d.UpdaterID, true
4775}
4776
4777// HasUpdaterID returns a boolean if a field has been set.
4778func (d *Downtime) HasUpdaterID() bool {
4779	if d != nil && d.UpdaterID != nil {
4780		return true
4781	}
4782
4783	return false
4784}
4785
4786// SetUpdaterID allocates a new d.UpdaterID and returns the pointer to it.
4787func (d *Downtime) SetUpdaterID(v int) {
4788	d.UpdaterID = &v
4789}
4790
4791// GetAggregation returns the Aggregation field if non-nil, zero value otherwise.
4792func (e *Event) GetAggregation() string {
4793	if e == nil || e.Aggregation == nil {
4794		return ""
4795	}
4796	return *e.Aggregation
4797}
4798
4799// GetAggregationOk returns a tuple with the Aggregation field if it's non-nil, zero value otherwise
4800// and a boolean to check if the value has been set.
4801func (e *Event) GetAggregationOk() (string, bool) {
4802	if e == nil || e.Aggregation == nil {
4803		return "", false
4804	}
4805	return *e.Aggregation, true
4806}
4807
4808// HasAggregation returns a boolean if a field has been set.
4809func (e *Event) HasAggregation() bool {
4810	if e != nil && e.Aggregation != nil {
4811		return true
4812	}
4813
4814	return false
4815}
4816
4817// SetAggregation allocates a new e.Aggregation and returns the pointer to it.
4818func (e *Event) SetAggregation(v string) {
4819	e.Aggregation = &v
4820}
4821
4822// GetAlertType returns the AlertType field if non-nil, zero value otherwise.
4823func (e *Event) GetAlertType() string {
4824	if e == nil || e.AlertType == nil {
4825		return ""
4826	}
4827	return *e.AlertType
4828}
4829
4830// GetAlertTypeOk returns a tuple with the AlertType field if it's non-nil, zero value otherwise
4831// and a boolean to check if the value has been set.
4832func (e *Event) GetAlertTypeOk() (string, bool) {
4833	if e == nil || e.AlertType == nil {
4834		return "", false
4835	}
4836	return *e.AlertType, true
4837}
4838
4839// HasAlertType returns a boolean if a field has been set.
4840func (e *Event) HasAlertType() bool {
4841	if e != nil && e.AlertType != nil {
4842		return true
4843	}
4844
4845	return false
4846}
4847
4848// SetAlertType allocates a new e.AlertType and returns the pointer to it.
4849func (e *Event) SetAlertType(v string) {
4850	e.AlertType = &v
4851}
4852
4853// GetEventType returns the EventType field if non-nil, zero value otherwise.
4854func (e *Event) GetEventType() string {
4855	if e == nil || e.EventType == nil {
4856		return ""
4857	}
4858	return *e.EventType
4859}
4860
4861// GetEventTypeOk returns a tuple with the EventType field if it's non-nil, zero value otherwise
4862// and a boolean to check if the value has been set.
4863func (e *Event) GetEventTypeOk() (string, bool) {
4864	if e == nil || e.EventType == nil {
4865		return "", false
4866	}
4867	return *e.EventType, true
4868}
4869
4870// HasEventType returns a boolean if a field has been set.
4871func (e *Event) HasEventType() bool {
4872	if e != nil && e.EventType != nil {
4873		return true
4874	}
4875
4876	return false
4877}
4878
4879// SetEventType allocates a new e.EventType and returns the pointer to it.
4880func (e *Event) SetEventType(v string) {
4881	e.EventType = &v
4882}
4883
4884// GetHost returns the Host field if non-nil, zero value otherwise.
4885func (e *Event) GetHost() string {
4886	if e == nil || e.Host == nil {
4887		return ""
4888	}
4889	return *e.Host
4890}
4891
4892// GetHostOk returns a tuple with the Host field if it's non-nil, zero value otherwise
4893// and a boolean to check if the value has been set.
4894func (e *Event) GetHostOk() (string, bool) {
4895	if e == nil || e.Host == nil {
4896		return "", false
4897	}
4898	return *e.Host, true
4899}
4900
4901// HasHost returns a boolean if a field has been set.
4902func (e *Event) HasHost() bool {
4903	if e != nil && e.Host != nil {
4904		return true
4905	}
4906
4907	return false
4908}
4909
4910// SetHost allocates a new e.Host and returns the pointer to it.
4911func (e *Event) SetHost(v string) {
4912	e.Host = &v
4913}
4914
4915// GetId returns the Id field if non-nil, zero value otherwise.
4916func (e *Event) GetId() int {
4917	if e == nil || e.Id == nil {
4918		return 0
4919	}
4920	return *e.Id
4921}
4922
4923// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
4924// and a boolean to check if the value has been set.
4925func (e *Event) GetIdOk() (int, bool) {
4926	if e == nil || e.Id == nil {
4927		return 0, false
4928	}
4929	return *e.Id, true
4930}
4931
4932// HasId returns a boolean if a field has been set.
4933func (e *Event) HasId() bool {
4934	if e != nil && e.Id != nil {
4935		return true
4936	}
4937
4938	return false
4939}
4940
4941// SetId allocates a new e.Id and returns the pointer to it.
4942func (e *Event) SetId(v int) {
4943	e.Id = &v
4944}
4945
4946// GetPriority returns the Priority field if non-nil, zero value otherwise.
4947func (e *Event) GetPriority() string {
4948	if e == nil || e.Priority == nil {
4949		return ""
4950	}
4951	return *e.Priority
4952}
4953
4954// GetPriorityOk returns a tuple with the Priority field if it's non-nil, zero value otherwise
4955// and a boolean to check if the value has been set.
4956func (e *Event) GetPriorityOk() (string, bool) {
4957	if e == nil || e.Priority == nil {
4958		return "", false
4959	}
4960	return *e.Priority, true
4961}
4962
4963// HasPriority returns a boolean if a field has been set.
4964func (e *Event) HasPriority() bool {
4965	if e != nil && e.Priority != nil {
4966		return true
4967	}
4968
4969	return false
4970}
4971
4972// SetPriority allocates a new e.Priority and returns the pointer to it.
4973func (e *Event) SetPriority(v string) {
4974	e.Priority = &v
4975}
4976
4977// GetResource returns the Resource field if non-nil, zero value otherwise.
4978func (e *Event) GetResource() string {
4979	if e == nil || e.Resource == nil {
4980		return ""
4981	}
4982	return *e.Resource
4983}
4984
4985// GetResourceOk returns a tuple with the Resource field if it's non-nil, zero value otherwise
4986// and a boolean to check if the value has been set.
4987func (e *Event) GetResourceOk() (string, bool) {
4988	if e == nil || e.Resource == nil {
4989		return "", false
4990	}
4991	return *e.Resource, true
4992}
4993
4994// HasResource returns a boolean if a field has been set.
4995func (e *Event) HasResource() bool {
4996	if e != nil && e.Resource != nil {
4997		return true
4998	}
4999
5000	return false
5001}
5002
5003// SetResource allocates a new e.Resource and returns the pointer to it.
5004func (e *Event) SetResource(v string) {
5005	e.Resource = &v
5006}
5007
5008// GetSourceType returns the SourceType field if non-nil, zero value otherwise.
5009func (e *Event) GetSourceType() string {
5010	if e == nil || e.SourceType == nil {
5011		return ""
5012	}
5013	return *e.SourceType
5014}
5015
5016// GetSourceTypeOk returns a tuple with the SourceType field if it's non-nil, zero value otherwise
5017// and a boolean to check if the value has been set.
5018func (e *Event) GetSourceTypeOk() (string, bool) {
5019	if e == nil || e.SourceType == nil {
5020		return "", false
5021	}
5022	return *e.SourceType, true
5023}
5024
5025// HasSourceType returns a boolean if a field has been set.
5026func (e *Event) HasSourceType() bool {
5027	if e != nil && e.SourceType != nil {
5028		return true
5029	}
5030
5031	return false
5032}
5033
5034// SetSourceType allocates a new e.SourceType and returns the pointer to it.
5035func (e *Event) SetSourceType(v string) {
5036	e.SourceType = &v
5037}
5038
5039// GetText returns the Text field if non-nil, zero value otherwise.
5040func (e *Event) GetText() string {
5041	if e == nil || e.Text == nil {
5042		return ""
5043	}
5044	return *e.Text
5045}
5046
5047// GetTextOk returns a tuple with the Text field if it's non-nil, zero value otherwise
5048// and a boolean to check if the value has been set.
5049func (e *Event) GetTextOk() (string, bool) {
5050	if e == nil || e.Text == nil {
5051		return "", false
5052	}
5053	return *e.Text, true
5054}
5055
5056// HasText returns a boolean if a field has been set.
5057func (e *Event) HasText() bool {
5058	if e != nil && e.Text != nil {
5059		return true
5060	}
5061
5062	return false
5063}
5064
5065// SetText allocates a new e.Text and returns the pointer to it.
5066func (e *Event) SetText(v string) {
5067	e.Text = &v
5068}
5069
5070// GetTime returns the Time field if non-nil, zero value otherwise.
5071func (e *Event) GetTime() int {
5072	if e == nil || e.Time == nil {
5073		return 0
5074	}
5075	return *e.Time
5076}
5077
5078// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
5079// and a boolean to check if the value has been set.
5080func (e *Event) GetTimeOk() (int, bool) {
5081	if e == nil || e.Time == nil {
5082		return 0, false
5083	}
5084	return *e.Time, true
5085}
5086
5087// HasTime returns a boolean if a field has been set.
5088func (e *Event) HasTime() bool {
5089	if e != nil && e.Time != nil {
5090		return true
5091	}
5092
5093	return false
5094}
5095
5096// SetTime allocates a new e.Time and returns the pointer to it.
5097func (e *Event) SetTime(v int) {
5098	e.Time = &v
5099}
5100
5101// GetTitle returns the Title field if non-nil, zero value otherwise.
5102func (e *Event) GetTitle() string {
5103	if e == nil || e.Title == nil {
5104		return ""
5105	}
5106	return *e.Title
5107}
5108
5109// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
5110// and a boolean to check if the value has been set.
5111func (e *Event) GetTitleOk() (string, bool) {
5112	if e == nil || e.Title == nil {
5113		return "", false
5114	}
5115	return *e.Title, true
5116}
5117
5118// HasTitle returns a boolean if a field has been set.
5119func (e *Event) HasTitle() bool {
5120	if e != nil && e.Title != nil {
5121		return true
5122	}
5123
5124	return false
5125}
5126
5127// SetTitle allocates a new e.Title and returns the pointer to it.
5128func (e *Event) SetTitle(v string) {
5129	e.Title = &v
5130}
5131
5132// GetUrl returns the Url field if non-nil, zero value otherwise.
5133func (e *Event) GetUrl() string {
5134	if e == nil || e.Url == nil {
5135		return ""
5136	}
5137	return *e.Url
5138}
5139
5140// GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
5141// and a boolean to check if the value has been set.
5142func (e *Event) GetUrlOk() (string, bool) {
5143	if e == nil || e.Url == nil {
5144		return "", false
5145	}
5146	return *e.Url, true
5147}
5148
5149// HasUrl returns a boolean if a field has been set.
5150func (e *Event) HasUrl() bool {
5151	if e != nil && e.Url != nil {
5152		return true
5153	}
5154
5155	return false
5156}
5157
5158// SetUrl allocates a new e.Url and returns the pointer to it.
5159func (e *Event) SetUrl(v string) {
5160	e.Url = &v
5161}
5162
5163// GetEventSize returns the EventSize field if non-nil, zero value otherwise.
5164func (e *EventStreamDefinition) GetEventSize() string {
5165	if e == nil || e.EventSize == nil {
5166		return ""
5167	}
5168	return *e.EventSize
5169}
5170
5171// GetEventSizeOk returns a tuple with the EventSize field if it's non-nil, zero value otherwise
5172// and a boolean to check if the value has been set.
5173func (e *EventStreamDefinition) GetEventSizeOk() (string, bool) {
5174	if e == nil || e.EventSize == nil {
5175		return "", false
5176	}
5177	return *e.EventSize, true
5178}
5179
5180// HasEventSize returns a boolean if a field has been set.
5181func (e *EventStreamDefinition) HasEventSize() bool {
5182	if e != nil && e.EventSize != nil {
5183		return true
5184	}
5185
5186	return false
5187}
5188
5189// SetEventSize allocates a new e.EventSize and returns the pointer to it.
5190func (e *EventStreamDefinition) SetEventSize(v string) {
5191	e.EventSize = &v
5192}
5193
5194// GetQuery returns the Query field if non-nil, zero value otherwise.
5195func (e *EventStreamDefinition) GetQuery() string {
5196	if e == nil || e.Query == nil {
5197		return ""
5198	}
5199	return *e.Query
5200}
5201
5202// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
5203// and a boolean to check if the value has been set.
5204func (e *EventStreamDefinition) GetQueryOk() (string, bool) {
5205	if e == nil || e.Query == nil {
5206		return "", false
5207	}
5208	return *e.Query, true
5209}
5210
5211// HasQuery returns a boolean if a field has been set.
5212func (e *EventStreamDefinition) HasQuery() bool {
5213	if e != nil && e.Query != nil {
5214		return true
5215	}
5216
5217	return false
5218}
5219
5220// SetQuery allocates a new e.Query and returns the pointer to it.
5221func (e *EventStreamDefinition) SetQuery(v string) {
5222	e.Query = &v
5223}
5224
5225// GetTime returns the Time field if non-nil, zero value otherwise.
5226func (e *EventStreamDefinition) GetTime() WidgetTime {
5227	if e == nil || e.Time == nil {
5228		return WidgetTime{}
5229	}
5230	return *e.Time
5231}
5232
5233// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
5234// and a boolean to check if the value has been set.
5235func (e *EventStreamDefinition) GetTimeOk() (WidgetTime, bool) {
5236	if e == nil || e.Time == nil {
5237		return WidgetTime{}, false
5238	}
5239	return *e.Time, true
5240}
5241
5242// HasTime returns a boolean if a field has been set.
5243func (e *EventStreamDefinition) HasTime() bool {
5244	if e != nil && e.Time != nil {
5245		return true
5246	}
5247
5248	return false
5249}
5250
5251// SetTime allocates a new e.Time and returns the pointer to it.
5252func (e *EventStreamDefinition) SetTime(v WidgetTime) {
5253	e.Time = &v
5254}
5255
5256// GetTitle returns the Title field if non-nil, zero value otherwise.
5257func (e *EventStreamDefinition) GetTitle() string {
5258	if e == nil || e.Title == nil {
5259		return ""
5260	}
5261	return *e.Title
5262}
5263
5264// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
5265// and a boolean to check if the value has been set.
5266func (e *EventStreamDefinition) GetTitleOk() (string, bool) {
5267	if e == nil || e.Title == nil {
5268		return "", false
5269	}
5270	return *e.Title, true
5271}
5272
5273// HasTitle returns a boolean if a field has been set.
5274func (e *EventStreamDefinition) HasTitle() bool {
5275	if e != nil && e.Title != nil {
5276		return true
5277	}
5278
5279	return false
5280}
5281
5282// SetTitle allocates a new e.Title and returns the pointer to it.
5283func (e *EventStreamDefinition) SetTitle(v string) {
5284	e.Title = &v
5285}
5286
5287// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
5288func (e *EventStreamDefinition) GetTitleAlign() string {
5289	if e == nil || e.TitleAlign == nil {
5290		return ""
5291	}
5292	return *e.TitleAlign
5293}
5294
5295// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
5296// and a boolean to check if the value has been set.
5297func (e *EventStreamDefinition) GetTitleAlignOk() (string, bool) {
5298	if e == nil || e.TitleAlign == nil {
5299		return "", false
5300	}
5301	return *e.TitleAlign, true
5302}
5303
5304// HasTitleAlign returns a boolean if a field has been set.
5305func (e *EventStreamDefinition) HasTitleAlign() bool {
5306	if e != nil && e.TitleAlign != nil {
5307		return true
5308	}
5309
5310	return false
5311}
5312
5313// SetTitleAlign allocates a new e.TitleAlign and returns the pointer to it.
5314func (e *EventStreamDefinition) SetTitleAlign(v string) {
5315	e.TitleAlign = &v
5316}
5317
5318// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
5319func (e *EventStreamDefinition) GetTitleSize() string {
5320	if e == nil || e.TitleSize == nil {
5321		return ""
5322	}
5323	return *e.TitleSize
5324}
5325
5326// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
5327// and a boolean to check if the value has been set.
5328func (e *EventStreamDefinition) GetTitleSizeOk() (string, bool) {
5329	if e == nil || e.TitleSize == nil {
5330		return "", false
5331	}
5332	return *e.TitleSize, true
5333}
5334
5335// HasTitleSize returns a boolean if a field has been set.
5336func (e *EventStreamDefinition) HasTitleSize() bool {
5337	if e != nil && e.TitleSize != nil {
5338		return true
5339	}
5340
5341	return false
5342}
5343
5344// SetTitleSize allocates a new e.TitleSize and returns the pointer to it.
5345func (e *EventStreamDefinition) SetTitleSize(v string) {
5346	e.TitleSize = &v
5347}
5348
5349// GetType returns the Type field if non-nil, zero value otherwise.
5350func (e *EventStreamDefinition) GetType() string {
5351	if e == nil || e.Type == nil {
5352		return ""
5353	}
5354	return *e.Type
5355}
5356
5357// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
5358// and a boolean to check if the value has been set.
5359func (e *EventStreamDefinition) GetTypeOk() (string, bool) {
5360	if e == nil || e.Type == nil {
5361		return "", false
5362	}
5363	return *e.Type, true
5364}
5365
5366// HasType returns a boolean if a field has been set.
5367func (e *EventStreamDefinition) HasType() bool {
5368	if e != nil && e.Type != nil {
5369		return true
5370	}
5371
5372	return false
5373}
5374
5375// SetType allocates a new e.Type and returns the pointer to it.
5376func (e *EventStreamDefinition) SetType(v string) {
5377	e.Type = &v
5378}
5379
5380// GetQuery returns the Query field if non-nil, zero value otherwise.
5381func (e *EventTimelineDefinition) GetQuery() string {
5382	if e == nil || e.Query == nil {
5383		return ""
5384	}
5385	return *e.Query
5386}
5387
5388// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
5389// and a boolean to check if the value has been set.
5390func (e *EventTimelineDefinition) GetQueryOk() (string, bool) {
5391	if e == nil || e.Query == nil {
5392		return "", false
5393	}
5394	return *e.Query, true
5395}
5396
5397// HasQuery returns a boolean if a field has been set.
5398func (e *EventTimelineDefinition) HasQuery() bool {
5399	if e != nil && e.Query != nil {
5400		return true
5401	}
5402
5403	return false
5404}
5405
5406// SetQuery allocates a new e.Query and returns the pointer to it.
5407func (e *EventTimelineDefinition) SetQuery(v string) {
5408	e.Query = &v
5409}
5410
5411// GetTime returns the Time field if non-nil, zero value otherwise.
5412func (e *EventTimelineDefinition) GetTime() WidgetTime {
5413	if e == nil || e.Time == nil {
5414		return WidgetTime{}
5415	}
5416	return *e.Time
5417}
5418
5419// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
5420// and a boolean to check if the value has been set.
5421func (e *EventTimelineDefinition) GetTimeOk() (WidgetTime, bool) {
5422	if e == nil || e.Time == nil {
5423		return WidgetTime{}, false
5424	}
5425	return *e.Time, true
5426}
5427
5428// HasTime returns a boolean if a field has been set.
5429func (e *EventTimelineDefinition) HasTime() bool {
5430	if e != nil && e.Time != nil {
5431		return true
5432	}
5433
5434	return false
5435}
5436
5437// SetTime allocates a new e.Time and returns the pointer to it.
5438func (e *EventTimelineDefinition) SetTime(v WidgetTime) {
5439	e.Time = &v
5440}
5441
5442// GetTitle returns the Title field if non-nil, zero value otherwise.
5443func (e *EventTimelineDefinition) GetTitle() string {
5444	if e == nil || e.Title == nil {
5445		return ""
5446	}
5447	return *e.Title
5448}
5449
5450// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
5451// and a boolean to check if the value has been set.
5452func (e *EventTimelineDefinition) GetTitleOk() (string, bool) {
5453	if e == nil || e.Title == nil {
5454		return "", false
5455	}
5456	return *e.Title, true
5457}
5458
5459// HasTitle returns a boolean if a field has been set.
5460func (e *EventTimelineDefinition) HasTitle() bool {
5461	if e != nil && e.Title != nil {
5462		return true
5463	}
5464
5465	return false
5466}
5467
5468// SetTitle allocates a new e.Title and returns the pointer to it.
5469func (e *EventTimelineDefinition) SetTitle(v string) {
5470	e.Title = &v
5471}
5472
5473// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
5474func (e *EventTimelineDefinition) GetTitleAlign() string {
5475	if e == nil || e.TitleAlign == nil {
5476		return ""
5477	}
5478	return *e.TitleAlign
5479}
5480
5481// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
5482// and a boolean to check if the value has been set.
5483func (e *EventTimelineDefinition) GetTitleAlignOk() (string, bool) {
5484	if e == nil || e.TitleAlign == nil {
5485		return "", false
5486	}
5487	return *e.TitleAlign, true
5488}
5489
5490// HasTitleAlign returns a boolean if a field has been set.
5491func (e *EventTimelineDefinition) HasTitleAlign() bool {
5492	if e != nil && e.TitleAlign != nil {
5493		return true
5494	}
5495
5496	return false
5497}
5498
5499// SetTitleAlign allocates a new e.TitleAlign and returns the pointer to it.
5500func (e *EventTimelineDefinition) SetTitleAlign(v string) {
5501	e.TitleAlign = &v
5502}
5503
5504// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
5505func (e *EventTimelineDefinition) GetTitleSize() string {
5506	if e == nil || e.TitleSize == nil {
5507		return ""
5508	}
5509	return *e.TitleSize
5510}
5511
5512// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
5513// and a boolean to check if the value has been set.
5514func (e *EventTimelineDefinition) GetTitleSizeOk() (string, bool) {
5515	if e == nil || e.TitleSize == nil {
5516		return "", false
5517	}
5518	return *e.TitleSize, true
5519}
5520
5521// HasTitleSize returns a boolean if a field has been set.
5522func (e *EventTimelineDefinition) HasTitleSize() bool {
5523	if e != nil && e.TitleSize != nil {
5524		return true
5525	}
5526
5527	return false
5528}
5529
5530// SetTitleSize allocates a new e.TitleSize and returns the pointer to it.
5531func (e *EventTimelineDefinition) SetTitleSize(v string) {
5532	e.TitleSize = &v
5533}
5534
5535// GetType returns the Type field if non-nil, zero value otherwise.
5536func (e *EventTimelineDefinition) GetType() string {
5537	if e == nil || e.Type == nil {
5538		return ""
5539	}
5540	return *e.Type
5541}
5542
5543// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
5544// and a boolean to check if the value has been set.
5545func (e *EventTimelineDefinition) GetTypeOk() (string, bool) {
5546	if e == nil || e.Type == nil {
5547		return "", false
5548	}
5549	return *e.Type, true
5550}
5551
5552// HasType returns a boolean if a field has been set.
5553func (e *EventTimelineDefinition) HasType() bool {
5554	if e != nil && e.Type != nil {
5555		return true
5556	}
5557
5558	return false
5559}
5560
5561// SetType allocates a new e.Type and returns the pointer to it.
5562func (e *EventTimelineDefinition) SetType(v string) {
5563	e.Type = &v
5564}
5565
5566// GetColor returns the Color field if non-nil, zero value otherwise.
5567func (f *FreeTextDefinition) GetColor() string {
5568	if f == nil || f.Color == nil {
5569		return ""
5570	}
5571	return *f.Color
5572}
5573
5574// GetColorOk returns a tuple with the Color field if it's non-nil, zero value otherwise
5575// and a boolean to check if the value has been set.
5576func (f *FreeTextDefinition) GetColorOk() (string, bool) {
5577	if f == nil || f.Color == nil {
5578		return "", false
5579	}
5580	return *f.Color, true
5581}
5582
5583// HasColor returns a boolean if a field has been set.
5584func (f *FreeTextDefinition) HasColor() bool {
5585	if f != nil && f.Color != nil {
5586		return true
5587	}
5588
5589	return false
5590}
5591
5592// SetColor allocates a new f.Color and returns the pointer to it.
5593func (f *FreeTextDefinition) SetColor(v string) {
5594	f.Color = &v
5595}
5596
5597// GetFontSize returns the FontSize field if non-nil, zero value otherwise.
5598func (f *FreeTextDefinition) GetFontSize() string {
5599	if f == nil || f.FontSize == nil {
5600		return ""
5601	}
5602	return *f.FontSize
5603}
5604
5605// GetFontSizeOk returns a tuple with the FontSize field if it's non-nil, zero value otherwise
5606// and a boolean to check if the value has been set.
5607func (f *FreeTextDefinition) GetFontSizeOk() (string, bool) {
5608	if f == nil || f.FontSize == nil {
5609		return "", false
5610	}
5611	return *f.FontSize, true
5612}
5613
5614// HasFontSize returns a boolean if a field has been set.
5615func (f *FreeTextDefinition) HasFontSize() bool {
5616	if f != nil && f.FontSize != nil {
5617		return true
5618	}
5619
5620	return false
5621}
5622
5623// SetFontSize allocates a new f.FontSize and returns the pointer to it.
5624func (f *FreeTextDefinition) SetFontSize(v string) {
5625	f.FontSize = &v
5626}
5627
5628// GetText returns the Text field if non-nil, zero value otherwise.
5629func (f *FreeTextDefinition) GetText() string {
5630	if f == nil || f.Text == nil {
5631		return ""
5632	}
5633	return *f.Text
5634}
5635
5636// GetTextOk returns a tuple with the Text field if it's non-nil, zero value otherwise
5637// and a boolean to check if the value has been set.
5638func (f *FreeTextDefinition) GetTextOk() (string, bool) {
5639	if f == nil || f.Text == nil {
5640		return "", false
5641	}
5642	return *f.Text, true
5643}
5644
5645// HasText returns a boolean if a field has been set.
5646func (f *FreeTextDefinition) HasText() bool {
5647	if f != nil && f.Text != nil {
5648		return true
5649	}
5650
5651	return false
5652}
5653
5654// SetText allocates a new f.Text and returns the pointer to it.
5655func (f *FreeTextDefinition) SetText(v string) {
5656	f.Text = &v
5657}
5658
5659// GetTextAlign returns the TextAlign field if non-nil, zero value otherwise.
5660func (f *FreeTextDefinition) GetTextAlign() string {
5661	if f == nil || f.TextAlign == nil {
5662		return ""
5663	}
5664	return *f.TextAlign
5665}
5666
5667// GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise
5668// and a boolean to check if the value has been set.
5669func (f *FreeTextDefinition) GetTextAlignOk() (string, bool) {
5670	if f == nil || f.TextAlign == nil {
5671		return "", false
5672	}
5673	return *f.TextAlign, true
5674}
5675
5676// HasTextAlign returns a boolean if a field has been set.
5677func (f *FreeTextDefinition) HasTextAlign() bool {
5678	if f != nil && f.TextAlign != nil {
5679		return true
5680	}
5681
5682	return false
5683}
5684
5685// SetTextAlign allocates a new f.TextAlign and returns the pointer to it.
5686func (f *FreeTextDefinition) SetTextAlign(v string) {
5687	f.TextAlign = &v
5688}
5689
5690// GetType returns the Type field if non-nil, zero value otherwise.
5691func (f *FreeTextDefinition) GetType() string {
5692	if f == nil || f.Type == nil {
5693		return ""
5694	}
5695	return *f.Type
5696}
5697
5698// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
5699// and a boolean to check if the value has been set.
5700func (f *FreeTextDefinition) GetTypeOk() (string, bool) {
5701	if f == nil || f.Type == nil {
5702		return "", false
5703	}
5704	return *f.Type, true
5705}
5706
5707// HasType returns a boolean if a field has been set.
5708func (f *FreeTextDefinition) HasType() bool {
5709	if f != nil && f.Type != nil {
5710		return true
5711	}
5712
5713	return false
5714}
5715
5716// SetType allocates a new f.Type and returns the pointer to it.
5717func (f *FreeTextDefinition) SetType(v string) {
5718	f.Type = &v
5719}
5720
5721// GetDefinition returns the Definition field if non-nil, zero value otherwise.
5722func (g *Graph) GetDefinition() GraphDefinition {
5723	if g == nil || g.Definition == nil {
5724		return GraphDefinition{}
5725	}
5726	return *g.Definition
5727}
5728
5729// GetDefinitionOk returns a tuple with the Definition field if it's non-nil, zero value otherwise
5730// and a boolean to check if the value has been set.
5731func (g *Graph) GetDefinitionOk() (GraphDefinition, bool) {
5732	if g == nil || g.Definition == nil {
5733		return GraphDefinition{}, false
5734	}
5735	return *g.Definition, true
5736}
5737
5738// HasDefinition returns a boolean if a field has been set.
5739func (g *Graph) HasDefinition() bool {
5740	if g != nil && g.Definition != nil {
5741		return true
5742	}
5743
5744	return false
5745}
5746
5747// SetDefinition allocates a new g.Definition and returns the pointer to it.
5748func (g *Graph) SetDefinition(v GraphDefinition) {
5749	g.Definition = &v
5750}
5751
5752// GetTitle returns the Title field if non-nil, zero value otherwise.
5753func (g *Graph) GetTitle() string {
5754	if g == nil || g.Title == nil {
5755		return ""
5756	}
5757	return *g.Title
5758}
5759
5760// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
5761// and a boolean to check if the value has been set.
5762func (g *Graph) GetTitleOk() (string, bool) {
5763	if g == nil || g.Title == nil {
5764		return "", false
5765	}
5766	return *g.Title, true
5767}
5768
5769// HasTitle returns a boolean if a field has been set.
5770func (g *Graph) HasTitle() bool {
5771	if g != nil && g.Title != nil {
5772		return true
5773	}
5774
5775	return false
5776}
5777
5778// SetTitle allocates a new g.Title and returns the pointer to it.
5779func (g *Graph) SetTitle(v string) {
5780	g.Title = &v
5781}
5782
5783// GetAutoscale returns the Autoscale field if non-nil, zero value otherwise.
5784func (g *GraphDefinition) GetAutoscale() bool {
5785	if g == nil || g.Autoscale == nil {
5786		return false
5787	}
5788	return *g.Autoscale
5789}
5790
5791// GetAutoscaleOk returns a tuple with the Autoscale field if it's non-nil, zero value otherwise
5792// and a boolean to check if the value has been set.
5793func (g *GraphDefinition) GetAutoscaleOk() (bool, bool) {
5794	if g == nil || g.Autoscale == nil {
5795		return false, false
5796	}
5797	return *g.Autoscale, true
5798}
5799
5800// HasAutoscale returns a boolean if a field has been set.
5801func (g *GraphDefinition) HasAutoscale() bool {
5802	if g != nil && g.Autoscale != nil {
5803		return true
5804	}
5805
5806	return false
5807}
5808
5809// SetAutoscale allocates a new g.Autoscale and returns the pointer to it.
5810func (g *GraphDefinition) SetAutoscale(v bool) {
5811	g.Autoscale = &v
5812}
5813
5814// GetCustomUnit returns the CustomUnit field if non-nil, zero value otherwise.
5815func (g *GraphDefinition) GetCustomUnit() string {
5816	if g == nil || g.CustomUnit == nil {
5817		return ""
5818	}
5819	return *g.CustomUnit
5820}
5821
5822// GetCustomUnitOk returns a tuple with the CustomUnit field if it's non-nil, zero value otherwise
5823// and a boolean to check if the value has been set.
5824func (g *GraphDefinition) GetCustomUnitOk() (string, bool) {
5825	if g == nil || g.CustomUnit == nil {
5826		return "", false
5827	}
5828	return *g.CustomUnit, true
5829}
5830
5831// HasCustomUnit returns a boolean if a field has been set.
5832func (g *GraphDefinition) HasCustomUnit() bool {
5833	if g != nil && g.CustomUnit != nil {
5834		return true
5835	}
5836
5837	return false
5838}
5839
5840// SetCustomUnit allocates a new g.CustomUnit and returns the pointer to it.
5841func (g *GraphDefinition) SetCustomUnit(v string) {
5842	g.CustomUnit = &v
5843}
5844
5845// GetIncludeNoMetricHosts returns the IncludeNoMetricHosts field if non-nil, zero value otherwise.
5846func (g *GraphDefinition) GetIncludeNoMetricHosts() bool {
5847	if g == nil || g.IncludeNoMetricHosts == nil {
5848		return false
5849	}
5850	return *g.IncludeNoMetricHosts
5851}
5852
5853// GetIncludeNoMetricHostsOk returns a tuple with the IncludeNoMetricHosts field if it's non-nil, zero value otherwise
5854// and a boolean to check if the value has been set.
5855func (g *GraphDefinition) GetIncludeNoMetricHostsOk() (bool, bool) {
5856	if g == nil || g.IncludeNoMetricHosts == nil {
5857		return false, false
5858	}
5859	return *g.IncludeNoMetricHosts, true
5860}
5861
5862// HasIncludeNoMetricHosts returns a boolean if a field has been set.
5863func (g *GraphDefinition) HasIncludeNoMetricHosts() bool {
5864	if g != nil && g.IncludeNoMetricHosts != nil {
5865		return true
5866	}
5867
5868	return false
5869}
5870
5871// SetIncludeNoMetricHosts allocates a new g.IncludeNoMetricHosts and returns the pointer to it.
5872func (g *GraphDefinition) SetIncludeNoMetricHosts(v bool) {
5873	g.IncludeNoMetricHosts = &v
5874}
5875
5876// GetIncludeUngroupedHosts returns the IncludeUngroupedHosts field if non-nil, zero value otherwise.
5877func (g *GraphDefinition) GetIncludeUngroupedHosts() bool {
5878	if g == nil || g.IncludeUngroupedHosts == nil {
5879		return false
5880	}
5881	return *g.IncludeUngroupedHosts
5882}
5883
5884// GetIncludeUngroupedHostsOk returns a tuple with the IncludeUngroupedHosts field if it's non-nil, zero value otherwise
5885// and a boolean to check if the value has been set.
5886func (g *GraphDefinition) GetIncludeUngroupedHostsOk() (bool, bool) {
5887	if g == nil || g.IncludeUngroupedHosts == nil {
5888		return false, false
5889	}
5890	return *g.IncludeUngroupedHosts, true
5891}
5892
5893// HasIncludeUngroupedHosts returns a boolean if a field has been set.
5894func (g *GraphDefinition) HasIncludeUngroupedHosts() bool {
5895	if g != nil && g.IncludeUngroupedHosts != nil {
5896		return true
5897	}
5898
5899	return false
5900}
5901
5902// SetIncludeUngroupedHosts allocates a new g.IncludeUngroupedHosts and returns the pointer to it.
5903func (g *GraphDefinition) SetIncludeUngroupedHosts(v bool) {
5904	g.IncludeUngroupedHosts = &v
5905}
5906
5907// GetNodeType returns the NodeType field if non-nil, zero value otherwise.
5908func (g *GraphDefinition) GetNodeType() string {
5909	if g == nil || g.NodeType == nil {
5910		return ""
5911	}
5912	return *g.NodeType
5913}
5914
5915// GetNodeTypeOk returns a tuple with the NodeType field if it's non-nil, zero value otherwise
5916// and a boolean to check if the value has been set.
5917func (g *GraphDefinition) GetNodeTypeOk() (string, bool) {
5918	if g == nil || g.NodeType == nil {
5919		return "", false
5920	}
5921	return *g.NodeType, true
5922}
5923
5924// HasNodeType returns a boolean if a field has been set.
5925func (g *GraphDefinition) HasNodeType() bool {
5926	if g != nil && g.NodeType != nil {
5927		return true
5928	}
5929
5930	return false
5931}
5932
5933// SetNodeType allocates a new g.NodeType and returns the pointer to it.
5934func (g *GraphDefinition) SetNodeType(v string) {
5935	g.NodeType = &v
5936}
5937
5938// GetPrecision returns the Precision field if non-nil, zero value otherwise.
5939func (g *GraphDefinition) GetPrecision() PrecisionT {
5940	if g == nil || g.Precision == nil {
5941		return ""
5942	}
5943	return *g.Precision
5944}
5945
5946// GetPrecisionOk returns a tuple with the Precision field if it's non-nil, zero value otherwise
5947// and a boolean to check if the value has been set.
5948func (g *GraphDefinition) GetPrecisionOk() (PrecisionT, bool) {
5949	if g == nil || g.Precision == nil {
5950		return "", false
5951	}
5952	return *g.Precision, true
5953}
5954
5955// HasPrecision returns a boolean if a field has been set.
5956func (g *GraphDefinition) HasPrecision() bool {
5957	if g != nil && g.Precision != nil {
5958		return true
5959	}
5960
5961	return false
5962}
5963
5964// SetPrecision allocates a new g.Precision and returns the pointer to it.
5965func (g *GraphDefinition) SetPrecision(v PrecisionT) {
5966	g.Precision = &v
5967}
5968
5969// GetStyle returns the Style field if non-nil, zero value otherwise.
5970func (g *GraphDefinition) GetStyle() Style {
5971	if g == nil || g.Style == nil {
5972		return Style{}
5973	}
5974	return *g.Style
5975}
5976
5977// GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise
5978// and a boolean to check if the value has been set.
5979func (g *GraphDefinition) GetStyleOk() (Style, bool) {
5980	if g == nil || g.Style == nil {
5981		return Style{}, false
5982	}
5983	return *g.Style, true
5984}
5985
5986// HasStyle returns a boolean if a field has been set.
5987func (g *GraphDefinition) HasStyle() bool {
5988	if g != nil && g.Style != nil {
5989		return true
5990	}
5991
5992	return false
5993}
5994
5995// SetStyle allocates a new g.Style and returns the pointer to it.
5996func (g *GraphDefinition) SetStyle(v Style) {
5997	g.Style = &v
5998}
5999
6000// GetTextAlign returns the TextAlign field if non-nil, zero value otherwise.
6001func (g *GraphDefinition) GetTextAlign() string {
6002	if g == nil || g.TextAlign == nil {
6003		return ""
6004	}
6005	return *g.TextAlign
6006}
6007
6008// GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise
6009// and a boolean to check if the value has been set.
6010func (g *GraphDefinition) GetTextAlignOk() (string, bool) {
6011	if g == nil || g.TextAlign == nil {
6012		return "", false
6013	}
6014	return *g.TextAlign, true
6015}
6016
6017// HasTextAlign returns a boolean if a field has been set.
6018func (g *GraphDefinition) HasTextAlign() bool {
6019	if g != nil && g.TextAlign != nil {
6020		return true
6021	}
6022
6023	return false
6024}
6025
6026// SetTextAlign allocates a new g.TextAlign and returns the pointer to it.
6027func (g *GraphDefinition) SetTextAlign(v string) {
6028	g.TextAlign = &v
6029}
6030
6031// GetViz returns the Viz field if non-nil, zero value otherwise.
6032func (g *GraphDefinition) GetViz() string {
6033	if g == nil || g.Viz == nil {
6034		return ""
6035	}
6036	return *g.Viz
6037}
6038
6039// GetVizOk returns a tuple with the Viz field if it's non-nil, zero value otherwise
6040// and a boolean to check if the value has been set.
6041func (g *GraphDefinition) GetVizOk() (string, bool) {
6042	if g == nil || g.Viz == nil {
6043		return "", false
6044	}
6045	return *g.Viz, true
6046}
6047
6048// HasViz returns a boolean if a field has been set.
6049func (g *GraphDefinition) HasViz() bool {
6050	if g != nil && g.Viz != nil {
6051		return true
6052	}
6053
6054	return false
6055}
6056
6057// SetViz allocates a new g.Viz and returns the pointer to it.
6058func (g *GraphDefinition) SetViz(v string) {
6059	g.Viz = &v
6060}
6061
6062// GetLabel returns the Label field if non-nil, zero value otherwise.
6063func (g *GraphDefinitionMarker) GetLabel() string {
6064	if g == nil || g.Label == nil {
6065		return ""
6066	}
6067	return *g.Label
6068}
6069
6070// GetLabelOk returns a tuple with the Label field if it's non-nil, zero value otherwise
6071// and a boolean to check if the value has been set.
6072func (g *GraphDefinitionMarker) GetLabelOk() (string, bool) {
6073	if g == nil || g.Label == nil {
6074		return "", false
6075	}
6076	return *g.Label, true
6077}
6078
6079// HasLabel returns a boolean if a field has been set.
6080func (g *GraphDefinitionMarker) HasLabel() bool {
6081	if g != nil && g.Label != nil {
6082		return true
6083	}
6084
6085	return false
6086}
6087
6088// SetLabel allocates a new g.Label and returns the pointer to it.
6089func (g *GraphDefinitionMarker) SetLabel(v string) {
6090	g.Label = &v
6091}
6092
6093// GetMax returns the Max field if non-nil, zero value otherwise.
6094func (g *GraphDefinitionMarker) GetMax() json.Number {
6095	if g == nil || g.Max == nil {
6096		return ""
6097	}
6098	return *g.Max
6099}
6100
6101// GetMaxOk returns a tuple with the Max field if it's non-nil, zero value otherwise
6102// and a boolean to check if the value has been set.
6103func (g *GraphDefinitionMarker) GetMaxOk() (json.Number, bool) {
6104	if g == nil || g.Max == nil {
6105		return "", false
6106	}
6107	return *g.Max, true
6108}
6109
6110// HasMax returns a boolean if a field has been set.
6111func (g *GraphDefinitionMarker) HasMax() bool {
6112	if g != nil && g.Max != nil {
6113		return true
6114	}
6115
6116	return false
6117}
6118
6119// SetMax allocates a new g.Max and returns the pointer to it.
6120func (g *GraphDefinitionMarker) SetMax(v json.Number) {
6121	g.Max = &v
6122}
6123
6124// GetMin returns the Min field if non-nil, zero value otherwise.
6125func (g *GraphDefinitionMarker) GetMin() json.Number {
6126	if g == nil || g.Min == nil {
6127		return ""
6128	}
6129	return *g.Min
6130}
6131
6132// GetMinOk returns a tuple with the Min field if it's non-nil, zero value otherwise
6133// and a boolean to check if the value has been set.
6134func (g *GraphDefinitionMarker) GetMinOk() (json.Number, bool) {
6135	if g == nil || g.Min == nil {
6136		return "", false
6137	}
6138	return *g.Min, true
6139}
6140
6141// HasMin returns a boolean if a field has been set.
6142func (g *GraphDefinitionMarker) HasMin() bool {
6143	if g != nil && g.Min != nil {
6144		return true
6145	}
6146
6147	return false
6148}
6149
6150// SetMin allocates a new g.Min and returns the pointer to it.
6151func (g *GraphDefinitionMarker) SetMin(v json.Number) {
6152	g.Min = &v
6153}
6154
6155// GetType returns the Type field if non-nil, zero value otherwise.
6156func (g *GraphDefinitionMarker) GetType() string {
6157	if g == nil || g.Type == nil {
6158		return ""
6159	}
6160	return *g.Type
6161}
6162
6163// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
6164// and a boolean to check if the value has been set.
6165func (g *GraphDefinitionMarker) GetTypeOk() (string, bool) {
6166	if g == nil || g.Type == nil {
6167		return "", false
6168	}
6169	return *g.Type, true
6170}
6171
6172// HasType returns a boolean if a field has been set.
6173func (g *GraphDefinitionMarker) HasType() bool {
6174	if g != nil && g.Type != nil {
6175		return true
6176	}
6177
6178	return false
6179}
6180
6181// SetType allocates a new g.Type and returns the pointer to it.
6182func (g *GraphDefinitionMarker) SetType(v string) {
6183	g.Type = &v
6184}
6185
6186// GetVal returns the Val field if non-nil, zero value otherwise.
6187func (g *GraphDefinitionMarker) GetVal() json.Number {
6188	if g == nil || g.Val == nil {
6189		return ""
6190	}
6191	return *g.Val
6192}
6193
6194// GetValOk returns a tuple with the Val field if it's non-nil, zero value otherwise
6195// and a boolean to check if the value has been set.
6196func (g *GraphDefinitionMarker) GetValOk() (json.Number, bool) {
6197	if g == nil || g.Val == nil {
6198		return "", false
6199	}
6200	return *g.Val, true
6201}
6202
6203// HasVal returns a boolean if a field has been set.
6204func (g *GraphDefinitionMarker) HasVal() bool {
6205	if g != nil && g.Val != nil {
6206		return true
6207	}
6208
6209	return false
6210}
6211
6212// SetVal allocates a new g.Val and returns the pointer to it.
6213func (g *GraphDefinitionMarker) SetVal(v json.Number) {
6214	g.Val = &v
6215}
6216
6217// GetValue returns the Value field if non-nil, zero value otherwise.
6218func (g *GraphDefinitionMarker) GetValue() string {
6219	if g == nil || g.Value == nil {
6220		return ""
6221	}
6222	return *g.Value
6223}
6224
6225// GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise
6226// and a boolean to check if the value has been set.
6227func (g *GraphDefinitionMarker) GetValueOk() (string, bool) {
6228	if g == nil || g.Value == nil {
6229		return "", false
6230	}
6231	return *g.Value, true
6232}
6233
6234// HasValue returns a boolean if a field has been set.
6235func (g *GraphDefinitionMarker) HasValue() bool {
6236	if g != nil && g.Value != nil {
6237		return true
6238	}
6239
6240	return false
6241}
6242
6243// SetValue allocates a new g.Value and returns the pointer to it.
6244func (g *GraphDefinitionMarker) SetValue(v string) {
6245	g.Value = &v
6246}
6247
6248// GetAggregator returns the Aggregator field if non-nil, zero value otherwise.
6249func (g *GraphDefinitionRequest) GetAggregator() string {
6250	if g == nil || g.Aggregator == nil {
6251		return ""
6252	}
6253	return *g.Aggregator
6254}
6255
6256// GetAggregatorOk returns a tuple with the Aggregator field if it's non-nil, zero value otherwise
6257// and a boolean to check if the value has been set.
6258func (g *GraphDefinitionRequest) GetAggregatorOk() (string, bool) {
6259	if g == nil || g.Aggregator == nil {
6260		return "", false
6261	}
6262	return *g.Aggregator, true
6263}
6264
6265// HasAggregator returns a boolean if a field has been set.
6266func (g *GraphDefinitionRequest) HasAggregator() bool {
6267	if g != nil && g.Aggregator != nil {
6268		return true
6269	}
6270
6271	return false
6272}
6273
6274// SetAggregator allocates a new g.Aggregator and returns the pointer to it.
6275func (g *GraphDefinitionRequest) SetAggregator(v string) {
6276	g.Aggregator = &v
6277}
6278
6279// GetChangeType returns the ChangeType field if non-nil, zero value otherwise.
6280func (g *GraphDefinitionRequest) GetChangeType() string {
6281	if g == nil || g.ChangeType == nil {
6282		return ""
6283	}
6284	return *g.ChangeType
6285}
6286
6287// GetChangeTypeOk returns a tuple with the ChangeType field if it's non-nil, zero value otherwise
6288// and a boolean to check if the value has been set.
6289func (g *GraphDefinitionRequest) GetChangeTypeOk() (string, bool) {
6290	if g == nil || g.ChangeType == nil {
6291		return "", false
6292	}
6293	return *g.ChangeType, true
6294}
6295
6296// HasChangeType returns a boolean if a field has been set.
6297func (g *GraphDefinitionRequest) HasChangeType() bool {
6298	if g != nil && g.ChangeType != nil {
6299		return true
6300	}
6301
6302	return false
6303}
6304
6305// SetChangeType allocates a new g.ChangeType and returns the pointer to it.
6306func (g *GraphDefinitionRequest) SetChangeType(v string) {
6307	g.ChangeType = &v
6308}
6309
6310// GetCompareTo returns the CompareTo field if non-nil, zero value otherwise.
6311func (g *GraphDefinitionRequest) GetCompareTo() string {
6312	if g == nil || g.CompareTo == nil {
6313		return ""
6314	}
6315	return *g.CompareTo
6316}
6317
6318// GetCompareToOk returns a tuple with the CompareTo field if it's non-nil, zero value otherwise
6319// and a boolean to check if the value has been set.
6320func (g *GraphDefinitionRequest) GetCompareToOk() (string, bool) {
6321	if g == nil || g.CompareTo == nil {
6322		return "", false
6323	}
6324	return *g.CompareTo, true
6325}
6326
6327// HasCompareTo returns a boolean if a field has been set.
6328func (g *GraphDefinitionRequest) HasCompareTo() bool {
6329	if g != nil && g.CompareTo != nil {
6330		return true
6331	}
6332
6333	return false
6334}
6335
6336// SetCompareTo allocates a new g.CompareTo and returns the pointer to it.
6337func (g *GraphDefinitionRequest) SetCompareTo(v string) {
6338	g.CompareTo = &v
6339}
6340
6341// GetExtraCol returns the ExtraCol field if non-nil, zero value otherwise.
6342func (g *GraphDefinitionRequest) GetExtraCol() string {
6343	if g == nil || g.ExtraCol == nil {
6344		return ""
6345	}
6346	return *g.ExtraCol
6347}
6348
6349// GetExtraColOk returns a tuple with the ExtraCol field if it's non-nil, zero value otherwise
6350// and a boolean to check if the value has been set.
6351func (g *GraphDefinitionRequest) GetExtraColOk() (string, bool) {
6352	if g == nil || g.ExtraCol == nil {
6353		return "", false
6354	}
6355	return *g.ExtraCol, true
6356}
6357
6358// HasExtraCol returns a boolean if a field has been set.
6359func (g *GraphDefinitionRequest) HasExtraCol() bool {
6360	if g != nil && g.ExtraCol != nil {
6361		return true
6362	}
6363
6364	return false
6365}
6366
6367// SetExtraCol allocates a new g.ExtraCol and returns the pointer to it.
6368func (g *GraphDefinitionRequest) SetExtraCol(v string) {
6369	g.ExtraCol = &v
6370}
6371
6372// GetIncreaseGood returns the IncreaseGood field if non-nil, zero value otherwise.
6373func (g *GraphDefinitionRequest) GetIncreaseGood() bool {
6374	if g == nil || g.IncreaseGood == nil {
6375		return false
6376	}
6377	return *g.IncreaseGood
6378}
6379
6380// GetIncreaseGoodOk returns a tuple with the IncreaseGood field if it's non-nil, zero value otherwise
6381// and a boolean to check if the value has been set.
6382func (g *GraphDefinitionRequest) GetIncreaseGoodOk() (bool, bool) {
6383	if g == nil || g.IncreaseGood == nil {
6384		return false, false
6385	}
6386	return *g.IncreaseGood, true
6387}
6388
6389// HasIncreaseGood returns a boolean if a field has been set.
6390func (g *GraphDefinitionRequest) HasIncreaseGood() bool {
6391	if g != nil && g.IncreaseGood != nil {
6392		return true
6393	}
6394
6395	return false
6396}
6397
6398// SetIncreaseGood allocates a new g.IncreaseGood and returns the pointer to it.
6399func (g *GraphDefinitionRequest) SetIncreaseGood(v bool) {
6400	g.IncreaseGood = &v
6401}
6402
6403// GetOrderBy returns the OrderBy field if non-nil, zero value otherwise.
6404func (g *GraphDefinitionRequest) GetOrderBy() string {
6405	if g == nil || g.OrderBy == nil {
6406		return ""
6407	}
6408	return *g.OrderBy
6409}
6410
6411// GetOrderByOk returns a tuple with the OrderBy field if it's non-nil, zero value otherwise
6412// and a boolean to check if the value has been set.
6413func (g *GraphDefinitionRequest) GetOrderByOk() (string, bool) {
6414	if g == nil || g.OrderBy == nil {
6415		return "", false
6416	}
6417	return *g.OrderBy, true
6418}
6419
6420// HasOrderBy returns a boolean if a field has been set.
6421func (g *GraphDefinitionRequest) HasOrderBy() bool {
6422	if g != nil && g.OrderBy != nil {
6423		return true
6424	}
6425
6426	return false
6427}
6428
6429// SetOrderBy allocates a new g.OrderBy and returns the pointer to it.
6430func (g *GraphDefinitionRequest) SetOrderBy(v string) {
6431	g.OrderBy = &v
6432}
6433
6434// GetOrderDirection returns the OrderDirection field if non-nil, zero value otherwise.
6435func (g *GraphDefinitionRequest) GetOrderDirection() string {
6436	if g == nil || g.OrderDirection == nil {
6437		return ""
6438	}
6439	return *g.OrderDirection
6440}
6441
6442// GetOrderDirectionOk returns a tuple with the OrderDirection field if it's non-nil, zero value otherwise
6443// and a boolean to check if the value has been set.
6444func (g *GraphDefinitionRequest) GetOrderDirectionOk() (string, bool) {
6445	if g == nil || g.OrderDirection == nil {
6446		return "", false
6447	}
6448	return *g.OrderDirection, true
6449}
6450
6451// HasOrderDirection returns a boolean if a field has been set.
6452func (g *GraphDefinitionRequest) HasOrderDirection() bool {
6453	if g != nil && g.OrderDirection != nil {
6454		return true
6455	}
6456
6457	return false
6458}
6459
6460// SetOrderDirection allocates a new g.OrderDirection and returns the pointer to it.
6461func (g *GraphDefinitionRequest) SetOrderDirection(v string) {
6462	g.OrderDirection = &v
6463}
6464
6465// GetQuery returns the Query field if non-nil, zero value otherwise.
6466func (g *GraphDefinitionRequest) GetQuery() string {
6467	if g == nil || g.Query == nil {
6468		return ""
6469	}
6470	return *g.Query
6471}
6472
6473// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
6474// and a boolean to check if the value has been set.
6475func (g *GraphDefinitionRequest) GetQueryOk() (string, bool) {
6476	if g == nil || g.Query == nil {
6477		return "", false
6478	}
6479	return *g.Query, true
6480}
6481
6482// HasQuery returns a boolean if a field has been set.
6483func (g *GraphDefinitionRequest) HasQuery() bool {
6484	if g != nil && g.Query != nil {
6485		return true
6486	}
6487
6488	return false
6489}
6490
6491// SetQuery allocates a new g.Query and returns the pointer to it.
6492func (g *GraphDefinitionRequest) SetQuery(v string) {
6493	g.Query = &v
6494}
6495
6496// GetStacked returns the Stacked field if non-nil, zero value otherwise.
6497func (g *GraphDefinitionRequest) GetStacked() bool {
6498	if g == nil || g.Stacked == nil {
6499		return false
6500	}
6501	return *g.Stacked
6502}
6503
6504// GetStackedOk returns a tuple with the Stacked field if it's non-nil, zero value otherwise
6505// and a boolean to check if the value has been set.
6506func (g *GraphDefinitionRequest) GetStackedOk() (bool, bool) {
6507	if g == nil || g.Stacked == nil {
6508		return false, false
6509	}
6510	return *g.Stacked, true
6511}
6512
6513// HasStacked returns a boolean if a field has been set.
6514func (g *GraphDefinitionRequest) HasStacked() bool {
6515	if g != nil && g.Stacked != nil {
6516		return true
6517	}
6518
6519	return false
6520}
6521
6522// SetStacked allocates a new g.Stacked and returns the pointer to it.
6523func (g *GraphDefinitionRequest) SetStacked(v bool) {
6524	g.Stacked = &v
6525}
6526
6527// GetStyle returns the Style field if non-nil, zero value otherwise.
6528func (g *GraphDefinitionRequest) GetStyle() GraphDefinitionRequestStyle {
6529	if g == nil || g.Style == nil {
6530		return GraphDefinitionRequestStyle{}
6531	}
6532	return *g.Style
6533}
6534
6535// GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise
6536// and a boolean to check if the value has been set.
6537func (g *GraphDefinitionRequest) GetStyleOk() (GraphDefinitionRequestStyle, bool) {
6538	if g == nil || g.Style == nil {
6539		return GraphDefinitionRequestStyle{}, false
6540	}
6541	return *g.Style, true
6542}
6543
6544// HasStyle returns a boolean if a field has been set.
6545func (g *GraphDefinitionRequest) HasStyle() bool {
6546	if g != nil && g.Style != nil {
6547		return true
6548	}
6549
6550	return false
6551}
6552
6553// SetStyle allocates a new g.Style and returns the pointer to it.
6554func (g *GraphDefinitionRequest) SetStyle(v GraphDefinitionRequestStyle) {
6555	g.Style = &v
6556}
6557
6558// GetType returns the Type field if non-nil, zero value otherwise.
6559func (g *GraphDefinitionRequest) GetType() string {
6560	if g == nil || g.Type == nil {
6561		return ""
6562	}
6563	return *g.Type
6564}
6565
6566// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
6567// and a boolean to check if the value has been set.
6568func (g *GraphDefinitionRequest) GetTypeOk() (string, bool) {
6569	if g == nil || g.Type == nil {
6570		return "", false
6571	}
6572	return *g.Type, true
6573}
6574
6575// HasType returns a boolean if a field has been set.
6576func (g *GraphDefinitionRequest) HasType() bool {
6577	if g != nil && g.Type != nil {
6578		return true
6579	}
6580
6581	return false
6582}
6583
6584// SetType allocates a new g.Type and returns the pointer to it.
6585func (g *GraphDefinitionRequest) SetType(v string) {
6586	g.Type = &v
6587}
6588
6589// GetPalette returns the Palette field if non-nil, zero value otherwise.
6590func (g *GraphDefinitionRequestStyle) GetPalette() string {
6591	if g == nil || g.Palette == nil {
6592		return ""
6593	}
6594	return *g.Palette
6595}
6596
6597// GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise
6598// and a boolean to check if the value has been set.
6599func (g *GraphDefinitionRequestStyle) GetPaletteOk() (string, bool) {
6600	if g == nil || g.Palette == nil {
6601		return "", false
6602	}
6603	return *g.Palette, true
6604}
6605
6606// HasPalette returns a boolean if a field has been set.
6607func (g *GraphDefinitionRequestStyle) HasPalette() bool {
6608	if g != nil && g.Palette != nil {
6609		return true
6610	}
6611
6612	return false
6613}
6614
6615// SetPalette allocates a new g.Palette and returns the pointer to it.
6616func (g *GraphDefinitionRequestStyle) SetPalette(v string) {
6617	g.Palette = &v
6618}
6619
6620// GetType returns the Type field if non-nil, zero value otherwise.
6621func (g *GraphDefinitionRequestStyle) GetType() string {
6622	if g == nil || g.Type == nil {
6623		return ""
6624	}
6625	return *g.Type
6626}
6627
6628// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
6629// and a boolean to check if the value has been set.
6630func (g *GraphDefinitionRequestStyle) GetTypeOk() (string, bool) {
6631	if g == nil || g.Type == nil {
6632		return "", false
6633	}
6634	return *g.Type, true
6635}
6636
6637// HasType returns a boolean if a field has been set.
6638func (g *GraphDefinitionRequestStyle) HasType() bool {
6639	if g != nil && g.Type != nil {
6640		return true
6641	}
6642
6643	return false
6644}
6645
6646// SetType allocates a new g.Type and returns the pointer to it.
6647func (g *GraphDefinitionRequestStyle) SetType(v string) {
6648	g.Type = &v
6649}
6650
6651// GetWidth returns the Width field if non-nil, zero value otherwise.
6652func (g *GraphDefinitionRequestStyle) GetWidth() string {
6653	if g == nil || g.Width == nil {
6654		return ""
6655	}
6656	return *g.Width
6657}
6658
6659// GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise
6660// and a boolean to check if the value has been set.
6661func (g *GraphDefinitionRequestStyle) GetWidthOk() (string, bool) {
6662	if g == nil || g.Width == nil {
6663		return "", false
6664	}
6665	return *g.Width, true
6666}
6667
6668// HasWidth returns a boolean if a field has been set.
6669func (g *GraphDefinitionRequestStyle) HasWidth() bool {
6670	if g != nil && g.Width != nil {
6671		return true
6672	}
6673
6674	return false
6675}
6676
6677// SetWidth allocates a new g.Width and returns the pointer to it.
6678func (g *GraphDefinitionRequestStyle) SetWidth(v string) {
6679	g.Width = &v
6680}
6681
6682// GetQuery returns the Query field if non-nil, zero value otherwise.
6683func (g *GraphEvent) GetQuery() string {
6684	if g == nil || g.Query == nil {
6685		return ""
6686	}
6687	return *g.Query
6688}
6689
6690// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
6691// and a boolean to check if the value has been set.
6692func (g *GraphEvent) GetQueryOk() (string, bool) {
6693	if g == nil || g.Query == nil {
6694		return "", false
6695	}
6696	return *g.Query, true
6697}
6698
6699// HasQuery returns a boolean if a field has been set.
6700func (g *GraphEvent) HasQuery() bool {
6701	if g != nil && g.Query != nil {
6702		return true
6703	}
6704
6705	return false
6706}
6707
6708// SetQuery allocates a new g.Query and returns the pointer to it.
6709func (g *GraphEvent) SetQuery(v string) {
6710	g.Query = &v
6711}
6712
6713// GetLastNoDataTs returns the LastNoDataTs field if non-nil, zero value otherwise.
6714func (g *GroupData) GetLastNoDataTs() int {
6715	if g == nil || g.LastNoDataTs == nil {
6716		return 0
6717	}
6718	return *g.LastNoDataTs
6719}
6720
6721// GetLastNoDataTsOk returns a tuple with the LastNoDataTs field if it's non-nil, zero value otherwise
6722// and a boolean to check if the value has been set.
6723func (g *GroupData) GetLastNoDataTsOk() (int, bool) {
6724	if g == nil || g.LastNoDataTs == nil {
6725		return 0, false
6726	}
6727	return *g.LastNoDataTs, true
6728}
6729
6730// HasLastNoDataTs returns a boolean if a field has been set.
6731func (g *GroupData) HasLastNoDataTs() bool {
6732	if g != nil && g.LastNoDataTs != nil {
6733		return true
6734	}
6735
6736	return false
6737}
6738
6739// SetLastNoDataTs allocates a new g.LastNoDataTs and returns the pointer to it.
6740func (g *GroupData) SetLastNoDataTs(v int) {
6741	g.LastNoDataTs = &v
6742}
6743
6744// GetLastNotifiedTs returns the LastNotifiedTs field if non-nil, zero value otherwise.
6745func (g *GroupData) GetLastNotifiedTs() int {
6746	if g == nil || g.LastNotifiedTs == nil {
6747		return 0
6748	}
6749	return *g.LastNotifiedTs
6750}
6751
6752// GetLastNotifiedTsOk returns a tuple with the LastNotifiedTs field if it's non-nil, zero value otherwise
6753// and a boolean to check if the value has been set.
6754func (g *GroupData) GetLastNotifiedTsOk() (int, bool) {
6755	if g == nil || g.LastNotifiedTs == nil {
6756		return 0, false
6757	}
6758	return *g.LastNotifiedTs, true
6759}
6760
6761// HasLastNotifiedTs returns a boolean if a field has been set.
6762func (g *GroupData) HasLastNotifiedTs() bool {
6763	if g != nil && g.LastNotifiedTs != nil {
6764		return true
6765	}
6766
6767	return false
6768}
6769
6770// SetLastNotifiedTs allocates a new g.LastNotifiedTs and returns the pointer to it.
6771func (g *GroupData) SetLastNotifiedTs(v int) {
6772	g.LastNotifiedTs = &v
6773}
6774
6775// GetLastResolvedTs returns the LastResolvedTs field if non-nil, zero value otherwise.
6776func (g *GroupData) GetLastResolvedTs() int {
6777	if g == nil || g.LastResolvedTs == nil {
6778		return 0
6779	}
6780	return *g.LastResolvedTs
6781}
6782
6783// GetLastResolvedTsOk returns a tuple with the LastResolvedTs field if it's non-nil, zero value otherwise
6784// and a boolean to check if the value has been set.
6785func (g *GroupData) GetLastResolvedTsOk() (int, bool) {
6786	if g == nil || g.LastResolvedTs == nil {
6787		return 0, false
6788	}
6789	return *g.LastResolvedTs, true
6790}
6791
6792// HasLastResolvedTs returns a boolean if a field has been set.
6793func (g *GroupData) HasLastResolvedTs() bool {
6794	if g != nil && g.LastResolvedTs != nil {
6795		return true
6796	}
6797
6798	return false
6799}
6800
6801// SetLastResolvedTs allocates a new g.LastResolvedTs and returns the pointer to it.
6802func (g *GroupData) SetLastResolvedTs(v int) {
6803	g.LastResolvedTs = &v
6804}
6805
6806// GetLastTriggeredTs returns the LastTriggeredTs field if non-nil, zero value otherwise.
6807func (g *GroupData) GetLastTriggeredTs() int {
6808	if g == nil || g.LastTriggeredTs == nil {
6809		return 0
6810	}
6811	return *g.LastTriggeredTs
6812}
6813
6814// GetLastTriggeredTsOk returns a tuple with the LastTriggeredTs field if it's non-nil, zero value otherwise
6815// and a boolean to check if the value has been set.
6816func (g *GroupData) GetLastTriggeredTsOk() (int, bool) {
6817	if g == nil || g.LastTriggeredTs == nil {
6818		return 0, false
6819	}
6820	return *g.LastTriggeredTs, true
6821}
6822
6823// HasLastTriggeredTs returns a boolean if a field has been set.
6824func (g *GroupData) HasLastTriggeredTs() bool {
6825	if g != nil && g.LastTriggeredTs != nil {
6826		return true
6827	}
6828
6829	return false
6830}
6831
6832// SetLastTriggeredTs allocates a new g.LastTriggeredTs and returns the pointer to it.
6833func (g *GroupData) SetLastTriggeredTs(v int) {
6834	g.LastTriggeredTs = &v
6835}
6836
6837// GetName returns the Name field if non-nil, zero value otherwise.
6838func (g *GroupData) GetName() string {
6839	if g == nil || g.Name == nil {
6840		return ""
6841	}
6842	return *g.Name
6843}
6844
6845// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
6846// and a boolean to check if the value has been set.
6847func (g *GroupData) GetNameOk() (string, bool) {
6848	if g == nil || g.Name == nil {
6849		return "", false
6850	}
6851	return *g.Name, true
6852}
6853
6854// HasName returns a boolean if a field has been set.
6855func (g *GroupData) HasName() bool {
6856	if g != nil && g.Name != nil {
6857		return true
6858	}
6859
6860	return false
6861}
6862
6863// SetName allocates a new g.Name and returns the pointer to it.
6864func (g *GroupData) SetName(v string) {
6865	g.Name = &v
6866}
6867
6868// GetStatus returns the Status field if non-nil, zero value otherwise.
6869func (g *GroupData) GetStatus() string {
6870	if g == nil || g.Status == nil {
6871		return ""
6872	}
6873	return *g.Status
6874}
6875
6876// GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
6877// and a boolean to check if the value has been set.
6878func (g *GroupData) GetStatusOk() (string, bool) {
6879	if g == nil || g.Status == nil {
6880		return "", false
6881	}
6882	return *g.Status, true
6883}
6884
6885// HasStatus returns a boolean if a field has been set.
6886func (g *GroupData) HasStatus() bool {
6887	if g != nil && g.Status != nil {
6888		return true
6889	}
6890
6891	return false
6892}
6893
6894// SetStatus allocates a new g.Status and returns the pointer to it.
6895func (g *GroupData) SetStatus(v string) {
6896	g.Status = &v
6897}
6898
6899// GetTriggeringValue returns the TriggeringValue field if non-nil, zero value otherwise.
6900func (g *GroupData) GetTriggeringValue() TriggeringValue {
6901	if g == nil || g.TriggeringValue == nil {
6902		return TriggeringValue{}
6903	}
6904	return *g.TriggeringValue
6905}
6906
6907// GetTriggeringValueOk returns a tuple with the TriggeringValue field if it's non-nil, zero value otherwise
6908// and a boolean to check if the value has been set.
6909func (g *GroupData) GetTriggeringValueOk() (TriggeringValue, bool) {
6910	if g == nil || g.TriggeringValue == nil {
6911		return TriggeringValue{}, false
6912	}
6913	return *g.TriggeringValue, true
6914}
6915
6916// HasTriggeringValue returns a boolean if a field has been set.
6917func (g *GroupData) HasTriggeringValue() bool {
6918	if g != nil && g.TriggeringValue != nil {
6919		return true
6920	}
6921
6922	return false
6923}
6924
6925// SetTriggeringValue allocates a new g.TriggeringValue and returns the pointer to it.
6926func (g *GroupData) SetTriggeringValue(v TriggeringValue) {
6927	g.TriggeringValue = &v
6928}
6929
6930// GetLayoutType returns the LayoutType field if non-nil, zero value otherwise.
6931func (g *GroupDefinition) GetLayoutType() string {
6932	if g == nil || g.LayoutType == nil {
6933		return ""
6934	}
6935	return *g.LayoutType
6936}
6937
6938// GetLayoutTypeOk returns a tuple with the LayoutType field if it's non-nil, zero value otherwise
6939// and a boolean to check if the value has been set.
6940func (g *GroupDefinition) GetLayoutTypeOk() (string, bool) {
6941	if g == nil || g.LayoutType == nil {
6942		return "", false
6943	}
6944	return *g.LayoutType, true
6945}
6946
6947// HasLayoutType returns a boolean if a field has been set.
6948func (g *GroupDefinition) HasLayoutType() bool {
6949	if g != nil && g.LayoutType != nil {
6950		return true
6951	}
6952
6953	return false
6954}
6955
6956// SetLayoutType allocates a new g.LayoutType and returns the pointer to it.
6957func (g *GroupDefinition) SetLayoutType(v string) {
6958	g.LayoutType = &v
6959}
6960
6961// GetTitle returns the Title field if non-nil, zero value otherwise.
6962func (g *GroupDefinition) GetTitle() string {
6963	if g == nil || g.Title == nil {
6964		return ""
6965	}
6966	return *g.Title
6967}
6968
6969// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
6970// and a boolean to check if the value has been set.
6971func (g *GroupDefinition) GetTitleOk() (string, bool) {
6972	if g == nil || g.Title == nil {
6973		return "", false
6974	}
6975	return *g.Title, true
6976}
6977
6978// HasTitle returns a boolean if a field has been set.
6979func (g *GroupDefinition) HasTitle() bool {
6980	if g != nil && g.Title != nil {
6981		return true
6982	}
6983
6984	return false
6985}
6986
6987// SetTitle allocates a new g.Title and returns the pointer to it.
6988func (g *GroupDefinition) SetTitle(v string) {
6989	g.Title = &v
6990}
6991
6992// GetType returns the Type field if non-nil, zero value otherwise.
6993func (g *GroupDefinition) GetType() string {
6994	if g == nil || g.Type == nil {
6995		return ""
6996	}
6997	return *g.Type
6998}
6999
7000// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
7001// and a boolean to check if the value has been set.
7002func (g *GroupDefinition) GetTypeOk() (string, bool) {
7003	if g == nil || g.Type == nil {
7004		return "", false
7005	}
7006	return *g.Type, true
7007}
7008
7009// HasType returns a boolean if a field has been set.
7010func (g *GroupDefinition) HasType() bool {
7011	if g != nil && g.Type != nil {
7012		return true
7013	}
7014
7015	return false
7016}
7017
7018// SetType allocates a new g.Type and returns the pointer to it.
7019func (g *GroupDefinition) SetType(v string) {
7020	g.Type = &v
7021}
7022
7023// GetTime returns the Time field if non-nil, zero value otherwise.
7024func (h *HeatmapDefinition) GetTime() WidgetTime {
7025	if h == nil || h.Time == nil {
7026		return WidgetTime{}
7027	}
7028	return *h.Time
7029}
7030
7031// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
7032// and a boolean to check if the value has been set.
7033func (h *HeatmapDefinition) GetTimeOk() (WidgetTime, bool) {
7034	if h == nil || h.Time == nil {
7035		return WidgetTime{}, false
7036	}
7037	return *h.Time, true
7038}
7039
7040// HasTime returns a boolean if a field has been set.
7041func (h *HeatmapDefinition) HasTime() bool {
7042	if h != nil && h.Time != nil {
7043		return true
7044	}
7045
7046	return false
7047}
7048
7049// SetTime allocates a new h.Time and returns the pointer to it.
7050func (h *HeatmapDefinition) SetTime(v WidgetTime) {
7051	h.Time = &v
7052}
7053
7054// GetTitle returns the Title field if non-nil, zero value otherwise.
7055func (h *HeatmapDefinition) GetTitle() string {
7056	if h == nil || h.Title == nil {
7057		return ""
7058	}
7059	return *h.Title
7060}
7061
7062// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
7063// and a boolean to check if the value has been set.
7064func (h *HeatmapDefinition) GetTitleOk() (string, bool) {
7065	if h == nil || h.Title == nil {
7066		return "", false
7067	}
7068	return *h.Title, true
7069}
7070
7071// HasTitle returns a boolean if a field has been set.
7072func (h *HeatmapDefinition) HasTitle() bool {
7073	if h != nil && h.Title != nil {
7074		return true
7075	}
7076
7077	return false
7078}
7079
7080// SetTitle allocates a new h.Title and returns the pointer to it.
7081func (h *HeatmapDefinition) SetTitle(v string) {
7082	h.Title = &v
7083}
7084
7085// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
7086func (h *HeatmapDefinition) GetTitleAlign() string {
7087	if h == nil || h.TitleAlign == nil {
7088		return ""
7089	}
7090	return *h.TitleAlign
7091}
7092
7093// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
7094// and a boolean to check if the value has been set.
7095func (h *HeatmapDefinition) GetTitleAlignOk() (string, bool) {
7096	if h == nil || h.TitleAlign == nil {
7097		return "", false
7098	}
7099	return *h.TitleAlign, true
7100}
7101
7102// HasTitleAlign returns a boolean if a field has been set.
7103func (h *HeatmapDefinition) HasTitleAlign() bool {
7104	if h != nil && h.TitleAlign != nil {
7105		return true
7106	}
7107
7108	return false
7109}
7110
7111// SetTitleAlign allocates a new h.TitleAlign and returns the pointer to it.
7112func (h *HeatmapDefinition) SetTitleAlign(v string) {
7113	h.TitleAlign = &v
7114}
7115
7116// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
7117func (h *HeatmapDefinition) GetTitleSize() string {
7118	if h == nil || h.TitleSize == nil {
7119		return ""
7120	}
7121	return *h.TitleSize
7122}
7123
7124// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
7125// and a boolean to check if the value has been set.
7126func (h *HeatmapDefinition) GetTitleSizeOk() (string, bool) {
7127	if h == nil || h.TitleSize == nil {
7128		return "", false
7129	}
7130	return *h.TitleSize, true
7131}
7132
7133// HasTitleSize returns a boolean if a field has been set.
7134func (h *HeatmapDefinition) HasTitleSize() bool {
7135	if h != nil && h.TitleSize != nil {
7136		return true
7137	}
7138
7139	return false
7140}
7141
7142// SetTitleSize allocates a new h.TitleSize and returns the pointer to it.
7143func (h *HeatmapDefinition) SetTitleSize(v string) {
7144	h.TitleSize = &v
7145}
7146
7147// GetType returns the Type field if non-nil, zero value otherwise.
7148func (h *HeatmapDefinition) GetType() string {
7149	if h == nil || h.Type == nil {
7150		return ""
7151	}
7152	return *h.Type
7153}
7154
7155// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
7156// and a boolean to check if the value has been set.
7157func (h *HeatmapDefinition) GetTypeOk() (string, bool) {
7158	if h == nil || h.Type == nil {
7159		return "", false
7160	}
7161	return *h.Type, true
7162}
7163
7164// HasType returns a boolean if a field has been set.
7165func (h *HeatmapDefinition) HasType() bool {
7166	if h != nil && h.Type != nil {
7167		return true
7168	}
7169
7170	return false
7171}
7172
7173// SetType allocates a new h.Type and returns the pointer to it.
7174func (h *HeatmapDefinition) SetType(v string) {
7175	h.Type = &v
7176}
7177
7178// GetYaxis returns the Yaxis field if non-nil, zero value otherwise.
7179func (h *HeatmapDefinition) GetYaxis() WidgetAxis {
7180	if h == nil || h.Yaxis == nil {
7181		return WidgetAxis{}
7182	}
7183	return *h.Yaxis
7184}
7185
7186// GetYaxisOk returns a tuple with the Yaxis field if it's non-nil, zero value otherwise
7187// and a boolean to check if the value has been set.
7188func (h *HeatmapDefinition) GetYaxisOk() (WidgetAxis, bool) {
7189	if h == nil || h.Yaxis == nil {
7190		return WidgetAxis{}, false
7191	}
7192	return *h.Yaxis, true
7193}
7194
7195// HasYaxis returns a boolean if a field has been set.
7196func (h *HeatmapDefinition) HasYaxis() bool {
7197	if h != nil && h.Yaxis != nil {
7198		return true
7199	}
7200
7201	return false
7202}
7203
7204// SetYaxis allocates a new h.Yaxis and returns the pointer to it.
7205func (h *HeatmapDefinition) SetYaxis(v WidgetAxis) {
7206	h.Yaxis = &v
7207}
7208
7209// GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise.
7210func (h *HeatmapRequest) GetApmQuery() WidgetApmOrLogQuery {
7211	if h == nil || h.ApmQuery == nil {
7212		return WidgetApmOrLogQuery{}
7213	}
7214	return *h.ApmQuery
7215}
7216
7217// GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise
7218// and a boolean to check if the value has been set.
7219func (h *HeatmapRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) {
7220	if h == nil || h.ApmQuery == nil {
7221		return WidgetApmOrLogQuery{}, false
7222	}
7223	return *h.ApmQuery, true
7224}
7225
7226// HasApmQuery returns a boolean if a field has been set.
7227func (h *HeatmapRequest) HasApmQuery() bool {
7228	if h != nil && h.ApmQuery != nil {
7229		return true
7230	}
7231
7232	return false
7233}
7234
7235// SetApmQuery allocates a new h.ApmQuery and returns the pointer to it.
7236func (h *HeatmapRequest) SetApmQuery(v WidgetApmOrLogQuery) {
7237	h.ApmQuery = &v
7238}
7239
7240// GetLogQuery returns the LogQuery field if non-nil, zero value otherwise.
7241func (h *HeatmapRequest) GetLogQuery() WidgetApmOrLogQuery {
7242	if h == nil || h.LogQuery == nil {
7243		return WidgetApmOrLogQuery{}
7244	}
7245	return *h.LogQuery
7246}
7247
7248// GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise
7249// and a boolean to check if the value has been set.
7250func (h *HeatmapRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) {
7251	if h == nil || h.LogQuery == nil {
7252		return WidgetApmOrLogQuery{}, false
7253	}
7254	return *h.LogQuery, true
7255}
7256
7257// HasLogQuery returns a boolean if a field has been set.
7258func (h *HeatmapRequest) HasLogQuery() bool {
7259	if h != nil && h.LogQuery != nil {
7260		return true
7261	}
7262
7263	return false
7264}
7265
7266// SetLogQuery allocates a new h.LogQuery and returns the pointer to it.
7267func (h *HeatmapRequest) SetLogQuery(v WidgetApmOrLogQuery) {
7268	h.LogQuery = &v
7269}
7270
7271// GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise.
7272func (h *HeatmapRequest) GetMetricQuery() string {
7273	if h == nil || h.MetricQuery == nil {
7274		return ""
7275	}
7276	return *h.MetricQuery
7277}
7278
7279// GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise
7280// and a boolean to check if the value has been set.
7281func (h *HeatmapRequest) GetMetricQueryOk() (string, bool) {
7282	if h == nil || h.MetricQuery == nil {
7283		return "", false
7284	}
7285	return *h.MetricQuery, true
7286}
7287
7288// HasMetricQuery returns a boolean if a field has been set.
7289func (h *HeatmapRequest) HasMetricQuery() bool {
7290	if h != nil && h.MetricQuery != nil {
7291		return true
7292	}
7293
7294	return false
7295}
7296
7297// SetMetricQuery allocates a new h.MetricQuery and returns the pointer to it.
7298func (h *HeatmapRequest) SetMetricQuery(v string) {
7299	h.MetricQuery = &v
7300}
7301
7302// GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise.
7303func (h *HeatmapRequest) GetProcessQuery() WidgetProcessQuery {
7304	if h == nil || h.ProcessQuery == nil {
7305		return WidgetProcessQuery{}
7306	}
7307	return *h.ProcessQuery
7308}
7309
7310// GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise
7311// and a boolean to check if the value has been set.
7312func (h *HeatmapRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) {
7313	if h == nil || h.ProcessQuery == nil {
7314		return WidgetProcessQuery{}, false
7315	}
7316	return *h.ProcessQuery, true
7317}
7318
7319// HasProcessQuery returns a boolean if a field has been set.
7320func (h *HeatmapRequest) HasProcessQuery() bool {
7321	if h != nil && h.ProcessQuery != nil {
7322		return true
7323	}
7324
7325	return false
7326}
7327
7328// SetProcessQuery allocates a new h.ProcessQuery and returns the pointer to it.
7329func (h *HeatmapRequest) SetProcessQuery(v WidgetProcessQuery) {
7330	h.ProcessQuery = &v
7331}
7332
7333// GetStyle returns the Style field if non-nil, zero value otherwise.
7334func (h *HeatmapRequest) GetStyle() WidgetRequestStyle {
7335	if h == nil || h.Style == nil {
7336		return WidgetRequestStyle{}
7337	}
7338	return *h.Style
7339}
7340
7341// GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise
7342// and a boolean to check if the value has been set.
7343func (h *HeatmapRequest) GetStyleOk() (WidgetRequestStyle, bool) {
7344	if h == nil || h.Style == nil {
7345		return WidgetRequestStyle{}, false
7346	}
7347	return *h.Style, true
7348}
7349
7350// HasStyle returns a boolean if a field has been set.
7351func (h *HeatmapRequest) HasStyle() bool {
7352	if h != nil && h.Style != nil {
7353		return true
7354	}
7355
7356	return false
7357}
7358
7359// SetStyle allocates a new h.Style and returns the pointer to it.
7360func (h *HeatmapRequest) SetStyle(v WidgetRequestStyle) {
7361	h.Style = &v
7362}
7363
7364// GetEndTime returns the EndTime field if non-nil, zero value otherwise.
7365func (h *HostActionMute) GetEndTime() string {
7366	if h == nil || h.EndTime == nil {
7367		return ""
7368	}
7369	return *h.EndTime
7370}
7371
7372// GetEndTimeOk returns a tuple with the EndTime field if it's non-nil, zero value otherwise
7373// and a boolean to check if the value has been set.
7374func (h *HostActionMute) GetEndTimeOk() (string, bool) {
7375	if h == nil || h.EndTime == nil {
7376		return "", false
7377	}
7378	return *h.EndTime, true
7379}
7380
7381// HasEndTime returns a boolean if a field has been set.
7382func (h *HostActionMute) HasEndTime() bool {
7383	if h != nil && h.EndTime != nil {
7384		return true
7385	}
7386
7387	return false
7388}
7389
7390// SetEndTime allocates a new h.EndTime and returns the pointer to it.
7391func (h *HostActionMute) SetEndTime(v string) {
7392	h.EndTime = &v
7393}
7394
7395// GetMessage returns the Message field if non-nil, zero value otherwise.
7396func (h *HostActionMute) GetMessage() string {
7397	if h == nil || h.Message == nil {
7398		return ""
7399	}
7400	return *h.Message
7401}
7402
7403// GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise
7404// and a boolean to check if the value has been set.
7405func (h *HostActionMute) GetMessageOk() (string, bool) {
7406	if h == nil || h.Message == nil {
7407		return "", false
7408	}
7409	return *h.Message, true
7410}
7411
7412// HasMessage returns a boolean if a field has been set.
7413func (h *HostActionMute) HasMessage() bool {
7414	if h != nil && h.Message != nil {
7415		return true
7416	}
7417
7418	return false
7419}
7420
7421// SetMessage allocates a new h.Message and returns the pointer to it.
7422func (h *HostActionMute) SetMessage(v string) {
7423	h.Message = &v
7424}
7425
7426// GetOverride returns the Override field if non-nil, zero value otherwise.
7427func (h *HostActionMute) GetOverride() bool {
7428	if h == nil || h.Override == nil {
7429		return false
7430	}
7431	return *h.Override
7432}
7433
7434// GetOverrideOk returns a tuple with the Override field if it's non-nil, zero value otherwise
7435// and a boolean to check if the value has been set.
7436func (h *HostActionMute) GetOverrideOk() (bool, bool) {
7437	if h == nil || h.Override == nil {
7438		return false, false
7439	}
7440	return *h.Override, true
7441}
7442
7443// HasOverride returns a boolean if a field has been set.
7444func (h *HostActionMute) HasOverride() bool {
7445	if h != nil && h.Override != nil {
7446		return true
7447	}
7448
7449	return false
7450}
7451
7452// SetOverride allocates a new h.Override and returns the pointer to it.
7453func (h *HostActionMute) SetOverride(v bool) {
7454	h.Override = &v
7455}
7456
7457// GetNodeType returns the NodeType field if non-nil, zero value otherwise.
7458func (h *HostmapDefinition) GetNodeType() string {
7459	if h == nil || h.NodeType == nil {
7460		return ""
7461	}
7462	return *h.NodeType
7463}
7464
7465// GetNodeTypeOk returns a tuple with the NodeType field if it's non-nil, zero value otherwise
7466// and a boolean to check if the value has been set.
7467func (h *HostmapDefinition) GetNodeTypeOk() (string, bool) {
7468	if h == nil || h.NodeType == nil {
7469		return "", false
7470	}
7471	return *h.NodeType, true
7472}
7473
7474// HasNodeType returns a boolean if a field has been set.
7475func (h *HostmapDefinition) HasNodeType() bool {
7476	if h != nil && h.NodeType != nil {
7477		return true
7478	}
7479
7480	return false
7481}
7482
7483// SetNodeType allocates a new h.NodeType and returns the pointer to it.
7484func (h *HostmapDefinition) SetNodeType(v string) {
7485	h.NodeType = &v
7486}
7487
7488// GetNoGroupHosts returns the NoGroupHosts field if non-nil, zero value otherwise.
7489func (h *HostmapDefinition) GetNoGroupHosts() bool {
7490	if h == nil || h.NoGroupHosts == nil {
7491		return false
7492	}
7493	return *h.NoGroupHosts
7494}
7495
7496// GetNoGroupHostsOk returns a tuple with the NoGroupHosts field if it's non-nil, zero value otherwise
7497// and a boolean to check if the value has been set.
7498func (h *HostmapDefinition) GetNoGroupHostsOk() (bool, bool) {
7499	if h == nil || h.NoGroupHosts == nil {
7500		return false, false
7501	}
7502	return *h.NoGroupHosts, true
7503}
7504
7505// HasNoGroupHosts returns a boolean if a field has been set.
7506func (h *HostmapDefinition) HasNoGroupHosts() bool {
7507	if h != nil && h.NoGroupHosts != nil {
7508		return true
7509	}
7510
7511	return false
7512}
7513
7514// SetNoGroupHosts allocates a new h.NoGroupHosts and returns the pointer to it.
7515func (h *HostmapDefinition) SetNoGroupHosts(v bool) {
7516	h.NoGroupHosts = &v
7517}
7518
7519// GetNoMetricHosts returns the NoMetricHosts field if non-nil, zero value otherwise.
7520func (h *HostmapDefinition) GetNoMetricHosts() bool {
7521	if h == nil || h.NoMetricHosts == nil {
7522		return false
7523	}
7524	return *h.NoMetricHosts
7525}
7526
7527// GetNoMetricHostsOk returns a tuple with the NoMetricHosts field if it's non-nil, zero value otherwise
7528// and a boolean to check if the value has been set.
7529func (h *HostmapDefinition) GetNoMetricHostsOk() (bool, bool) {
7530	if h == nil || h.NoMetricHosts == nil {
7531		return false, false
7532	}
7533	return *h.NoMetricHosts, true
7534}
7535
7536// HasNoMetricHosts returns a boolean if a field has been set.
7537func (h *HostmapDefinition) HasNoMetricHosts() bool {
7538	if h != nil && h.NoMetricHosts != nil {
7539		return true
7540	}
7541
7542	return false
7543}
7544
7545// SetNoMetricHosts allocates a new h.NoMetricHosts and returns the pointer to it.
7546func (h *HostmapDefinition) SetNoMetricHosts(v bool) {
7547	h.NoMetricHosts = &v
7548}
7549
7550// GetRequests returns the Requests field if non-nil, zero value otherwise.
7551func (h *HostmapDefinition) GetRequests() HostmapRequests {
7552	if h == nil || h.Requests == nil {
7553		return HostmapRequests{}
7554	}
7555	return *h.Requests
7556}
7557
7558// GetRequestsOk returns a tuple with the Requests field if it's non-nil, zero value otherwise
7559// and a boolean to check if the value has been set.
7560func (h *HostmapDefinition) GetRequestsOk() (HostmapRequests, bool) {
7561	if h == nil || h.Requests == nil {
7562		return HostmapRequests{}, false
7563	}
7564	return *h.Requests, true
7565}
7566
7567// HasRequests returns a boolean if a field has been set.
7568func (h *HostmapDefinition) HasRequests() bool {
7569	if h != nil && h.Requests != nil {
7570		return true
7571	}
7572
7573	return false
7574}
7575
7576// SetRequests allocates a new h.Requests and returns the pointer to it.
7577func (h *HostmapDefinition) SetRequests(v HostmapRequests) {
7578	h.Requests = &v
7579}
7580
7581// GetStyle returns the Style field if non-nil, zero value otherwise.
7582func (h *HostmapDefinition) GetStyle() HostmapStyle {
7583	if h == nil || h.Style == nil {
7584		return HostmapStyle{}
7585	}
7586	return *h.Style
7587}
7588
7589// GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise
7590// and a boolean to check if the value has been set.
7591func (h *HostmapDefinition) GetStyleOk() (HostmapStyle, bool) {
7592	if h == nil || h.Style == nil {
7593		return HostmapStyle{}, false
7594	}
7595	return *h.Style, true
7596}
7597
7598// HasStyle returns a boolean if a field has been set.
7599func (h *HostmapDefinition) HasStyle() bool {
7600	if h != nil && h.Style != nil {
7601		return true
7602	}
7603
7604	return false
7605}
7606
7607// SetStyle allocates a new h.Style and returns the pointer to it.
7608func (h *HostmapDefinition) SetStyle(v HostmapStyle) {
7609	h.Style = &v
7610}
7611
7612// GetTitle returns the Title field if non-nil, zero value otherwise.
7613func (h *HostmapDefinition) GetTitle() string {
7614	if h == nil || h.Title == nil {
7615		return ""
7616	}
7617	return *h.Title
7618}
7619
7620// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
7621// and a boolean to check if the value has been set.
7622func (h *HostmapDefinition) GetTitleOk() (string, bool) {
7623	if h == nil || h.Title == nil {
7624		return "", false
7625	}
7626	return *h.Title, true
7627}
7628
7629// HasTitle returns a boolean if a field has been set.
7630func (h *HostmapDefinition) HasTitle() bool {
7631	if h != nil && h.Title != nil {
7632		return true
7633	}
7634
7635	return false
7636}
7637
7638// SetTitle allocates a new h.Title and returns the pointer to it.
7639func (h *HostmapDefinition) SetTitle(v string) {
7640	h.Title = &v
7641}
7642
7643// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
7644func (h *HostmapDefinition) GetTitleAlign() string {
7645	if h == nil || h.TitleAlign == nil {
7646		return ""
7647	}
7648	return *h.TitleAlign
7649}
7650
7651// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
7652// and a boolean to check if the value has been set.
7653func (h *HostmapDefinition) GetTitleAlignOk() (string, bool) {
7654	if h == nil || h.TitleAlign == nil {
7655		return "", false
7656	}
7657	return *h.TitleAlign, true
7658}
7659
7660// HasTitleAlign returns a boolean if a field has been set.
7661func (h *HostmapDefinition) HasTitleAlign() bool {
7662	if h != nil && h.TitleAlign != nil {
7663		return true
7664	}
7665
7666	return false
7667}
7668
7669// SetTitleAlign allocates a new h.TitleAlign and returns the pointer to it.
7670func (h *HostmapDefinition) SetTitleAlign(v string) {
7671	h.TitleAlign = &v
7672}
7673
7674// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
7675func (h *HostmapDefinition) GetTitleSize() string {
7676	if h == nil || h.TitleSize == nil {
7677		return ""
7678	}
7679	return *h.TitleSize
7680}
7681
7682// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
7683// and a boolean to check if the value has been set.
7684func (h *HostmapDefinition) GetTitleSizeOk() (string, bool) {
7685	if h == nil || h.TitleSize == nil {
7686		return "", false
7687	}
7688	return *h.TitleSize, true
7689}
7690
7691// HasTitleSize returns a boolean if a field has been set.
7692func (h *HostmapDefinition) HasTitleSize() bool {
7693	if h != nil && h.TitleSize != nil {
7694		return true
7695	}
7696
7697	return false
7698}
7699
7700// SetTitleSize allocates a new h.TitleSize and returns the pointer to it.
7701func (h *HostmapDefinition) SetTitleSize(v string) {
7702	h.TitleSize = &v
7703}
7704
7705// GetType returns the Type field if non-nil, zero value otherwise.
7706func (h *HostmapDefinition) GetType() string {
7707	if h == nil || h.Type == nil {
7708		return ""
7709	}
7710	return *h.Type
7711}
7712
7713// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
7714// and a boolean to check if the value has been set.
7715func (h *HostmapDefinition) GetTypeOk() (string, bool) {
7716	if h == nil || h.Type == nil {
7717		return "", false
7718	}
7719	return *h.Type, true
7720}
7721
7722// HasType returns a boolean if a field has been set.
7723func (h *HostmapDefinition) HasType() bool {
7724	if h != nil && h.Type != nil {
7725		return true
7726	}
7727
7728	return false
7729}
7730
7731// SetType allocates a new h.Type and returns the pointer to it.
7732func (h *HostmapDefinition) SetType(v string) {
7733	h.Type = &v
7734}
7735
7736// GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise.
7737func (h *HostmapRequest) GetApmQuery() WidgetApmOrLogQuery {
7738	if h == nil || h.ApmQuery == nil {
7739		return WidgetApmOrLogQuery{}
7740	}
7741	return *h.ApmQuery
7742}
7743
7744// GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise
7745// and a boolean to check if the value has been set.
7746func (h *HostmapRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) {
7747	if h == nil || h.ApmQuery == nil {
7748		return WidgetApmOrLogQuery{}, false
7749	}
7750	return *h.ApmQuery, true
7751}
7752
7753// HasApmQuery returns a boolean if a field has been set.
7754func (h *HostmapRequest) HasApmQuery() bool {
7755	if h != nil && h.ApmQuery != nil {
7756		return true
7757	}
7758
7759	return false
7760}
7761
7762// SetApmQuery allocates a new h.ApmQuery and returns the pointer to it.
7763func (h *HostmapRequest) SetApmQuery(v WidgetApmOrLogQuery) {
7764	h.ApmQuery = &v
7765}
7766
7767// GetLogQuery returns the LogQuery field if non-nil, zero value otherwise.
7768func (h *HostmapRequest) GetLogQuery() WidgetApmOrLogQuery {
7769	if h == nil || h.LogQuery == nil {
7770		return WidgetApmOrLogQuery{}
7771	}
7772	return *h.LogQuery
7773}
7774
7775// GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise
7776// and a boolean to check if the value has been set.
7777func (h *HostmapRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) {
7778	if h == nil || h.LogQuery == nil {
7779		return WidgetApmOrLogQuery{}, false
7780	}
7781	return *h.LogQuery, true
7782}
7783
7784// HasLogQuery returns a boolean if a field has been set.
7785func (h *HostmapRequest) HasLogQuery() bool {
7786	if h != nil && h.LogQuery != nil {
7787		return true
7788	}
7789
7790	return false
7791}
7792
7793// SetLogQuery allocates a new h.LogQuery and returns the pointer to it.
7794func (h *HostmapRequest) SetLogQuery(v WidgetApmOrLogQuery) {
7795	h.LogQuery = &v
7796}
7797
7798// GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise.
7799func (h *HostmapRequest) GetMetricQuery() string {
7800	if h == nil || h.MetricQuery == nil {
7801		return ""
7802	}
7803	return *h.MetricQuery
7804}
7805
7806// GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise
7807// and a boolean to check if the value has been set.
7808func (h *HostmapRequest) GetMetricQueryOk() (string, bool) {
7809	if h == nil || h.MetricQuery == nil {
7810		return "", false
7811	}
7812	return *h.MetricQuery, true
7813}
7814
7815// HasMetricQuery returns a boolean if a field has been set.
7816func (h *HostmapRequest) HasMetricQuery() bool {
7817	if h != nil && h.MetricQuery != nil {
7818		return true
7819	}
7820
7821	return false
7822}
7823
7824// SetMetricQuery allocates a new h.MetricQuery and returns the pointer to it.
7825func (h *HostmapRequest) SetMetricQuery(v string) {
7826	h.MetricQuery = &v
7827}
7828
7829// GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise.
7830func (h *HostmapRequest) GetProcessQuery() WidgetProcessQuery {
7831	if h == nil || h.ProcessQuery == nil {
7832		return WidgetProcessQuery{}
7833	}
7834	return *h.ProcessQuery
7835}
7836
7837// GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise
7838// and a boolean to check if the value has been set.
7839func (h *HostmapRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) {
7840	if h == nil || h.ProcessQuery == nil {
7841		return WidgetProcessQuery{}, false
7842	}
7843	return *h.ProcessQuery, true
7844}
7845
7846// HasProcessQuery returns a boolean if a field has been set.
7847func (h *HostmapRequest) HasProcessQuery() bool {
7848	if h != nil && h.ProcessQuery != nil {
7849		return true
7850	}
7851
7852	return false
7853}
7854
7855// SetProcessQuery allocates a new h.ProcessQuery and returns the pointer to it.
7856func (h *HostmapRequest) SetProcessQuery(v WidgetProcessQuery) {
7857	h.ProcessQuery = &v
7858}
7859
7860// GetFill returns the Fill field if non-nil, zero value otherwise.
7861func (h *HostmapRequests) GetFill() HostmapRequest {
7862	if h == nil || h.Fill == nil {
7863		return HostmapRequest{}
7864	}
7865	return *h.Fill
7866}
7867
7868// GetFillOk returns a tuple with the Fill field if it's non-nil, zero value otherwise
7869// and a boolean to check if the value has been set.
7870func (h *HostmapRequests) GetFillOk() (HostmapRequest, bool) {
7871	if h == nil || h.Fill == nil {
7872		return HostmapRequest{}, false
7873	}
7874	return *h.Fill, true
7875}
7876
7877// HasFill returns a boolean if a field has been set.
7878func (h *HostmapRequests) HasFill() bool {
7879	if h != nil && h.Fill != nil {
7880		return true
7881	}
7882
7883	return false
7884}
7885
7886// SetFill allocates a new h.Fill and returns the pointer to it.
7887func (h *HostmapRequests) SetFill(v HostmapRequest) {
7888	h.Fill = &v
7889}
7890
7891// GetSize returns the Size field if non-nil, zero value otherwise.
7892func (h *HostmapRequests) GetSize() HostmapRequest {
7893	if h == nil || h.Size == nil {
7894		return HostmapRequest{}
7895	}
7896	return *h.Size
7897}
7898
7899// GetSizeOk returns a tuple with the Size field if it's non-nil, zero value otherwise
7900// and a boolean to check if the value has been set.
7901func (h *HostmapRequests) GetSizeOk() (HostmapRequest, bool) {
7902	if h == nil || h.Size == nil {
7903		return HostmapRequest{}, false
7904	}
7905	return *h.Size, true
7906}
7907
7908// HasSize returns a boolean if a field has been set.
7909func (h *HostmapRequests) HasSize() bool {
7910	if h != nil && h.Size != nil {
7911		return true
7912	}
7913
7914	return false
7915}
7916
7917// SetSize allocates a new h.Size and returns the pointer to it.
7918func (h *HostmapRequests) SetSize(v HostmapRequest) {
7919	h.Size = &v
7920}
7921
7922// GetFillMax returns the FillMax field if non-nil, zero value otherwise.
7923func (h *HostmapStyle) GetFillMax() string {
7924	if h == nil || h.FillMax == nil {
7925		return ""
7926	}
7927	return *h.FillMax
7928}
7929
7930// GetFillMaxOk returns a tuple with the FillMax field if it's non-nil, zero value otherwise
7931// and a boolean to check if the value has been set.
7932func (h *HostmapStyle) GetFillMaxOk() (string, bool) {
7933	if h == nil || h.FillMax == nil {
7934		return "", false
7935	}
7936	return *h.FillMax, true
7937}
7938
7939// HasFillMax returns a boolean if a field has been set.
7940func (h *HostmapStyle) HasFillMax() bool {
7941	if h != nil && h.FillMax != nil {
7942		return true
7943	}
7944
7945	return false
7946}
7947
7948// SetFillMax allocates a new h.FillMax and returns the pointer to it.
7949func (h *HostmapStyle) SetFillMax(v string) {
7950	h.FillMax = &v
7951}
7952
7953// GetFillMin returns the FillMin field if non-nil, zero value otherwise.
7954func (h *HostmapStyle) GetFillMin() string {
7955	if h == nil || h.FillMin == nil {
7956		return ""
7957	}
7958	return *h.FillMin
7959}
7960
7961// GetFillMinOk returns a tuple with the FillMin field if it's non-nil, zero value otherwise
7962// and a boolean to check if the value has been set.
7963func (h *HostmapStyle) GetFillMinOk() (string, bool) {
7964	if h == nil || h.FillMin == nil {
7965		return "", false
7966	}
7967	return *h.FillMin, true
7968}
7969
7970// HasFillMin returns a boolean if a field has been set.
7971func (h *HostmapStyle) HasFillMin() bool {
7972	if h != nil && h.FillMin != nil {
7973		return true
7974	}
7975
7976	return false
7977}
7978
7979// SetFillMin allocates a new h.FillMin and returns the pointer to it.
7980func (h *HostmapStyle) SetFillMin(v string) {
7981	h.FillMin = &v
7982}
7983
7984// GetPalette returns the Palette field if non-nil, zero value otherwise.
7985func (h *HostmapStyle) GetPalette() string {
7986	if h == nil || h.Palette == nil {
7987		return ""
7988	}
7989	return *h.Palette
7990}
7991
7992// GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise
7993// and a boolean to check if the value has been set.
7994func (h *HostmapStyle) GetPaletteOk() (string, bool) {
7995	if h == nil || h.Palette == nil {
7996		return "", false
7997	}
7998	return *h.Palette, true
7999}
8000
8001// HasPalette returns a boolean if a field has been set.
8002func (h *HostmapStyle) HasPalette() bool {
8003	if h != nil && h.Palette != nil {
8004		return true
8005	}
8006
8007	return false
8008}
8009
8010// SetPalette allocates a new h.Palette and returns the pointer to it.
8011func (h *HostmapStyle) SetPalette(v string) {
8012	h.Palette = &v
8013}
8014
8015// GetPaletteFlip returns the PaletteFlip field if non-nil, zero value otherwise.
8016func (h *HostmapStyle) GetPaletteFlip() bool {
8017	if h == nil || h.PaletteFlip == nil {
8018		return false
8019	}
8020	return *h.PaletteFlip
8021}
8022
8023// GetPaletteFlipOk returns a tuple with the PaletteFlip field if it's non-nil, zero value otherwise
8024// and a boolean to check if the value has been set.
8025func (h *HostmapStyle) GetPaletteFlipOk() (bool, bool) {
8026	if h == nil || h.PaletteFlip == nil {
8027		return false, false
8028	}
8029	return *h.PaletteFlip, true
8030}
8031
8032// HasPaletteFlip returns a boolean if a field has been set.
8033func (h *HostmapStyle) HasPaletteFlip() bool {
8034	if h != nil && h.PaletteFlip != nil {
8035		return true
8036	}
8037
8038	return false
8039}
8040
8041// SetPaletteFlip allocates a new h.PaletteFlip and returns the pointer to it.
8042func (h *HostmapStyle) SetPaletteFlip(v bool) {
8043	h.PaletteFlip = &v
8044}
8045
8046// GetType returns the Type field if non-nil, zero value otherwise.
8047func (i *IframeDefinition) GetType() string {
8048	if i == nil || i.Type == nil {
8049		return ""
8050	}
8051	return *i.Type
8052}
8053
8054// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
8055// and a boolean to check if the value has been set.
8056func (i *IframeDefinition) GetTypeOk() (string, bool) {
8057	if i == nil || i.Type == nil {
8058		return "", false
8059	}
8060	return *i.Type, true
8061}
8062
8063// HasType returns a boolean if a field has been set.
8064func (i *IframeDefinition) HasType() bool {
8065	if i != nil && i.Type != nil {
8066		return true
8067	}
8068
8069	return false
8070}
8071
8072// SetType allocates a new i.Type and returns the pointer to it.
8073func (i *IframeDefinition) SetType(v string) {
8074	i.Type = &v
8075}
8076
8077// GetUrl returns the Url field if non-nil, zero value otherwise.
8078func (i *IframeDefinition) GetUrl() string {
8079	if i == nil || i.Url == nil {
8080		return ""
8081	}
8082	return *i.Url
8083}
8084
8085// GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
8086// and a boolean to check if the value has been set.
8087func (i *IframeDefinition) GetUrlOk() (string, bool) {
8088	if i == nil || i.Url == nil {
8089		return "", false
8090	}
8091	return *i.Url, true
8092}
8093
8094// HasUrl returns a boolean if a field has been set.
8095func (i *IframeDefinition) HasUrl() bool {
8096	if i != nil && i.Url != nil {
8097		return true
8098	}
8099
8100	return false
8101}
8102
8103// SetUrl allocates a new i.Url and returns the pointer to it.
8104func (i *IframeDefinition) SetUrl(v string) {
8105	i.Url = &v
8106}
8107
8108// GetMargin returns the Margin field if non-nil, zero value otherwise.
8109func (i *ImageDefinition) GetMargin() string {
8110	if i == nil || i.Margin == nil {
8111		return ""
8112	}
8113	return *i.Margin
8114}
8115
8116// GetMarginOk returns a tuple with the Margin field if it's non-nil, zero value otherwise
8117// and a boolean to check if the value has been set.
8118func (i *ImageDefinition) GetMarginOk() (string, bool) {
8119	if i == nil || i.Margin == nil {
8120		return "", false
8121	}
8122	return *i.Margin, true
8123}
8124
8125// HasMargin returns a boolean if a field has been set.
8126func (i *ImageDefinition) HasMargin() bool {
8127	if i != nil && i.Margin != nil {
8128		return true
8129	}
8130
8131	return false
8132}
8133
8134// SetMargin allocates a new i.Margin and returns the pointer to it.
8135func (i *ImageDefinition) SetMargin(v string) {
8136	i.Margin = &v
8137}
8138
8139// GetSizing returns the Sizing field if non-nil, zero value otherwise.
8140func (i *ImageDefinition) GetSizing() string {
8141	if i == nil || i.Sizing == nil {
8142		return ""
8143	}
8144	return *i.Sizing
8145}
8146
8147// GetSizingOk returns a tuple with the Sizing field if it's non-nil, zero value otherwise
8148// and a boolean to check if the value has been set.
8149func (i *ImageDefinition) GetSizingOk() (string, bool) {
8150	if i == nil || i.Sizing == nil {
8151		return "", false
8152	}
8153	return *i.Sizing, true
8154}
8155
8156// HasSizing returns a boolean if a field has been set.
8157func (i *ImageDefinition) HasSizing() bool {
8158	if i != nil && i.Sizing != nil {
8159		return true
8160	}
8161
8162	return false
8163}
8164
8165// SetSizing allocates a new i.Sizing and returns the pointer to it.
8166func (i *ImageDefinition) SetSizing(v string) {
8167	i.Sizing = &v
8168}
8169
8170// GetType returns the Type field if non-nil, zero value otherwise.
8171func (i *ImageDefinition) GetType() string {
8172	if i == nil || i.Type == nil {
8173		return ""
8174	}
8175	return *i.Type
8176}
8177
8178// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
8179// and a boolean to check if the value has been set.
8180func (i *ImageDefinition) GetTypeOk() (string, bool) {
8181	if i == nil || i.Type == nil {
8182		return "", false
8183	}
8184	return *i.Type, true
8185}
8186
8187// HasType returns a boolean if a field has been set.
8188func (i *ImageDefinition) HasType() bool {
8189	if i != nil && i.Type != nil {
8190		return true
8191	}
8192
8193	return false
8194}
8195
8196// SetType allocates a new i.Type and returns the pointer to it.
8197func (i *ImageDefinition) SetType(v string) {
8198	i.Type = &v
8199}
8200
8201// GetUrl returns the Url field if non-nil, zero value otherwise.
8202func (i *ImageDefinition) GetUrl() string {
8203	if i == nil || i.Url == nil {
8204		return ""
8205	}
8206	return *i.Url
8207}
8208
8209// GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
8210// and a boolean to check if the value has been set.
8211func (i *ImageDefinition) GetUrlOk() (string, bool) {
8212	if i == nil || i.Url == nil {
8213		return "", false
8214	}
8215	return *i.Url, true
8216}
8217
8218// HasUrl returns a boolean if a field has been set.
8219func (i *ImageDefinition) HasUrl() bool {
8220	if i != nil && i.Url != nil {
8221		return true
8222	}
8223
8224	return false
8225}
8226
8227// SetUrl allocates a new i.Url and returns the pointer to it.
8228func (i *ImageDefinition) SetUrl(v string) {
8229	i.Url = &v
8230}
8231
8232// GetAccountID returns the AccountID field if non-nil, zero value otherwise.
8233func (i *IntegrationAWSAccount) GetAccountID() string {
8234	if i == nil || i.AccountID == nil {
8235		return ""
8236	}
8237	return *i.AccountID
8238}
8239
8240// GetAccountIDOk returns a tuple with the AccountID field if it's non-nil, zero value otherwise
8241// and a boolean to check if the value has been set.
8242func (i *IntegrationAWSAccount) GetAccountIDOk() (string, bool) {
8243	if i == nil || i.AccountID == nil {
8244		return "", false
8245	}
8246	return *i.AccountID, true
8247}
8248
8249// HasAccountID returns a boolean if a field has been set.
8250func (i *IntegrationAWSAccount) HasAccountID() bool {
8251	if i != nil && i.AccountID != nil {
8252		return true
8253	}
8254
8255	return false
8256}
8257
8258// SetAccountID allocates a new i.AccountID and returns the pointer to it.
8259func (i *IntegrationAWSAccount) SetAccountID(v string) {
8260	i.AccountID = &v
8261}
8262
8263// GetRoleName returns the RoleName field if non-nil, zero value otherwise.
8264func (i *IntegrationAWSAccount) GetRoleName() string {
8265	if i == nil || i.RoleName == nil {
8266		return ""
8267	}
8268	return *i.RoleName
8269}
8270
8271// GetRoleNameOk returns a tuple with the RoleName field if it's non-nil, zero value otherwise
8272// and a boolean to check if the value has been set.
8273func (i *IntegrationAWSAccount) GetRoleNameOk() (string, bool) {
8274	if i == nil || i.RoleName == nil {
8275		return "", false
8276	}
8277	return *i.RoleName, true
8278}
8279
8280// HasRoleName returns a boolean if a field has been set.
8281func (i *IntegrationAWSAccount) HasRoleName() bool {
8282	if i != nil && i.RoleName != nil {
8283		return true
8284	}
8285
8286	return false
8287}
8288
8289// SetRoleName allocates a new i.RoleName and returns the pointer to it.
8290func (i *IntegrationAWSAccount) SetRoleName(v string) {
8291	i.RoleName = &v
8292}
8293
8294// GetAccountID returns the AccountID field if non-nil, zero value otherwise.
8295func (i *IntegrationAWSAccountDeleteRequest) GetAccountID() string {
8296	if i == nil || i.AccountID == nil {
8297		return ""
8298	}
8299	return *i.AccountID
8300}
8301
8302// GetAccountIDOk returns a tuple with the AccountID field if it's non-nil, zero value otherwise
8303// and a boolean to check if the value has been set.
8304func (i *IntegrationAWSAccountDeleteRequest) GetAccountIDOk() (string, bool) {
8305	if i == nil || i.AccountID == nil {
8306		return "", false
8307	}
8308	return *i.AccountID, true
8309}
8310
8311// HasAccountID returns a boolean if a field has been set.
8312func (i *IntegrationAWSAccountDeleteRequest) HasAccountID() bool {
8313	if i != nil && i.AccountID != nil {
8314		return true
8315	}
8316
8317	return false
8318}
8319
8320// SetAccountID allocates a new i.AccountID and returns the pointer to it.
8321func (i *IntegrationAWSAccountDeleteRequest) SetAccountID(v string) {
8322	i.AccountID = &v
8323}
8324
8325// GetRoleName returns the RoleName field if non-nil, zero value otherwise.
8326func (i *IntegrationAWSAccountDeleteRequest) GetRoleName() string {
8327	if i == nil || i.RoleName == nil {
8328		return ""
8329	}
8330	return *i.RoleName
8331}
8332
8333// GetRoleNameOk returns a tuple with the RoleName field if it's non-nil, zero value otherwise
8334// and a boolean to check if the value has been set.
8335func (i *IntegrationAWSAccountDeleteRequest) GetRoleNameOk() (string, bool) {
8336	if i == nil || i.RoleName == nil {
8337		return "", false
8338	}
8339	return *i.RoleName, true
8340}
8341
8342// HasRoleName returns a boolean if a field has been set.
8343func (i *IntegrationAWSAccountDeleteRequest) HasRoleName() bool {
8344	if i != nil && i.RoleName != nil {
8345		return true
8346	}
8347
8348	return false
8349}
8350
8351// SetRoleName allocates a new i.RoleName and returns the pointer to it.
8352func (i *IntegrationAWSAccountDeleteRequest) SetRoleName(v string) {
8353	i.RoleName = &v
8354}
8355
8356// GetClientEmail returns the ClientEmail field if non-nil, zero value otherwise.
8357func (i *IntegrationGCP) GetClientEmail() string {
8358	if i == nil || i.ClientEmail == nil {
8359		return ""
8360	}
8361	return *i.ClientEmail
8362}
8363
8364// GetClientEmailOk returns a tuple with the ClientEmail field if it's non-nil, zero value otherwise
8365// and a boolean to check if the value has been set.
8366func (i *IntegrationGCP) GetClientEmailOk() (string, bool) {
8367	if i == nil || i.ClientEmail == nil {
8368		return "", false
8369	}
8370	return *i.ClientEmail, true
8371}
8372
8373// HasClientEmail returns a boolean if a field has been set.
8374func (i *IntegrationGCP) HasClientEmail() bool {
8375	if i != nil && i.ClientEmail != nil {
8376		return true
8377	}
8378
8379	return false
8380}
8381
8382// SetClientEmail allocates a new i.ClientEmail and returns the pointer to it.
8383func (i *IntegrationGCP) SetClientEmail(v string) {
8384	i.ClientEmail = &v
8385}
8386
8387// GetHostFilters returns the HostFilters field if non-nil, zero value otherwise.
8388func (i *IntegrationGCP) GetHostFilters() string {
8389	if i == nil || i.HostFilters == nil {
8390		return ""
8391	}
8392	return *i.HostFilters
8393}
8394
8395// GetHostFiltersOk returns a tuple with the HostFilters field if it's non-nil, zero value otherwise
8396// and a boolean to check if the value has been set.
8397func (i *IntegrationGCP) GetHostFiltersOk() (string, bool) {
8398	if i == nil || i.HostFilters == nil {
8399		return "", false
8400	}
8401	return *i.HostFilters, true
8402}
8403
8404// HasHostFilters returns a boolean if a field has been set.
8405func (i *IntegrationGCP) HasHostFilters() bool {
8406	if i != nil && i.HostFilters != nil {
8407		return true
8408	}
8409
8410	return false
8411}
8412
8413// SetHostFilters allocates a new i.HostFilters and returns the pointer to it.
8414func (i *IntegrationGCP) SetHostFilters(v string) {
8415	i.HostFilters = &v
8416}
8417
8418// GetProjectID returns the ProjectID field if non-nil, zero value otherwise.
8419func (i *IntegrationGCP) GetProjectID() string {
8420	if i == nil || i.ProjectID == nil {
8421		return ""
8422	}
8423	return *i.ProjectID
8424}
8425
8426// GetProjectIDOk returns a tuple with the ProjectID field if it's non-nil, zero value otherwise
8427// and a boolean to check if the value has been set.
8428func (i *IntegrationGCP) GetProjectIDOk() (string, bool) {
8429	if i == nil || i.ProjectID == nil {
8430		return "", false
8431	}
8432	return *i.ProjectID, true
8433}
8434
8435// HasProjectID returns a boolean if a field has been set.
8436func (i *IntegrationGCP) HasProjectID() bool {
8437	if i != nil && i.ProjectID != nil {
8438		return true
8439	}
8440
8441	return false
8442}
8443
8444// SetProjectID allocates a new i.ProjectID and returns the pointer to it.
8445func (i *IntegrationGCP) SetProjectID(v string) {
8446	i.ProjectID = &v
8447}
8448
8449// GetAuthProviderX509CertURL returns the AuthProviderX509CertURL field if non-nil, zero value otherwise.
8450func (i *IntegrationGCPCreateRequest) GetAuthProviderX509CertURL() string {
8451	if i == nil || i.AuthProviderX509CertURL == nil {
8452		return ""
8453	}
8454	return *i.AuthProviderX509CertURL
8455}
8456
8457// GetAuthProviderX509CertURLOk returns a tuple with the AuthProviderX509CertURL field if it's non-nil, zero value otherwise
8458// and a boolean to check if the value has been set.
8459func (i *IntegrationGCPCreateRequest) GetAuthProviderX509CertURLOk() (string, bool) {
8460	if i == nil || i.AuthProviderX509CertURL == nil {
8461		return "", false
8462	}
8463	return *i.AuthProviderX509CertURL, true
8464}
8465
8466// HasAuthProviderX509CertURL returns a boolean if a field has been set.
8467func (i *IntegrationGCPCreateRequest) HasAuthProviderX509CertURL() bool {
8468	if i != nil && i.AuthProviderX509CertURL != nil {
8469		return true
8470	}
8471
8472	return false
8473}
8474
8475// SetAuthProviderX509CertURL allocates a new i.AuthProviderX509CertURL and returns the pointer to it.
8476func (i *IntegrationGCPCreateRequest) SetAuthProviderX509CertURL(v string) {
8477	i.AuthProviderX509CertURL = &v
8478}
8479
8480// GetAuthURI returns the AuthURI field if non-nil, zero value otherwise.
8481func (i *IntegrationGCPCreateRequest) GetAuthURI() string {
8482	if i == nil || i.AuthURI == nil {
8483		return ""
8484	}
8485	return *i.AuthURI
8486}
8487
8488// GetAuthURIOk returns a tuple with the AuthURI field if it's non-nil, zero value otherwise
8489// and a boolean to check if the value has been set.
8490func (i *IntegrationGCPCreateRequest) GetAuthURIOk() (string, bool) {
8491	if i == nil || i.AuthURI == nil {
8492		return "", false
8493	}
8494	return *i.AuthURI, true
8495}
8496
8497// HasAuthURI returns a boolean if a field has been set.
8498func (i *IntegrationGCPCreateRequest) HasAuthURI() bool {
8499	if i != nil && i.AuthURI != nil {
8500		return true
8501	}
8502
8503	return false
8504}
8505
8506// SetAuthURI allocates a new i.AuthURI and returns the pointer to it.
8507func (i *IntegrationGCPCreateRequest) SetAuthURI(v string) {
8508	i.AuthURI = &v
8509}
8510
8511// GetClientEmail returns the ClientEmail field if non-nil, zero value otherwise.
8512func (i *IntegrationGCPCreateRequest) GetClientEmail() string {
8513	if i == nil || i.ClientEmail == nil {
8514		return ""
8515	}
8516	return *i.ClientEmail
8517}
8518
8519// GetClientEmailOk returns a tuple with the ClientEmail field if it's non-nil, zero value otherwise
8520// and a boolean to check if the value has been set.
8521func (i *IntegrationGCPCreateRequest) GetClientEmailOk() (string, bool) {
8522	if i == nil || i.ClientEmail == nil {
8523		return "", false
8524	}
8525	return *i.ClientEmail, true
8526}
8527
8528// HasClientEmail returns a boolean if a field has been set.
8529func (i *IntegrationGCPCreateRequest) HasClientEmail() bool {
8530	if i != nil && i.ClientEmail != nil {
8531		return true
8532	}
8533
8534	return false
8535}
8536
8537// SetClientEmail allocates a new i.ClientEmail and returns the pointer to it.
8538func (i *IntegrationGCPCreateRequest) SetClientEmail(v string) {
8539	i.ClientEmail = &v
8540}
8541
8542// GetClientID returns the ClientID field if non-nil, zero value otherwise.
8543func (i *IntegrationGCPCreateRequest) GetClientID() string {
8544	if i == nil || i.ClientID == nil {
8545		return ""
8546	}
8547	return *i.ClientID
8548}
8549
8550// GetClientIDOk returns a tuple with the ClientID field if it's non-nil, zero value otherwise
8551// and a boolean to check if the value has been set.
8552func (i *IntegrationGCPCreateRequest) GetClientIDOk() (string, bool) {
8553	if i == nil || i.ClientID == nil {
8554		return "", false
8555	}
8556	return *i.ClientID, true
8557}
8558
8559// HasClientID returns a boolean if a field has been set.
8560func (i *IntegrationGCPCreateRequest) HasClientID() bool {
8561	if i != nil && i.ClientID != nil {
8562		return true
8563	}
8564
8565	return false
8566}
8567
8568// SetClientID allocates a new i.ClientID and returns the pointer to it.
8569func (i *IntegrationGCPCreateRequest) SetClientID(v string) {
8570	i.ClientID = &v
8571}
8572
8573// GetClientX509CertURL returns the ClientX509CertURL field if non-nil, zero value otherwise.
8574func (i *IntegrationGCPCreateRequest) GetClientX509CertURL() string {
8575	if i == nil || i.ClientX509CertURL == nil {
8576		return ""
8577	}
8578	return *i.ClientX509CertURL
8579}
8580
8581// GetClientX509CertURLOk returns a tuple with the ClientX509CertURL field if it's non-nil, zero value otherwise
8582// and a boolean to check if the value has been set.
8583func (i *IntegrationGCPCreateRequest) GetClientX509CertURLOk() (string, bool) {
8584	if i == nil || i.ClientX509CertURL == nil {
8585		return "", false
8586	}
8587	return *i.ClientX509CertURL, true
8588}
8589
8590// HasClientX509CertURL returns a boolean if a field has been set.
8591func (i *IntegrationGCPCreateRequest) HasClientX509CertURL() bool {
8592	if i != nil && i.ClientX509CertURL != nil {
8593		return true
8594	}
8595
8596	return false
8597}
8598
8599// SetClientX509CertURL allocates a new i.ClientX509CertURL and returns the pointer to it.
8600func (i *IntegrationGCPCreateRequest) SetClientX509CertURL(v string) {
8601	i.ClientX509CertURL = &v
8602}
8603
8604// GetHostFilters returns the HostFilters field if non-nil, zero value otherwise.
8605func (i *IntegrationGCPCreateRequest) GetHostFilters() string {
8606	if i == nil || i.HostFilters == nil {
8607		return ""
8608	}
8609	return *i.HostFilters
8610}
8611
8612// GetHostFiltersOk returns a tuple with the HostFilters field if it's non-nil, zero value otherwise
8613// and a boolean to check if the value has been set.
8614func (i *IntegrationGCPCreateRequest) GetHostFiltersOk() (string, bool) {
8615	if i == nil || i.HostFilters == nil {
8616		return "", false
8617	}
8618	return *i.HostFilters, true
8619}
8620
8621// HasHostFilters returns a boolean if a field has been set.
8622func (i *IntegrationGCPCreateRequest) HasHostFilters() bool {
8623	if i != nil && i.HostFilters != nil {
8624		return true
8625	}
8626
8627	return false
8628}
8629
8630// SetHostFilters allocates a new i.HostFilters and returns the pointer to it.
8631func (i *IntegrationGCPCreateRequest) SetHostFilters(v string) {
8632	i.HostFilters = &v
8633}
8634
8635// GetPrivateKey returns the PrivateKey field if non-nil, zero value otherwise.
8636func (i *IntegrationGCPCreateRequest) GetPrivateKey() string {
8637	if i == nil || i.PrivateKey == nil {
8638		return ""
8639	}
8640	return *i.PrivateKey
8641}
8642
8643// GetPrivateKeyOk returns a tuple with the PrivateKey field if it's non-nil, zero value otherwise
8644// and a boolean to check if the value has been set.
8645func (i *IntegrationGCPCreateRequest) GetPrivateKeyOk() (string, bool) {
8646	if i == nil || i.PrivateKey == nil {
8647		return "", false
8648	}
8649	return *i.PrivateKey, true
8650}
8651
8652// HasPrivateKey returns a boolean if a field has been set.
8653func (i *IntegrationGCPCreateRequest) HasPrivateKey() bool {
8654	if i != nil && i.PrivateKey != nil {
8655		return true
8656	}
8657
8658	return false
8659}
8660
8661// SetPrivateKey allocates a new i.PrivateKey and returns the pointer to it.
8662func (i *IntegrationGCPCreateRequest) SetPrivateKey(v string) {
8663	i.PrivateKey = &v
8664}
8665
8666// GetPrivateKeyID returns the PrivateKeyID field if non-nil, zero value otherwise.
8667func (i *IntegrationGCPCreateRequest) GetPrivateKeyID() string {
8668	if i == nil || i.PrivateKeyID == nil {
8669		return ""
8670	}
8671	return *i.PrivateKeyID
8672}
8673
8674// GetPrivateKeyIDOk returns a tuple with the PrivateKeyID field if it's non-nil, zero value otherwise
8675// and a boolean to check if the value has been set.
8676func (i *IntegrationGCPCreateRequest) GetPrivateKeyIDOk() (string, bool) {
8677	if i == nil || i.PrivateKeyID == nil {
8678		return "", false
8679	}
8680	return *i.PrivateKeyID, true
8681}
8682
8683// HasPrivateKeyID returns a boolean if a field has been set.
8684func (i *IntegrationGCPCreateRequest) HasPrivateKeyID() bool {
8685	if i != nil && i.PrivateKeyID != nil {
8686		return true
8687	}
8688
8689	return false
8690}
8691
8692// SetPrivateKeyID allocates a new i.PrivateKeyID and returns the pointer to it.
8693func (i *IntegrationGCPCreateRequest) SetPrivateKeyID(v string) {
8694	i.PrivateKeyID = &v
8695}
8696
8697// GetProjectID returns the ProjectID field if non-nil, zero value otherwise.
8698func (i *IntegrationGCPCreateRequest) GetProjectID() string {
8699	if i == nil || i.ProjectID == nil {
8700		return ""
8701	}
8702	return *i.ProjectID
8703}
8704
8705// GetProjectIDOk returns a tuple with the ProjectID field if it's non-nil, zero value otherwise
8706// and a boolean to check if the value has been set.
8707func (i *IntegrationGCPCreateRequest) GetProjectIDOk() (string, bool) {
8708	if i == nil || i.ProjectID == nil {
8709		return "", false
8710	}
8711	return *i.ProjectID, true
8712}
8713
8714// HasProjectID returns a boolean if a field has been set.
8715func (i *IntegrationGCPCreateRequest) HasProjectID() bool {
8716	if i != nil && i.ProjectID != nil {
8717		return true
8718	}
8719
8720	return false
8721}
8722
8723// SetProjectID allocates a new i.ProjectID and returns the pointer to it.
8724func (i *IntegrationGCPCreateRequest) SetProjectID(v string) {
8725	i.ProjectID = &v
8726}
8727
8728// GetTokenURI returns the TokenURI field if non-nil, zero value otherwise.
8729func (i *IntegrationGCPCreateRequest) GetTokenURI() string {
8730	if i == nil || i.TokenURI == nil {
8731		return ""
8732	}
8733	return *i.TokenURI
8734}
8735
8736// GetTokenURIOk returns a tuple with the TokenURI field if it's non-nil, zero value otherwise
8737// and a boolean to check if the value has been set.
8738func (i *IntegrationGCPCreateRequest) GetTokenURIOk() (string, bool) {
8739	if i == nil || i.TokenURI == nil {
8740		return "", false
8741	}
8742	return *i.TokenURI, true
8743}
8744
8745// HasTokenURI returns a boolean if a field has been set.
8746func (i *IntegrationGCPCreateRequest) HasTokenURI() bool {
8747	if i != nil && i.TokenURI != nil {
8748		return true
8749	}
8750
8751	return false
8752}
8753
8754// SetTokenURI allocates a new i.TokenURI and returns the pointer to it.
8755func (i *IntegrationGCPCreateRequest) SetTokenURI(v string) {
8756	i.TokenURI = &v
8757}
8758
8759// GetType returns the Type field if non-nil, zero value otherwise.
8760func (i *IntegrationGCPCreateRequest) GetType() string {
8761	if i == nil || i.Type == nil {
8762		return ""
8763	}
8764	return *i.Type
8765}
8766
8767// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
8768// and a boolean to check if the value has been set.
8769func (i *IntegrationGCPCreateRequest) GetTypeOk() (string, bool) {
8770	if i == nil || i.Type == nil {
8771		return "", false
8772	}
8773	return *i.Type, true
8774}
8775
8776// HasType returns a boolean if a field has been set.
8777func (i *IntegrationGCPCreateRequest) HasType() bool {
8778	if i != nil && i.Type != nil {
8779		return true
8780	}
8781
8782	return false
8783}
8784
8785// SetType allocates a new i.Type and returns the pointer to it.
8786func (i *IntegrationGCPCreateRequest) SetType(v string) {
8787	i.Type = &v
8788}
8789
8790// GetClientEmail returns the ClientEmail field if non-nil, zero value otherwise.
8791func (i *IntegrationGCPDeleteRequest) GetClientEmail() string {
8792	if i == nil || i.ClientEmail == nil {
8793		return ""
8794	}
8795	return *i.ClientEmail
8796}
8797
8798// GetClientEmailOk returns a tuple with the ClientEmail field if it's non-nil, zero value otherwise
8799// and a boolean to check if the value has been set.
8800func (i *IntegrationGCPDeleteRequest) GetClientEmailOk() (string, bool) {
8801	if i == nil || i.ClientEmail == nil {
8802		return "", false
8803	}
8804	return *i.ClientEmail, true
8805}
8806
8807// HasClientEmail returns a boolean if a field has been set.
8808func (i *IntegrationGCPDeleteRequest) HasClientEmail() bool {
8809	if i != nil && i.ClientEmail != nil {
8810		return true
8811	}
8812
8813	return false
8814}
8815
8816// SetClientEmail allocates a new i.ClientEmail and returns the pointer to it.
8817func (i *IntegrationGCPDeleteRequest) SetClientEmail(v string) {
8818	i.ClientEmail = &v
8819}
8820
8821// GetProjectID returns the ProjectID field if non-nil, zero value otherwise.
8822func (i *IntegrationGCPDeleteRequest) GetProjectID() string {
8823	if i == nil || i.ProjectID == nil {
8824		return ""
8825	}
8826	return *i.ProjectID
8827}
8828
8829// GetProjectIDOk returns a tuple with the ProjectID field if it's non-nil, zero value otherwise
8830// and a boolean to check if the value has been set.
8831func (i *IntegrationGCPDeleteRequest) GetProjectIDOk() (string, bool) {
8832	if i == nil || i.ProjectID == nil {
8833		return "", false
8834	}
8835	return *i.ProjectID, true
8836}
8837
8838// HasProjectID returns a boolean if a field has been set.
8839func (i *IntegrationGCPDeleteRequest) HasProjectID() bool {
8840	if i != nil && i.ProjectID != nil {
8841		return true
8842	}
8843
8844	return false
8845}
8846
8847// SetProjectID allocates a new i.ProjectID and returns the pointer to it.
8848func (i *IntegrationGCPDeleteRequest) SetProjectID(v string) {
8849	i.ProjectID = &v
8850}
8851
8852// GetClientEmail returns the ClientEmail field if non-nil, zero value otherwise.
8853func (i *IntegrationGCPUpdateRequest) GetClientEmail() string {
8854	if i == nil || i.ClientEmail == nil {
8855		return ""
8856	}
8857	return *i.ClientEmail
8858}
8859
8860// GetClientEmailOk returns a tuple with the ClientEmail field if it's non-nil, zero value otherwise
8861// and a boolean to check if the value has been set.
8862func (i *IntegrationGCPUpdateRequest) GetClientEmailOk() (string, bool) {
8863	if i == nil || i.ClientEmail == nil {
8864		return "", false
8865	}
8866	return *i.ClientEmail, true
8867}
8868
8869// HasClientEmail returns a boolean if a field has been set.
8870func (i *IntegrationGCPUpdateRequest) HasClientEmail() bool {
8871	if i != nil && i.ClientEmail != nil {
8872		return true
8873	}
8874
8875	return false
8876}
8877
8878// SetClientEmail allocates a new i.ClientEmail and returns the pointer to it.
8879func (i *IntegrationGCPUpdateRequest) SetClientEmail(v string) {
8880	i.ClientEmail = &v
8881}
8882
8883// GetHostFilters returns the HostFilters field if non-nil, zero value otherwise.
8884func (i *IntegrationGCPUpdateRequest) GetHostFilters() string {
8885	if i == nil || i.HostFilters == nil {
8886		return ""
8887	}
8888	return *i.HostFilters
8889}
8890
8891// GetHostFiltersOk returns a tuple with the HostFilters field if it's non-nil, zero value otherwise
8892// and a boolean to check if the value has been set.
8893func (i *IntegrationGCPUpdateRequest) GetHostFiltersOk() (string, bool) {
8894	if i == nil || i.HostFilters == nil {
8895		return "", false
8896	}
8897	return *i.HostFilters, true
8898}
8899
8900// HasHostFilters returns a boolean if a field has been set.
8901func (i *IntegrationGCPUpdateRequest) HasHostFilters() bool {
8902	if i != nil && i.HostFilters != nil {
8903		return true
8904	}
8905
8906	return false
8907}
8908
8909// SetHostFilters allocates a new i.HostFilters and returns the pointer to it.
8910func (i *IntegrationGCPUpdateRequest) SetHostFilters(v string) {
8911	i.HostFilters = &v
8912}
8913
8914// GetProjectID returns the ProjectID field if non-nil, zero value otherwise.
8915func (i *IntegrationGCPUpdateRequest) GetProjectID() string {
8916	if i == nil || i.ProjectID == nil {
8917		return ""
8918	}
8919	return *i.ProjectID
8920}
8921
8922// GetProjectIDOk returns a tuple with the ProjectID field if it's non-nil, zero value otherwise
8923// and a boolean to check if the value has been set.
8924func (i *IntegrationGCPUpdateRequest) GetProjectIDOk() (string, bool) {
8925	if i == nil || i.ProjectID == nil {
8926		return "", false
8927	}
8928	return *i.ProjectID, true
8929}
8930
8931// HasProjectID returns a boolean if a field has been set.
8932func (i *IntegrationGCPUpdateRequest) HasProjectID() bool {
8933	if i != nil && i.ProjectID != nil {
8934		return true
8935	}
8936
8937	return false
8938}
8939
8940// SetProjectID allocates a new i.ProjectID and returns the pointer to it.
8941func (i *IntegrationGCPUpdateRequest) SetProjectID(v string) {
8942	i.ProjectID = &v
8943}
8944
8945// GetAPIToken returns the APIToken field if non-nil, zero value otherwise.
8946func (i *integrationPD) GetAPIToken() string {
8947	if i == nil || i.APIToken == nil {
8948		return ""
8949	}
8950	return *i.APIToken
8951}
8952
8953// GetAPITokenOk returns a tuple with the APIToken field if it's non-nil, zero value otherwise
8954// and a boolean to check if the value has been set.
8955func (i *integrationPD) GetAPITokenOk() (string, bool) {
8956	if i == nil || i.APIToken == nil {
8957		return "", false
8958	}
8959	return *i.APIToken, true
8960}
8961
8962// HasAPIToken returns a boolean if a field has been set.
8963func (i *integrationPD) HasAPIToken() bool {
8964	if i != nil && i.APIToken != nil {
8965		return true
8966	}
8967
8968	return false
8969}
8970
8971// SetAPIToken allocates a new i.APIToken and returns the pointer to it.
8972func (i *integrationPD) SetAPIToken(v string) {
8973	i.APIToken = &v
8974}
8975
8976// GetSubdomain returns the Subdomain field if non-nil, zero value otherwise.
8977func (i *integrationPD) GetSubdomain() string {
8978	if i == nil || i.Subdomain == nil {
8979		return ""
8980	}
8981	return *i.Subdomain
8982}
8983
8984// GetSubdomainOk returns a tuple with the Subdomain field if it's non-nil, zero value otherwise
8985// and a boolean to check if the value has been set.
8986func (i *integrationPD) GetSubdomainOk() (string, bool) {
8987	if i == nil || i.Subdomain == nil {
8988		return "", false
8989	}
8990	return *i.Subdomain, true
8991}
8992
8993// HasSubdomain returns a boolean if a field has been set.
8994func (i *integrationPD) HasSubdomain() bool {
8995	if i != nil && i.Subdomain != nil {
8996		return true
8997	}
8998
8999	return false
9000}
9001
9002// SetSubdomain allocates a new i.Subdomain and returns the pointer to it.
9003func (i *integrationPD) SetSubdomain(v string) {
9004	i.Subdomain = &v
9005}
9006
9007// GetAPIToken returns the APIToken field if non-nil, zero value otherwise.
9008func (i *IntegrationPDRequest) GetAPIToken() string {
9009	if i == nil || i.APIToken == nil {
9010		return ""
9011	}
9012	return *i.APIToken
9013}
9014
9015// GetAPITokenOk returns a tuple with the APIToken field if it's non-nil, zero value otherwise
9016// and a boolean to check if the value has been set.
9017func (i *IntegrationPDRequest) GetAPITokenOk() (string, bool) {
9018	if i == nil || i.APIToken == nil {
9019		return "", false
9020	}
9021	return *i.APIToken, true
9022}
9023
9024// HasAPIToken returns a boolean if a field has been set.
9025func (i *IntegrationPDRequest) HasAPIToken() bool {
9026	if i != nil && i.APIToken != nil {
9027		return true
9028	}
9029
9030	return false
9031}
9032
9033// SetAPIToken allocates a new i.APIToken and returns the pointer to it.
9034func (i *IntegrationPDRequest) SetAPIToken(v string) {
9035	i.APIToken = &v
9036}
9037
9038// GetRunCheck returns the RunCheck field if non-nil, zero value otherwise.
9039func (i *IntegrationPDRequest) GetRunCheck() bool {
9040	if i == nil || i.RunCheck == nil {
9041		return false
9042	}
9043	return *i.RunCheck
9044}
9045
9046// GetRunCheckOk returns a tuple with the RunCheck field if it's non-nil, zero value otherwise
9047// and a boolean to check if the value has been set.
9048func (i *IntegrationPDRequest) GetRunCheckOk() (bool, bool) {
9049	if i == nil || i.RunCheck == nil {
9050		return false, false
9051	}
9052	return *i.RunCheck, true
9053}
9054
9055// HasRunCheck returns a boolean if a field has been set.
9056func (i *IntegrationPDRequest) HasRunCheck() bool {
9057	if i != nil && i.RunCheck != nil {
9058		return true
9059	}
9060
9061	return false
9062}
9063
9064// SetRunCheck allocates a new i.RunCheck and returns the pointer to it.
9065func (i *IntegrationPDRequest) SetRunCheck(v bool) {
9066	i.RunCheck = &v
9067}
9068
9069// GetSubdomain returns the Subdomain field if non-nil, zero value otherwise.
9070func (i *IntegrationPDRequest) GetSubdomain() string {
9071	if i == nil || i.Subdomain == nil {
9072		return ""
9073	}
9074	return *i.Subdomain
9075}
9076
9077// GetSubdomainOk returns a tuple with the Subdomain field if it's non-nil, zero value otherwise
9078// and a boolean to check if the value has been set.
9079func (i *IntegrationPDRequest) GetSubdomainOk() (string, bool) {
9080	if i == nil || i.Subdomain == nil {
9081		return "", false
9082	}
9083	return *i.Subdomain, true
9084}
9085
9086// HasSubdomain returns a boolean if a field has been set.
9087func (i *IntegrationPDRequest) HasSubdomain() bool {
9088	if i != nil && i.Subdomain != nil {
9089		return true
9090	}
9091
9092	return false
9093}
9094
9095// SetSubdomain allocates a new i.Subdomain and returns the pointer to it.
9096func (i *IntegrationPDRequest) SetSubdomain(v string) {
9097	i.Subdomain = &v
9098}
9099
9100// GetRunCheck returns the RunCheck field if non-nil, zero value otherwise.
9101func (i *IntegrationSlackRequest) GetRunCheck() bool {
9102	if i == nil || i.RunCheck == nil {
9103		return false
9104	}
9105	return *i.RunCheck
9106}
9107
9108// GetRunCheckOk returns a tuple with the RunCheck field if it's non-nil, zero value otherwise
9109// and a boolean to check if the value has been set.
9110func (i *IntegrationSlackRequest) GetRunCheckOk() (bool, bool) {
9111	if i == nil || i.RunCheck == nil {
9112		return false, false
9113	}
9114	return *i.RunCheck, true
9115}
9116
9117// HasRunCheck returns a boolean if a field has been set.
9118func (i *IntegrationSlackRequest) HasRunCheck() bool {
9119	if i != nil && i.RunCheck != nil {
9120		return true
9121	}
9122
9123	return false
9124}
9125
9126// SetRunCheck allocates a new i.RunCheck and returns the pointer to it.
9127func (i *IntegrationSlackRequest) SetRunCheck(v bool) {
9128	i.RunCheck = &v
9129}
9130
9131// GetID returns the ID field if non-nil, zero value otherwise.
9132func (l *LogSet) GetID() json.Number {
9133	if l == nil || l.ID == nil {
9134		return ""
9135	}
9136	return *l.ID
9137}
9138
9139// GetIDOk returns a tuple with the ID field if it's non-nil, zero value otherwise
9140// and a boolean to check if the value has been set.
9141func (l *LogSet) GetIDOk() (json.Number, bool) {
9142	if l == nil || l.ID == nil {
9143		return "", false
9144	}
9145	return *l.ID, true
9146}
9147
9148// HasID returns a boolean if a field has been set.
9149func (l *LogSet) HasID() bool {
9150	if l != nil && l.ID != nil {
9151		return true
9152	}
9153
9154	return false
9155}
9156
9157// SetID allocates a new l.ID and returns the pointer to it.
9158func (l *LogSet) SetID(v json.Number) {
9159	l.ID = &v
9160}
9161
9162// GetName returns the Name field if non-nil, zero value otherwise.
9163func (l *LogSet) GetName() string {
9164	if l == nil || l.Name == nil {
9165		return ""
9166	}
9167	return *l.Name
9168}
9169
9170// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
9171// and a boolean to check if the value has been set.
9172func (l *LogSet) GetNameOk() (string, bool) {
9173	if l == nil || l.Name == nil {
9174		return "", false
9175	}
9176	return *l.Name, true
9177}
9178
9179// HasName returns a boolean if a field has been set.
9180func (l *LogSet) HasName() bool {
9181	if l != nil && l.Name != nil {
9182		return true
9183	}
9184
9185	return false
9186}
9187
9188// SetName allocates a new l.Name and returns the pointer to it.
9189func (l *LogSet) SetName(v string) {
9190	l.Name = &v
9191}
9192
9193// GetLogset returns the Logset field if non-nil, zero value otherwise.
9194func (l *LogStreamDefinition) GetLogset() string {
9195	if l == nil || l.Logset == nil {
9196		return ""
9197	}
9198	return *l.Logset
9199}
9200
9201// GetLogsetOk returns a tuple with the Logset field if it's non-nil, zero value otherwise
9202// and a boolean to check if the value has been set.
9203func (l *LogStreamDefinition) GetLogsetOk() (string, bool) {
9204	if l == nil || l.Logset == nil {
9205		return "", false
9206	}
9207	return *l.Logset, true
9208}
9209
9210// HasLogset returns a boolean if a field has been set.
9211func (l *LogStreamDefinition) HasLogset() bool {
9212	if l != nil && l.Logset != nil {
9213		return true
9214	}
9215
9216	return false
9217}
9218
9219// SetLogset allocates a new l.Logset and returns the pointer to it.
9220func (l *LogStreamDefinition) SetLogset(v string) {
9221	l.Logset = &v
9222}
9223
9224// GetQuery returns the Query field if non-nil, zero value otherwise.
9225func (l *LogStreamDefinition) GetQuery() string {
9226	if l == nil || l.Query == nil {
9227		return ""
9228	}
9229	return *l.Query
9230}
9231
9232// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
9233// and a boolean to check if the value has been set.
9234func (l *LogStreamDefinition) GetQueryOk() (string, bool) {
9235	if l == nil || l.Query == nil {
9236		return "", false
9237	}
9238	return *l.Query, true
9239}
9240
9241// HasQuery returns a boolean if a field has been set.
9242func (l *LogStreamDefinition) HasQuery() bool {
9243	if l != nil && l.Query != nil {
9244		return true
9245	}
9246
9247	return false
9248}
9249
9250// SetQuery allocates a new l.Query and returns the pointer to it.
9251func (l *LogStreamDefinition) SetQuery(v string) {
9252	l.Query = &v
9253}
9254
9255// GetTime returns the Time field if non-nil, zero value otherwise.
9256func (l *LogStreamDefinition) GetTime() WidgetTime {
9257	if l == nil || l.Time == nil {
9258		return WidgetTime{}
9259	}
9260	return *l.Time
9261}
9262
9263// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
9264// and a boolean to check if the value has been set.
9265func (l *LogStreamDefinition) GetTimeOk() (WidgetTime, bool) {
9266	if l == nil || l.Time == nil {
9267		return WidgetTime{}, false
9268	}
9269	return *l.Time, true
9270}
9271
9272// HasTime returns a boolean if a field has been set.
9273func (l *LogStreamDefinition) HasTime() bool {
9274	if l != nil && l.Time != nil {
9275		return true
9276	}
9277
9278	return false
9279}
9280
9281// SetTime allocates a new l.Time and returns the pointer to it.
9282func (l *LogStreamDefinition) SetTime(v WidgetTime) {
9283	l.Time = &v
9284}
9285
9286// GetTitle returns the Title field if non-nil, zero value otherwise.
9287func (l *LogStreamDefinition) GetTitle() string {
9288	if l == nil || l.Title == nil {
9289		return ""
9290	}
9291	return *l.Title
9292}
9293
9294// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
9295// and a boolean to check if the value has been set.
9296func (l *LogStreamDefinition) GetTitleOk() (string, bool) {
9297	if l == nil || l.Title == nil {
9298		return "", false
9299	}
9300	return *l.Title, true
9301}
9302
9303// HasTitle returns a boolean if a field has been set.
9304func (l *LogStreamDefinition) HasTitle() bool {
9305	if l != nil && l.Title != nil {
9306		return true
9307	}
9308
9309	return false
9310}
9311
9312// SetTitle allocates a new l.Title and returns the pointer to it.
9313func (l *LogStreamDefinition) SetTitle(v string) {
9314	l.Title = &v
9315}
9316
9317// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
9318func (l *LogStreamDefinition) GetTitleAlign() string {
9319	if l == nil || l.TitleAlign == nil {
9320		return ""
9321	}
9322	return *l.TitleAlign
9323}
9324
9325// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
9326// and a boolean to check if the value has been set.
9327func (l *LogStreamDefinition) GetTitleAlignOk() (string, bool) {
9328	if l == nil || l.TitleAlign == nil {
9329		return "", false
9330	}
9331	return *l.TitleAlign, true
9332}
9333
9334// HasTitleAlign returns a boolean if a field has been set.
9335func (l *LogStreamDefinition) HasTitleAlign() bool {
9336	if l != nil && l.TitleAlign != nil {
9337		return true
9338	}
9339
9340	return false
9341}
9342
9343// SetTitleAlign allocates a new l.TitleAlign and returns the pointer to it.
9344func (l *LogStreamDefinition) SetTitleAlign(v string) {
9345	l.TitleAlign = &v
9346}
9347
9348// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
9349func (l *LogStreamDefinition) GetTitleSize() string {
9350	if l == nil || l.TitleSize == nil {
9351		return ""
9352	}
9353	return *l.TitleSize
9354}
9355
9356// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
9357// and a boolean to check if the value has been set.
9358func (l *LogStreamDefinition) GetTitleSizeOk() (string, bool) {
9359	if l == nil || l.TitleSize == nil {
9360		return "", false
9361	}
9362	return *l.TitleSize, true
9363}
9364
9365// HasTitleSize returns a boolean if a field has been set.
9366func (l *LogStreamDefinition) HasTitleSize() bool {
9367	if l != nil && l.TitleSize != nil {
9368		return true
9369	}
9370
9371	return false
9372}
9373
9374// SetTitleSize allocates a new l.TitleSize and returns the pointer to it.
9375func (l *LogStreamDefinition) SetTitleSize(v string) {
9376	l.TitleSize = &v
9377}
9378
9379// GetType returns the Type field if non-nil, zero value otherwise.
9380func (l *LogStreamDefinition) GetType() string {
9381	if l == nil || l.Type == nil {
9382		return ""
9383	}
9384	return *l.Type
9385}
9386
9387// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
9388// and a boolean to check if the value has been set.
9389func (l *LogStreamDefinition) GetTypeOk() (string, bool) {
9390	if l == nil || l.Type == nil {
9391		return "", false
9392	}
9393	return *l.Type, true
9394}
9395
9396// HasType returns a boolean if a field has been set.
9397func (l *LogStreamDefinition) HasType() bool {
9398	if l != nil && l.Type != nil {
9399		return true
9400	}
9401
9402	return false
9403}
9404
9405// SetType allocates a new l.Type and returns the pointer to it.
9406func (l *LogStreamDefinition) SetType(v string) {
9407	l.Type = &v
9408}
9409
9410// GetColorPreference returns the ColorPreference field if non-nil, zero value otherwise.
9411func (m *ManageStatusDefinition) GetColorPreference() string {
9412	if m == nil || m.ColorPreference == nil {
9413		return ""
9414	}
9415	return *m.ColorPreference
9416}
9417
9418// GetColorPreferenceOk returns a tuple with the ColorPreference field if it's non-nil, zero value otherwise
9419// and a boolean to check if the value has been set.
9420func (m *ManageStatusDefinition) GetColorPreferenceOk() (string, bool) {
9421	if m == nil || m.ColorPreference == nil {
9422		return "", false
9423	}
9424	return *m.ColorPreference, true
9425}
9426
9427// HasColorPreference returns a boolean if a field has been set.
9428func (m *ManageStatusDefinition) HasColorPreference() bool {
9429	if m != nil && m.ColorPreference != nil {
9430		return true
9431	}
9432
9433	return false
9434}
9435
9436// SetColorPreference allocates a new m.ColorPreference and returns the pointer to it.
9437func (m *ManageStatusDefinition) SetColorPreference(v string) {
9438	m.ColorPreference = &v
9439}
9440
9441// GetCount returns the Count field if non-nil, zero value otherwise.
9442func (m *ManageStatusDefinition) GetCount() int {
9443	if m == nil || m.Count == nil {
9444		return 0
9445	}
9446	return *m.Count
9447}
9448
9449// GetCountOk returns a tuple with the Count field if it's non-nil, zero value otherwise
9450// and a boolean to check if the value has been set.
9451func (m *ManageStatusDefinition) GetCountOk() (int, bool) {
9452	if m == nil || m.Count == nil {
9453		return 0, false
9454	}
9455	return *m.Count, true
9456}
9457
9458// HasCount returns a boolean if a field has been set.
9459func (m *ManageStatusDefinition) HasCount() bool {
9460	if m != nil && m.Count != nil {
9461		return true
9462	}
9463
9464	return false
9465}
9466
9467// SetCount allocates a new m.Count and returns the pointer to it.
9468func (m *ManageStatusDefinition) SetCount(v int) {
9469	m.Count = &v
9470}
9471
9472// GetDisplayFormat returns the DisplayFormat field if non-nil, zero value otherwise.
9473func (m *ManageStatusDefinition) GetDisplayFormat() string {
9474	if m == nil || m.DisplayFormat == nil {
9475		return ""
9476	}
9477	return *m.DisplayFormat
9478}
9479
9480// GetDisplayFormatOk returns a tuple with the DisplayFormat field if it's non-nil, zero value otherwise
9481// and a boolean to check if the value has been set.
9482func (m *ManageStatusDefinition) GetDisplayFormatOk() (string, bool) {
9483	if m == nil || m.DisplayFormat == nil {
9484		return "", false
9485	}
9486	return *m.DisplayFormat, true
9487}
9488
9489// HasDisplayFormat returns a boolean if a field has been set.
9490func (m *ManageStatusDefinition) HasDisplayFormat() bool {
9491	if m != nil && m.DisplayFormat != nil {
9492		return true
9493	}
9494
9495	return false
9496}
9497
9498// SetDisplayFormat allocates a new m.DisplayFormat and returns the pointer to it.
9499func (m *ManageStatusDefinition) SetDisplayFormat(v string) {
9500	m.DisplayFormat = &v
9501}
9502
9503// GetHideZeroCounts returns the HideZeroCounts field if non-nil, zero value otherwise.
9504func (m *ManageStatusDefinition) GetHideZeroCounts() bool {
9505	if m == nil || m.HideZeroCounts == nil {
9506		return false
9507	}
9508	return *m.HideZeroCounts
9509}
9510
9511// GetHideZeroCountsOk returns a tuple with the HideZeroCounts field if it's non-nil, zero value otherwise
9512// and a boolean to check if the value has been set.
9513func (m *ManageStatusDefinition) GetHideZeroCountsOk() (bool, bool) {
9514	if m == nil || m.HideZeroCounts == nil {
9515		return false, false
9516	}
9517	return *m.HideZeroCounts, true
9518}
9519
9520// HasHideZeroCounts returns a boolean if a field has been set.
9521func (m *ManageStatusDefinition) HasHideZeroCounts() bool {
9522	if m != nil && m.HideZeroCounts != nil {
9523		return true
9524	}
9525
9526	return false
9527}
9528
9529// SetHideZeroCounts allocates a new m.HideZeroCounts and returns the pointer to it.
9530func (m *ManageStatusDefinition) SetHideZeroCounts(v bool) {
9531	m.HideZeroCounts = &v
9532}
9533
9534// GetQuery returns the Query field if non-nil, zero value otherwise.
9535func (m *ManageStatusDefinition) GetQuery() string {
9536	if m == nil || m.Query == nil {
9537		return ""
9538	}
9539	return *m.Query
9540}
9541
9542// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
9543// and a boolean to check if the value has been set.
9544func (m *ManageStatusDefinition) GetQueryOk() (string, bool) {
9545	if m == nil || m.Query == nil {
9546		return "", false
9547	}
9548	return *m.Query, true
9549}
9550
9551// HasQuery returns a boolean if a field has been set.
9552func (m *ManageStatusDefinition) HasQuery() bool {
9553	if m != nil && m.Query != nil {
9554		return true
9555	}
9556
9557	return false
9558}
9559
9560// SetQuery allocates a new m.Query and returns the pointer to it.
9561func (m *ManageStatusDefinition) SetQuery(v string) {
9562	m.Query = &v
9563}
9564
9565// GetSort returns the Sort field if non-nil, zero value otherwise.
9566func (m *ManageStatusDefinition) GetSort() string {
9567	if m == nil || m.Sort == nil {
9568		return ""
9569	}
9570	return *m.Sort
9571}
9572
9573// GetSortOk returns a tuple with the Sort field if it's non-nil, zero value otherwise
9574// and a boolean to check if the value has been set.
9575func (m *ManageStatusDefinition) GetSortOk() (string, bool) {
9576	if m == nil || m.Sort == nil {
9577		return "", false
9578	}
9579	return *m.Sort, true
9580}
9581
9582// HasSort returns a boolean if a field has been set.
9583func (m *ManageStatusDefinition) HasSort() bool {
9584	if m != nil && m.Sort != nil {
9585		return true
9586	}
9587
9588	return false
9589}
9590
9591// SetSort allocates a new m.Sort and returns the pointer to it.
9592func (m *ManageStatusDefinition) SetSort(v string) {
9593	m.Sort = &v
9594}
9595
9596// GetStart returns the Start field if non-nil, zero value otherwise.
9597func (m *ManageStatusDefinition) GetStart() int {
9598	if m == nil || m.Start == nil {
9599		return 0
9600	}
9601	return *m.Start
9602}
9603
9604// GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise
9605// and a boolean to check if the value has been set.
9606func (m *ManageStatusDefinition) GetStartOk() (int, bool) {
9607	if m == nil || m.Start == nil {
9608		return 0, false
9609	}
9610	return *m.Start, true
9611}
9612
9613// HasStart returns a boolean if a field has been set.
9614func (m *ManageStatusDefinition) HasStart() bool {
9615	if m != nil && m.Start != nil {
9616		return true
9617	}
9618
9619	return false
9620}
9621
9622// SetStart allocates a new m.Start and returns the pointer to it.
9623func (m *ManageStatusDefinition) SetStart(v int) {
9624	m.Start = &v
9625}
9626
9627// GetTitle returns the Title field if non-nil, zero value otherwise.
9628func (m *ManageStatusDefinition) GetTitle() string {
9629	if m == nil || m.Title == nil {
9630		return ""
9631	}
9632	return *m.Title
9633}
9634
9635// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
9636// and a boolean to check if the value has been set.
9637func (m *ManageStatusDefinition) GetTitleOk() (string, bool) {
9638	if m == nil || m.Title == nil {
9639		return "", false
9640	}
9641	return *m.Title, true
9642}
9643
9644// HasTitle returns a boolean if a field has been set.
9645func (m *ManageStatusDefinition) HasTitle() bool {
9646	if m != nil && m.Title != nil {
9647		return true
9648	}
9649
9650	return false
9651}
9652
9653// SetTitle allocates a new m.Title and returns the pointer to it.
9654func (m *ManageStatusDefinition) SetTitle(v string) {
9655	m.Title = &v
9656}
9657
9658// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
9659func (m *ManageStatusDefinition) GetTitleAlign() string {
9660	if m == nil || m.TitleAlign == nil {
9661		return ""
9662	}
9663	return *m.TitleAlign
9664}
9665
9666// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
9667// and a boolean to check if the value has been set.
9668func (m *ManageStatusDefinition) GetTitleAlignOk() (string, bool) {
9669	if m == nil || m.TitleAlign == nil {
9670		return "", false
9671	}
9672	return *m.TitleAlign, true
9673}
9674
9675// HasTitleAlign returns a boolean if a field has been set.
9676func (m *ManageStatusDefinition) HasTitleAlign() bool {
9677	if m != nil && m.TitleAlign != nil {
9678		return true
9679	}
9680
9681	return false
9682}
9683
9684// SetTitleAlign allocates a new m.TitleAlign and returns the pointer to it.
9685func (m *ManageStatusDefinition) SetTitleAlign(v string) {
9686	m.TitleAlign = &v
9687}
9688
9689// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
9690func (m *ManageStatusDefinition) GetTitleSize() string {
9691	if m == nil || m.TitleSize == nil {
9692		return ""
9693	}
9694	return *m.TitleSize
9695}
9696
9697// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
9698// and a boolean to check if the value has been set.
9699func (m *ManageStatusDefinition) GetTitleSizeOk() (string, bool) {
9700	if m == nil || m.TitleSize == nil {
9701		return "", false
9702	}
9703	return *m.TitleSize, true
9704}
9705
9706// HasTitleSize returns a boolean if a field has been set.
9707func (m *ManageStatusDefinition) HasTitleSize() bool {
9708	if m != nil && m.TitleSize != nil {
9709		return true
9710	}
9711
9712	return false
9713}
9714
9715// SetTitleSize allocates a new m.TitleSize and returns the pointer to it.
9716func (m *ManageStatusDefinition) SetTitleSize(v string) {
9717	m.TitleSize = &v
9718}
9719
9720// GetType returns the Type field if non-nil, zero value otherwise.
9721func (m *ManageStatusDefinition) GetType() string {
9722	if m == nil || m.Type == nil {
9723		return ""
9724	}
9725	return *m.Type
9726}
9727
9728// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
9729// and a boolean to check if the value has been set.
9730func (m *ManageStatusDefinition) GetTypeOk() (string, bool) {
9731	if m == nil || m.Type == nil {
9732		return "", false
9733	}
9734	return *m.Type, true
9735}
9736
9737// HasType returns a boolean if a field has been set.
9738func (m *ManageStatusDefinition) HasType() bool {
9739	if m != nil && m.Type != nil {
9740		return true
9741	}
9742
9743	return false
9744}
9745
9746// SetType allocates a new m.Type and returns the pointer to it.
9747func (m *ManageStatusDefinition) SetType(v string) {
9748	m.Type = &v
9749}
9750
9751// GetHost returns the Host field if non-nil, zero value otherwise.
9752func (m *Metric) GetHost() string {
9753	if m == nil || m.Host == nil {
9754		return ""
9755	}
9756	return *m.Host
9757}
9758
9759// GetHostOk returns a tuple with the Host field if it's non-nil, zero value otherwise
9760// and a boolean to check if the value has been set.
9761func (m *Metric) GetHostOk() (string, bool) {
9762	if m == nil || m.Host == nil {
9763		return "", false
9764	}
9765	return *m.Host, true
9766}
9767
9768// HasHost returns a boolean if a field has been set.
9769func (m *Metric) HasHost() bool {
9770	if m != nil && m.Host != nil {
9771		return true
9772	}
9773
9774	return false
9775}
9776
9777// SetHost allocates a new m.Host and returns the pointer to it.
9778func (m *Metric) SetHost(v string) {
9779	m.Host = &v
9780}
9781
9782// GetMetric returns the Metric field if non-nil, zero value otherwise.
9783func (m *Metric) GetMetric() string {
9784	if m == nil || m.Metric == nil {
9785		return ""
9786	}
9787	return *m.Metric
9788}
9789
9790// GetMetricOk returns a tuple with the Metric field if it's non-nil, zero value otherwise
9791// and a boolean to check if the value has been set.
9792func (m *Metric) GetMetricOk() (string, bool) {
9793	if m == nil || m.Metric == nil {
9794		return "", false
9795	}
9796	return *m.Metric, true
9797}
9798
9799// HasMetric returns a boolean if a field has been set.
9800func (m *Metric) HasMetric() bool {
9801	if m != nil && m.Metric != nil {
9802		return true
9803	}
9804
9805	return false
9806}
9807
9808// SetMetric allocates a new m.Metric and returns the pointer to it.
9809func (m *Metric) SetMetric(v string) {
9810	m.Metric = &v
9811}
9812
9813// GetType returns the Type field if non-nil, zero value otherwise.
9814func (m *Metric) GetType() string {
9815	if m == nil || m.Type == nil {
9816		return ""
9817	}
9818	return *m.Type
9819}
9820
9821// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
9822// and a boolean to check if the value has been set.
9823func (m *Metric) GetTypeOk() (string, bool) {
9824	if m == nil || m.Type == nil {
9825		return "", false
9826	}
9827	return *m.Type, true
9828}
9829
9830// HasType returns a boolean if a field has been set.
9831func (m *Metric) HasType() bool {
9832	if m != nil && m.Type != nil {
9833		return true
9834	}
9835
9836	return false
9837}
9838
9839// SetType allocates a new m.Type and returns the pointer to it.
9840func (m *Metric) SetType(v string) {
9841	m.Type = &v
9842}
9843
9844// GetUnit returns the Unit field if non-nil, zero value otherwise.
9845func (m *Metric) GetUnit() string {
9846	if m == nil || m.Unit == nil {
9847		return ""
9848	}
9849	return *m.Unit
9850}
9851
9852// GetUnitOk returns a tuple with the Unit field if it's non-nil, zero value otherwise
9853// and a boolean to check if the value has been set.
9854func (m *Metric) GetUnitOk() (string, bool) {
9855	if m == nil || m.Unit == nil {
9856		return "", false
9857	}
9858	return *m.Unit, true
9859}
9860
9861// HasUnit returns a boolean if a field has been set.
9862func (m *Metric) HasUnit() bool {
9863	if m != nil && m.Unit != nil {
9864		return true
9865	}
9866
9867	return false
9868}
9869
9870// SetUnit allocates a new m.Unit and returns the pointer to it.
9871func (m *Metric) SetUnit(v string) {
9872	m.Unit = &v
9873}
9874
9875// GetDescription returns the Description field if non-nil, zero value otherwise.
9876func (m *MetricMetadata) GetDescription() string {
9877	if m == nil || m.Description == nil {
9878		return ""
9879	}
9880	return *m.Description
9881}
9882
9883// GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
9884// and a boolean to check if the value has been set.
9885func (m *MetricMetadata) GetDescriptionOk() (string, bool) {
9886	if m == nil || m.Description == nil {
9887		return "", false
9888	}
9889	return *m.Description, true
9890}
9891
9892// HasDescription returns a boolean if a field has been set.
9893func (m *MetricMetadata) HasDescription() bool {
9894	if m != nil && m.Description != nil {
9895		return true
9896	}
9897
9898	return false
9899}
9900
9901// SetDescription allocates a new m.Description and returns the pointer to it.
9902func (m *MetricMetadata) SetDescription(v string) {
9903	m.Description = &v
9904}
9905
9906// GetPerUnit returns the PerUnit field if non-nil, zero value otherwise.
9907func (m *MetricMetadata) GetPerUnit() string {
9908	if m == nil || m.PerUnit == nil {
9909		return ""
9910	}
9911	return *m.PerUnit
9912}
9913
9914// GetPerUnitOk returns a tuple with the PerUnit field if it's non-nil, zero value otherwise
9915// and a boolean to check if the value has been set.
9916func (m *MetricMetadata) GetPerUnitOk() (string, bool) {
9917	if m == nil || m.PerUnit == nil {
9918		return "", false
9919	}
9920	return *m.PerUnit, true
9921}
9922
9923// HasPerUnit returns a boolean if a field has been set.
9924func (m *MetricMetadata) HasPerUnit() bool {
9925	if m != nil && m.PerUnit != nil {
9926		return true
9927	}
9928
9929	return false
9930}
9931
9932// SetPerUnit allocates a new m.PerUnit and returns the pointer to it.
9933func (m *MetricMetadata) SetPerUnit(v string) {
9934	m.PerUnit = &v
9935}
9936
9937// GetShortName returns the ShortName field if non-nil, zero value otherwise.
9938func (m *MetricMetadata) GetShortName() string {
9939	if m == nil || m.ShortName == nil {
9940		return ""
9941	}
9942	return *m.ShortName
9943}
9944
9945// GetShortNameOk returns a tuple with the ShortName field if it's non-nil, zero value otherwise
9946// and a boolean to check if the value has been set.
9947func (m *MetricMetadata) GetShortNameOk() (string, bool) {
9948	if m == nil || m.ShortName == nil {
9949		return "", false
9950	}
9951	return *m.ShortName, true
9952}
9953
9954// HasShortName returns a boolean if a field has been set.
9955func (m *MetricMetadata) HasShortName() bool {
9956	if m != nil && m.ShortName != nil {
9957		return true
9958	}
9959
9960	return false
9961}
9962
9963// SetShortName allocates a new m.ShortName and returns the pointer to it.
9964func (m *MetricMetadata) SetShortName(v string) {
9965	m.ShortName = &v
9966}
9967
9968// GetStatsdInterval returns the StatsdInterval field if non-nil, zero value otherwise.
9969func (m *MetricMetadata) GetStatsdInterval() int {
9970	if m == nil || m.StatsdInterval == nil {
9971		return 0
9972	}
9973	return *m.StatsdInterval
9974}
9975
9976// GetStatsdIntervalOk returns a tuple with the StatsdInterval field if it's non-nil, zero value otherwise
9977// and a boolean to check if the value has been set.
9978func (m *MetricMetadata) GetStatsdIntervalOk() (int, bool) {
9979	if m == nil || m.StatsdInterval == nil {
9980		return 0, false
9981	}
9982	return *m.StatsdInterval, true
9983}
9984
9985// HasStatsdInterval returns a boolean if a field has been set.
9986func (m *MetricMetadata) HasStatsdInterval() bool {
9987	if m != nil && m.StatsdInterval != nil {
9988		return true
9989	}
9990
9991	return false
9992}
9993
9994// SetStatsdInterval allocates a new m.StatsdInterval and returns the pointer to it.
9995func (m *MetricMetadata) SetStatsdInterval(v int) {
9996	m.StatsdInterval = &v
9997}
9998
9999// GetType returns the Type field if non-nil, zero value otherwise.
10000func (m *MetricMetadata) GetType() string {
10001	if m == nil || m.Type == nil {
10002		return ""
10003	}
10004	return *m.Type
10005}
10006
10007// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
10008// and a boolean to check if the value has been set.
10009func (m *MetricMetadata) GetTypeOk() (string, bool) {
10010	if m == nil || m.Type == nil {
10011		return "", false
10012	}
10013	return *m.Type, true
10014}
10015
10016// HasType returns a boolean if a field has been set.
10017func (m *MetricMetadata) HasType() bool {
10018	if m != nil && m.Type != nil {
10019		return true
10020	}
10021
10022	return false
10023}
10024
10025// SetType allocates a new m.Type and returns the pointer to it.
10026func (m *MetricMetadata) SetType(v string) {
10027	m.Type = &v
10028}
10029
10030// GetUnit returns the Unit field if non-nil, zero value otherwise.
10031func (m *MetricMetadata) GetUnit() string {
10032	if m == nil || m.Unit == nil {
10033		return ""
10034	}
10035	return *m.Unit
10036}
10037
10038// GetUnitOk returns a tuple with the Unit field if it's non-nil, zero value otherwise
10039// and a boolean to check if the value has been set.
10040func (m *MetricMetadata) GetUnitOk() (string, bool) {
10041	if m == nil || m.Unit == nil {
10042		return "", false
10043	}
10044	return *m.Unit, true
10045}
10046
10047// HasUnit returns a boolean if a field has been set.
10048func (m *MetricMetadata) HasUnit() bool {
10049	if m != nil && m.Unit != nil {
10050		return true
10051	}
10052
10053	return false
10054}
10055
10056// SetUnit allocates a new m.Unit and returns the pointer to it.
10057func (m *MetricMetadata) SetUnit(v string) {
10058	m.Unit = &v
10059}
10060
10061// GetCreator returns the Creator field if non-nil, zero value otherwise.
10062func (m *Monitor) GetCreator() Creator {
10063	if m == nil || m.Creator == nil {
10064		return Creator{}
10065	}
10066	return *m.Creator
10067}
10068
10069// GetCreatorOk returns a tuple with the Creator field if it's non-nil, zero value otherwise
10070// and a boolean to check if the value has been set.
10071func (m *Monitor) GetCreatorOk() (Creator, bool) {
10072	if m == nil || m.Creator == nil {
10073		return Creator{}, false
10074	}
10075	return *m.Creator, true
10076}
10077
10078// HasCreator returns a boolean if a field has been set.
10079func (m *Monitor) HasCreator() bool {
10080	if m != nil && m.Creator != nil {
10081		return true
10082	}
10083
10084	return false
10085}
10086
10087// SetCreator allocates a new m.Creator and returns the pointer to it.
10088func (m *Monitor) SetCreator(v Creator) {
10089	m.Creator = &v
10090}
10091
10092// GetId returns the Id field if non-nil, zero value otherwise.
10093func (m *Monitor) GetId() int {
10094	if m == nil || m.Id == nil {
10095		return 0
10096	}
10097	return *m.Id
10098}
10099
10100// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
10101// and a boolean to check if the value has been set.
10102func (m *Monitor) GetIdOk() (int, bool) {
10103	if m == nil || m.Id == nil {
10104		return 0, false
10105	}
10106	return *m.Id, true
10107}
10108
10109// HasId returns a boolean if a field has been set.
10110func (m *Monitor) HasId() bool {
10111	if m != nil && m.Id != nil {
10112		return true
10113	}
10114
10115	return false
10116}
10117
10118// SetId allocates a new m.Id and returns the pointer to it.
10119func (m *Monitor) SetId(v int) {
10120	m.Id = &v
10121}
10122
10123// GetMessage returns the Message field if non-nil, zero value otherwise.
10124func (m *Monitor) GetMessage() string {
10125	if m == nil || m.Message == nil {
10126		return ""
10127	}
10128	return *m.Message
10129}
10130
10131// GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise
10132// and a boolean to check if the value has been set.
10133func (m *Monitor) GetMessageOk() (string, bool) {
10134	if m == nil || m.Message == nil {
10135		return "", false
10136	}
10137	return *m.Message, true
10138}
10139
10140// HasMessage returns a boolean if a field has been set.
10141func (m *Monitor) HasMessage() bool {
10142	if m != nil && m.Message != nil {
10143		return true
10144	}
10145
10146	return false
10147}
10148
10149// SetMessage allocates a new m.Message and returns the pointer to it.
10150func (m *Monitor) SetMessage(v string) {
10151	m.Message = &v
10152}
10153
10154// GetName returns the Name field if non-nil, zero value otherwise.
10155func (m *Monitor) GetName() string {
10156	if m == nil || m.Name == nil {
10157		return ""
10158	}
10159	return *m.Name
10160}
10161
10162// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
10163// and a boolean to check if the value has been set.
10164func (m *Monitor) GetNameOk() (string, bool) {
10165	if m == nil || m.Name == nil {
10166		return "", false
10167	}
10168	return *m.Name, true
10169}
10170
10171// HasName returns a boolean if a field has been set.
10172func (m *Monitor) HasName() bool {
10173	if m != nil && m.Name != nil {
10174		return true
10175	}
10176
10177	return false
10178}
10179
10180// SetName allocates a new m.Name and returns the pointer to it.
10181func (m *Monitor) SetName(v string) {
10182	m.Name = &v
10183}
10184
10185// GetOptions returns the Options field if non-nil, zero value otherwise.
10186func (m *Monitor) GetOptions() Options {
10187	if m == nil || m.Options == nil {
10188		return Options{}
10189	}
10190	return *m.Options
10191}
10192
10193// GetOptionsOk returns a tuple with the Options field if it's non-nil, zero value otherwise
10194// and a boolean to check if the value has been set.
10195func (m *Monitor) GetOptionsOk() (Options, bool) {
10196	if m == nil || m.Options == nil {
10197		return Options{}, false
10198	}
10199	return *m.Options, true
10200}
10201
10202// HasOptions returns a boolean if a field has been set.
10203func (m *Monitor) HasOptions() bool {
10204	if m != nil && m.Options != nil {
10205		return true
10206	}
10207
10208	return false
10209}
10210
10211// SetOptions allocates a new m.Options and returns the pointer to it.
10212func (m *Monitor) SetOptions(v Options) {
10213	m.Options = &v
10214}
10215
10216// GetOverallState returns the OverallState field if non-nil, zero value otherwise.
10217func (m *Monitor) GetOverallState() string {
10218	if m == nil || m.OverallState == nil {
10219		return ""
10220	}
10221	return *m.OverallState
10222}
10223
10224// GetOverallStateOk returns a tuple with the OverallState field if it's non-nil, zero value otherwise
10225// and a boolean to check if the value has been set.
10226func (m *Monitor) GetOverallStateOk() (string, bool) {
10227	if m == nil || m.OverallState == nil {
10228		return "", false
10229	}
10230	return *m.OverallState, true
10231}
10232
10233// HasOverallState returns a boolean if a field has been set.
10234func (m *Monitor) HasOverallState() bool {
10235	if m != nil && m.OverallState != nil {
10236		return true
10237	}
10238
10239	return false
10240}
10241
10242// SetOverallState allocates a new m.OverallState and returns the pointer to it.
10243func (m *Monitor) SetOverallState(v string) {
10244	m.OverallState = &v
10245}
10246
10247// GetOverallStateModified returns the OverallStateModified field if non-nil, zero value otherwise.
10248func (m *Monitor) GetOverallStateModified() string {
10249	if m == nil || m.OverallStateModified == nil {
10250		return ""
10251	}
10252	return *m.OverallStateModified
10253}
10254
10255// GetOverallStateModifiedOk returns a tuple with the OverallStateModified field if it's non-nil, zero value otherwise
10256// and a boolean to check if the value has been set.
10257func (m *Monitor) GetOverallStateModifiedOk() (string, bool) {
10258	if m == nil || m.OverallStateModified == nil {
10259		return "", false
10260	}
10261	return *m.OverallStateModified, true
10262}
10263
10264// HasOverallStateModified returns a boolean if a field has been set.
10265func (m *Monitor) HasOverallStateModified() bool {
10266	if m != nil && m.OverallStateModified != nil {
10267		return true
10268	}
10269
10270	return false
10271}
10272
10273// SetOverallStateModified allocates a new m.OverallStateModified and returns the pointer to it.
10274func (m *Monitor) SetOverallStateModified(v string) {
10275	m.OverallStateModified = &v
10276}
10277
10278// GetQuery returns the Query field if non-nil, zero value otherwise.
10279func (m *Monitor) GetQuery() string {
10280	if m == nil || m.Query == nil {
10281		return ""
10282	}
10283	return *m.Query
10284}
10285
10286// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
10287// and a boolean to check if the value has been set.
10288func (m *Monitor) GetQueryOk() (string, bool) {
10289	if m == nil || m.Query == nil {
10290		return "", false
10291	}
10292	return *m.Query, true
10293}
10294
10295// HasQuery returns a boolean if a field has been set.
10296func (m *Monitor) HasQuery() bool {
10297	if m != nil && m.Query != nil {
10298		return true
10299	}
10300
10301	return false
10302}
10303
10304// SetQuery allocates a new m.Query and returns the pointer to it.
10305func (m *Monitor) SetQuery(v string) {
10306	m.Query = &v
10307}
10308
10309// GetType returns the Type field if non-nil, zero value otherwise.
10310func (m *Monitor) GetType() string {
10311	if m == nil || m.Type == nil {
10312		return ""
10313	}
10314	return *m.Type
10315}
10316
10317// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
10318// and a boolean to check if the value has been set.
10319func (m *Monitor) GetTypeOk() (string, bool) {
10320	if m == nil || m.Type == nil {
10321		return "", false
10322	}
10323	return *m.Type, true
10324}
10325
10326// HasType returns a boolean if a field has been set.
10327func (m *Monitor) HasType() bool {
10328	if m != nil && m.Type != nil {
10329		return true
10330	}
10331
10332	return false
10333}
10334
10335// SetType allocates a new m.Type and returns the pointer to it.
10336func (m *Monitor) SetType(v string) {
10337	m.Type = &v
10338}
10339
10340// GetEnd returns the End field if non-nil, zero value otherwise.
10341func (m *MuteMonitorScope) GetEnd() int {
10342	if m == nil || m.End == nil {
10343		return 0
10344	}
10345	return *m.End
10346}
10347
10348// GetEndOk returns a tuple with the End field if it's non-nil, zero value otherwise
10349// and a boolean to check if the value has been set.
10350func (m *MuteMonitorScope) GetEndOk() (int, bool) {
10351	if m == nil || m.End == nil {
10352		return 0, false
10353	}
10354	return *m.End, true
10355}
10356
10357// HasEnd returns a boolean if a field has been set.
10358func (m *MuteMonitorScope) HasEnd() bool {
10359	if m != nil && m.End != nil {
10360		return true
10361	}
10362
10363	return false
10364}
10365
10366// SetEnd allocates a new m.End and returns the pointer to it.
10367func (m *MuteMonitorScope) SetEnd(v int) {
10368	m.End = &v
10369}
10370
10371// GetScope returns the Scope field if non-nil, zero value otherwise.
10372func (m *MuteMonitorScope) GetScope() string {
10373	if m == nil || m.Scope == nil {
10374		return ""
10375	}
10376	return *m.Scope
10377}
10378
10379// GetScopeOk returns a tuple with the Scope field if it's non-nil, zero value otherwise
10380// and a boolean to check if the value has been set.
10381func (m *MuteMonitorScope) GetScopeOk() (string, bool) {
10382	if m == nil || m.Scope == nil {
10383		return "", false
10384	}
10385	return *m.Scope, true
10386}
10387
10388// HasScope returns a boolean if a field has been set.
10389func (m *MuteMonitorScope) HasScope() bool {
10390	if m != nil && m.Scope != nil {
10391		return true
10392	}
10393
10394	return false
10395}
10396
10397// SetScope allocates a new m.Scope and returns the pointer to it.
10398func (m *MuteMonitorScope) SetScope(v string) {
10399	m.Scope = &v
10400}
10401
10402// GetBackgroundColor returns the BackgroundColor field if non-nil, zero value otherwise.
10403func (n *NoteDefinition) GetBackgroundColor() string {
10404	if n == nil || n.BackgroundColor == nil {
10405		return ""
10406	}
10407	return *n.BackgroundColor
10408}
10409
10410// GetBackgroundColorOk returns a tuple with the BackgroundColor field if it's non-nil, zero value otherwise
10411// and a boolean to check if the value has been set.
10412func (n *NoteDefinition) GetBackgroundColorOk() (string, bool) {
10413	if n == nil || n.BackgroundColor == nil {
10414		return "", false
10415	}
10416	return *n.BackgroundColor, true
10417}
10418
10419// HasBackgroundColor returns a boolean if a field has been set.
10420func (n *NoteDefinition) HasBackgroundColor() bool {
10421	if n != nil && n.BackgroundColor != nil {
10422		return true
10423	}
10424
10425	return false
10426}
10427
10428// SetBackgroundColor allocates a new n.BackgroundColor and returns the pointer to it.
10429func (n *NoteDefinition) SetBackgroundColor(v string) {
10430	n.BackgroundColor = &v
10431}
10432
10433// GetContent returns the Content field if non-nil, zero value otherwise.
10434func (n *NoteDefinition) GetContent() string {
10435	if n == nil || n.Content == nil {
10436		return ""
10437	}
10438	return *n.Content
10439}
10440
10441// GetContentOk returns a tuple with the Content field if it's non-nil, zero value otherwise
10442// and a boolean to check if the value has been set.
10443func (n *NoteDefinition) GetContentOk() (string, bool) {
10444	if n == nil || n.Content == nil {
10445		return "", false
10446	}
10447	return *n.Content, true
10448}
10449
10450// HasContent returns a boolean if a field has been set.
10451func (n *NoteDefinition) HasContent() bool {
10452	if n != nil && n.Content != nil {
10453		return true
10454	}
10455
10456	return false
10457}
10458
10459// SetContent allocates a new n.Content and returns the pointer to it.
10460func (n *NoteDefinition) SetContent(v string) {
10461	n.Content = &v
10462}
10463
10464// GetFontSize returns the FontSize field if non-nil, zero value otherwise.
10465func (n *NoteDefinition) GetFontSize() string {
10466	if n == nil || n.FontSize == nil {
10467		return ""
10468	}
10469	return *n.FontSize
10470}
10471
10472// GetFontSizeOk returns a tuple with the FontSize field if it's non-nil, zero value otherwise
10473// and a boolean to check if the value has been set.
10474func (n *NoteDefinition) GetFontSizeOk() (string, bool) {
10475	if n == nil || n.FontSize == nil {
10476		return "", false
10477	}
10478	return *n.FontSize, true
10479}
10480
10481// HasFontSize returns a boolean if a field has been set.
10482func (n *NoteDefinition) HasFontSize() bool {
10483	if n != nil && n.FontSize != nil {
10484		return true
10485	}
10486
10487	return false
10488}
10489
10490// SetFontSize allocates a new n.FontSize and returns the pointer to it.
10491func (n *NoteDefinition) SetFontSize(v string) {
10492	n.FontSize = &v
10493}
10494
10495// GetShowTick returns the ShowTick field if non-nil, zero value otherwise.
10496func (n *NoteDefinition) GetShowTick() bool {
10497	if n == nil || n.ShowTick == nil {
10498		return false
10499	}
10500	return *n.ShowTick
10501}
10502
10503// GetShowTickOk returns a tuple with the ShowTick field if it's non-nil, zero value otherwise
10504// and a boolean to check if the value has been set.
10505func (n *NoteDefinition) GetShowTickOk() (bool, bool) {
10506	if n == nil || n.ShowTick == nil {
10507		return false, false
10508	}
10509	return *n.ShowTick, true
10510}
10511
10512// HasShowTick returns a boolean if a field has been set.
10513func (n *NoteDefinition) HasShowTick() bool {
10514	if n != nil && n.ShowTick != nil {
10515		return true
10516	}
10517
10518	return false
10519}
10520
10521// SetShowTick allocates a new n.ShowTick and returns the pointer to it.
10522func (n *NoteDefinition) SetShowTick(v bool) {
10523	n.ShowTick = &v
10524}
10525
10526// GetTextAlign returns the TextAlign field if non-nil, zero value otherwise.
10527func (n *NoteDefinition) GetTextAlign() string {
10528	if n == nil || n.TextAlign == nil {
10529		return ""
10530	}
10531	return *n.TextAlign
10532}
10533
10534// GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise
10535// and a boolean to check if the value has been set.
10536func (n *NoteDefinition) GetTextAlignOk() (string, bool) {
10537	if n == nil || n.TextAlign == nil {
10538		return "", false
10539	}
10540	return *n.TextAlign, true
10541}
10542
10543// HasTextAlign returns a boolean if a field has been set.
10544func (n *NoteDefinition) HasTextAlign() bool {
10545	if n != nil && n.TextAlign != nil {
10546		return true
10547	}
10548
10549	return false
10550}
10551
10552// SetTextAlign allocates a new n.TextAlign and returns the pointer to it.
10553func (n *NoteDefinition) SetTextAlign(v string) {
10554	n.TextAlign = &v
10555}
10556
10557// GetTickEdge returns the TickEdge field if non-nil, zero value otherwise.
10558func (n *NoteDefinition) GetTickEdge() string {
10559	if n == nil || n.TickEdge == nil {
10560		return ""
10561	}
10562	return *n.TickEdge
10563}
10564
10565// GetTickEdgeOk returns a tuple with the TickEdge field if it's non-nil, zero value otherwise
10566// and a boolean to check if the value has been set.
10567func (n *NoteDefinition) GetTickEdgeOk() (string, bool) {
10568	if n == nil || n.TickEdge == nil {
10569		return "", false
10570	}
10571	return *n.TickEdge, true
10572}
10573
10574// HasTickEdge returns a boolean if a field has been set.
10575func (n *NoteDefinition) HasTickEdge() bool {
10576	if n != nil && n.TickEdge != nil {
10577		return true
10578	}
10579
10580	return false
10581}
10582
10583// SetTickEdge allocates a new n.TickEdge and returns the pointer to it.
10584func (n *NoteDefinition) SetTickEdge(v string) {
10585	n.TickEdge = &v
10586}
10587
10588// GetTickPos returns the TickPos field if non-nil, zero value otherwise.
10589func (n *NoteDefinition) GetTickPos() string {
10590	if n == nil || n.TickPos == nil {
10591		return ""
10592	}
10593	return *n.TickPos
10594}
10595
10596// GetTickPosOk returns a tuple with the TickPos field if it's non-nil, zero value otherwise
10597// and a boolean to check if the value has been set.
10598func (n *NoteDefinition) GetTickPosOk() (string, bool) {
10599	if n == nil || n.TickPos == nil {
10600		return "", false
10601	}
10602	return *n.TickPos, true
10603}
10604
10605// HasTickPos returns a boolean if a field has been set.
10606func (n *NoteDefinition) HasTickPos() bool {
10607	if n != nil && n.TickPos != nil {
10608		return true
10609	}
10610
10611	return false
10612}
10613
10614// SetTickPos allocates a new n.TickPos and returns the pointer to it.
10615func (n *NoteDefinition) SetTickPos(v string) {
10616	n.TickPos = &v
10617}
10618
10619// GetType returns the Type field if non-nil, zero value otherwise.
10620func (n *NoteDefinition) GetType() string {
10621	if n == nil || n.Type == nil {
10622		return ""
10623	}
10624	return *n.Type
10625}
10626
10627// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
10628// and a boolean to check if the value has been set.
10629func (n *NoteDefinition) GetTypeOk() (string, bool) {
10630	if n == nil || n.Type == nil {
10631		return "", false
10632	}
10633	return *n.Type, true
10634}
10635
10636// HasType returns a boolean if a field has been set.
10637func (n *NoteDefinition) HasType() bool {
10638	if n != nil && n.Type != nil {
10639		return true
10640	}
10641
10642	return false
10643}
10644
10645// SetType allocates a new n.Type and returns the pointer to it.
10646func (n *NoteDefinition) SetType(v string) {
10647	n.Type = &v
10648}
10649
10650// GetEnableLogsSample returns the EnableLogsSample field if non-nil, zero value otherwise.
10651func (o *Options) GetEnableLogsSample() bool {
10652	if o == nil || o.EnableLogsSample == nil {
10653		return false
10654	}
10655	return *o.EnableLogsSample
10656}
10657
10658// GetEnableLogsSampleOk returns a tuple with the EnableLogsSample field if it's non-nil, zero value otherwise
10659// and a boolean to check if the value has been set.
10660func (o *Options) GetEnableLogsSampleOk() (bool, bool) {
10661	if o == nil || o.EnableLogsSample == nil {
10662		return false, false
10663	}
10664	return *o.EnableLogsSample, true
10665}
10666
10667// HasEnableLogsSample returns a boolean if a field has been set.
10668func (o *Options) HasEnableLogsSample() bool {
10669	if o != nil && o.EnableLogsSample != nil {
10670		return true
10671	}
10672
10673	return false
10674}
10675
10676// SetEnableLogsSample allocates a new o.EnableLogsSample and returns the pointer to it.
10677func (o *Options) SetEnableLogsSample(v bool) {
10678	o.EnableLogsSample = &v
10679}
10680
10681// GetEscalationMessage returns the EscalationMessage field if non-nil, zero value otherwise.
10682func (o *Options) GetEscalationMessage() string {
10683	if o == nil || o.EscalationMessage == nil {
10684		return ""
10685	}
10686	return *o.EscalationMessage
10687}
10688
10689// GetEscalationMessageOk returns a tuple with the EscalationMessage field if it's non-nil, zero value otherwise
10690// and a boolean to check if the value has been set.
10691func (o *Options) GetEscalationMessageOk() (string, bool) {
10692	if o == nil || o.EscalationMessage == nil {
10693		return "", false
10694	}
10695	return *o.EscalationMessage, true
10696}
10697
10698// HasEscalationMessage returns a boolean if a field has been set.
10699func (o *Options) HasEscalationMessage() bool {
10700	if o != nil && o.EscalationMessage != nil {
10701		return true
10702	}
10703
10704	return false
10705}
10706
10707// SetEscalationMessage allocates a new o.EscalationMessage and returns the pointer to it.
10708func (o *Options) SetEscalationMessage(v string) {
10709	o.EscalationMessage = &v
10710}
10711
10712// GetEvaluationDelay returns the EvaluationDelay field if non-nil, zero value otherwise.
10713func (o *Options) GetEvaluationDelay() int {
10714	if o == nil || o.EvaluationDelay == nil {
10715		return 0
10716	}
10717	return *o.EvaluationDelay
10718}
10719
10720// GetEvaluationDelayOk returns a tuple with the EvaluationDelay field if it's non-nil, zero value otherwise
10721// and a boolean to check if the value has been set.
10722func (o *Options) GetEvaluationDelayOk() (int, bool) {
10723	if o == nil || o.EvaluationDelay == nil {
10724		return 0, false
10725	}
10726	return *o.EvaluationDelay, true
10727}
10728
10729// HasEvaluationDelay returns a boolean if a field has been set.
10730func (o *Options) HasEvaluationDelay() bool {
10731	if o != nil && o.EvaluationDelay != nil {
10732		return true
10733	}
10734
10735	return false
10736}
10737
10738// SetEvaluationDelay allocates a new o.EvaluationDelay and returns the pointer to it.
10739func (o *Options) SetEvaluationDelay(v int) {
10740	o.EvaluationDelay = &v
10741}
10742
10743// GetIncludeTags returns the IncludeTags field if non-nil, zero value otherwise.
10744func (o *Options) GetIncludeTags() bool {
10745	if o == nil || o.IncludeTags == nil {
10746		return false
10747	}
10748	return *o.IncludeTags
10749}
10750
10751// GetIncludeTagsOk returns a tuple with the IncludeTags field if it's non-nil, zero value otherwise
10752// and a boolean to check if the value has been set.
10753func (o *Options) GetIncludeTagsOk() (bool, bool) {
10754	if o == nil || o.IncludeTags == nil {
10755		return false, false
10756	}
10757	return *o.IncludeTags, true
10758}
10759
10760// HasIncludeTags returns a boolean if a field has been set.
10761func (o *Options) HasIncludeTags() bool {
10762	if o != nil && o.IncludeTags != nil {
10763		return true
10764	}
10765
10766	return false
10767}
10768
10769// SetIncludeTags allocates a new o.IncludeTags and returns the pointer to it.
10770func (o *Options) SetIncludeTags(v bool) {
10771	o.IncludeTags = &v
10772}
10773
10774// GetLocked returns the Locked field if non-nil, zero value otherwise.
10775func (o *Options) GetLocked() bool {
10776	if o == nil || o.Locked == nil {
10777		return false
10778	}
10779	return *o.Locked
10780}
10781
10782// GetLockedOk returns a tuple with the Locked field if it's non-nil, zero value otherwise
10783// and a boolean to check if the value has been set.
10784func (o *Options) GetLockedOk() (bool, bool) {
10785	if o == nil || o.Locked == nil {
10786		return false, false
10787	}
10788	return *o.Locked, true
10789}
10790
10791// HasLocked returns a boolean if a field has been set.
10792func (o *Options) HasLocked() bool {
10793	if o != nil && o.Locked != nil {
10794		return true
10795	}
10796
10797	return false
10798}
10799
10800// SetLocked allocates a new o.Locked and returns the pointer to it.
10801func (o *Options) SetLocked(v bool) {
10802	o.Locked = &v
10803}
10804
10805// GetNewHostDelay returns the NewHostDelay field if non-nil, zero value otherwise.
10806func (o *Options) GetNewHostDelay() int {
10807	if o == nil || o.NewHostDelay == nil {
10808		return 0
10809	}
10810	return *o.NewHostDelay
10811}
10812
10813// GetNewHostDelayOk returns a tuple with the NewHostDelay field if it's non-nil, zero value otherwise
10814// and a boolean to check if the value has been set.
10815func (o *Options) GetNewHostDelayOk() (int, bool) {
10816	if o == nil || o.NewHostDelay == nil {
10817		return 0, false
10818	}
10819	return *o.NewHostDelay, true
10820}
10821
10822// HasNewHostDelay returns a boolean if a field has been set.
10823func (o *Options) HasNewHostDelay() bool {
10824	if o != nil && o.NewHostDelay != nil {
10825		return true
10826	}
10827
10828	return false
10829}
10830
10831// SetNewHostDelay allocates a new o.NewHostDelay and returns the pointer to it.
10832func (o *Options) SetNewHostDelay(v int) {
10833	o.NewHostDelay = &v
10834}
10835
10836// GetNotifyAudit returns the NotifyAudit field if non-nil, zero value otherwise.
10837func (o *Options) GetNotifyAudit() bool {
10838	if o == nil || o.NotifyAudit == nil {
10839		return false
10840	}
10841	return *o.NotifyAudit
10842}
10843
10844// GetNotifyAuditOk returns a tuple with the NotifyAudit field if it's non-nil, zero value otherwise
10845// and a boolean to check if the value has been set.
10846func (o *Options) GetNotifyAuditOk() (bool, bool) {
10847	if o == nil || o.NotifyAudit == nil {
10848		return false, false
10849	}
10850	return *o.NotifyAudit, true
10851}
10852
10853// HasNotifyAudit returns a boolean if a field has been set.
10854func (o *Options) HasNotifyAudit() bool {
10855	if o != nil && o.NotifyAudit != nil {
10856		return true
10857	}
10858
10859	return false
10860}
10861
10862// SetNotifyAudit allocates a new o.NotifyAudit and returns the pointer to it.
10863func (o *Options) SetNotifyAudit(v bool) {
10864	o.NotifyAudit = &v
10865}
10866
10867// GetNotifyNoData returns the NotifyNoData field if non-nil, zero value otherwise.
10868func (o *Options) GetNotifyNoData() bool {
10869	if o == nil || o.NotifyNoData == nil {
10870		return false
10871	}
10872	return *o.NotifyNoData
10873}
10874
10875// GetNotifyNoDataOk returns a tuple with the NotifyNoData field if it's non-nil, zero value otherwise
10876// and a boolean to check if the value has been set.
10877func (o *Options) GetNotifyNoDataOk() (bool, bool) {
10878	if o == nil || o.NotifyNoData == nil {
10879		return false, false
10880	}
10881	return *o.NotifyNoData, true
10882}
10883
10884// HasNotifyNoData returns a boolean if a field has been set.
10885func (o *Options) HasNotifyNoData() bool {
10886	if o != nil && o.NotifyNoData != nil {
10887		return true
10888	}
10889
10890	return false
10891}
10892
10893// SetNotifyNoData allocates a new o.NotifyNoData and returns the pointer to it.
10894func (o *Options) SetNotifyNoData(v bool) {
10895	o.NotifyNoData = &v
10896}
10897
10898// GetQueryConfig returns the QueryConfig field if non-nil, zero value otherwise.
10899func (o *Options) GetQueryConfig() QueryConfig {
10900	if o == nil || o.QueryConfig == nil {
10901		return QueryConfig{}
10902	}
10903	return *o.QueryConfig
10904}
10905
10906// GetQueryConfigOk returns a tuple with the QueryConfig field if it's non-nil, zero value otherwise
10907// and a boolean to check if the value has been set.
10908func (o *Options) GetQueryConfigOk() (QueryConfig, bool) {
10909	if o == nil || o.QueryConfig == nil {
10910		return QueryConfig{}, false
10911	}
10912	return *o.QueryConfig, true
10913}
10914
10915// HasQueryConfig returns a boolean if a field has been set.
10916func (o *Options) HasQueryConfig() bool {
10917	if o != nil && o.QueryConfig != nil {
10918		return true
10919	}
10920
10921	return false
10922}
10923
10924// SetQueryConfig allocates a new o.QueryConfig and returns the pointer to it.
10925func (o *Options) SetQueryConfig(v QueryConfig) {
10926	o.QueryConfig = &v
10927}
10928
10929// GetRenotifyInterval returns the RenotifyInterval field if non-nil, zero value otherwise.
10930func (o *Options) GetRenotifyInterval() int {
10931	if o == nil || o.RenotifyInterval == nil {
10932		return 0
10933	}
10934	return *o.RenotifyInterval
10935}
10936
10937// GetRenotifyIntervalOk returns a tuple with the RenotifyInterval field if it's non-nil, zero value otherwise
10938// and a boolean to check if the value has been set.
10939func (o *Options) GetRenotifyIntervalOk() (int, bool) {
10940	if o == nil || o.RenotifyInterval == nil {
10941		return 0, false
10942	}
10943	return *o.RenotifyInterval, true
10944}
10945
10946// HasRenotifyInterval returns a boolean if a field has been set.
10947func (o *Options) HasRenotifyInterval() bool {
10948	if o != nil && o.RenotifyInterval != nil {
10949		return true
10950	}
10951
10952	return false
10953}
10954
10955// SetRenotifyInterval allocates a new o.RenotifyInterval and returns the pointer to it.
10956func (o *Options) SetRenotifyInterval(v int) {
10957	o.RenotifyInterval = &v
10958}
10959
10960// GetRequireFullWindow returns the RequireFullWindow field if non-nil, zero value otherwise.
10961func (o *Options) GetRequireFullWindow() bool {
10962	if o == nil || o.RequireFullWindow == nil {
10963		return false
10964	}
10965	return *o.RequireFullWindow
10966}
10967
10968// GetRequireFullWindowOk returns a tuple with the RequireFullWindow field if it's non-nil, zero value otherwise
10969// and a boolean to check if the value has been set.
10970func (o *Options) GetRequireFullWindowOk() (bool, bool) {
10971	if o == nil || o.RequireFullWindow == nil {
10972		return false, false
10973	}
10974	return *o.RequireFullWindow, true
10975}
10976
10977// HasRequireFullWindow returns a boolean if a field has been set.
10978func (o *Options) HasRequireFullWindow() bool {
10979	if o != nil && o.RequireFullWindow != nil {
10980		return true
10981	}
10982
10983	return false
10984}
10985
10986// SetRequireFullWindow allocates a new o.RequireFullWindow and returns the pointer to it.
10987func (o *Options) SetRequireFullWindow(v bool) {
10988	o.RequireFullWindow = &v
10989}
10990
10991// GetThresholds returns the Thresholds field if non-nil, zero value otherwise.
10992func (o *Options) GetThresholds() ThresholdCount {
10993	if o == nil || o.Thresholds == nil {
10994		return ThresholdCount{}
10995	}
10996	return *o.Thresholds
10997}
10998
10999// GetThresholdsOk returns a tuple with the Thresholds field if it's non-nil, zero value otherwise
11000// and a boolean to check if the value has been set.
11001func (o *Options) GetThresholdsOk() (ThresholdCount, bool) {
11002	if o == nil || o.Thresholds == nil {
11003		return ThresholdCount{}, false
11004	}
11005	return *o.Thresholds, true
11006}
11007
11008// HasThresholds returns a boolean if a field has been set.
11009func (o *Options) HasThresholds() bool {
11010	if o != nil && o.Thresholds != nil {
11011		return true
11012	}
11013
11014	return false
11015}
11016
11017// SetThresholds allocates a new o.Thresholds and returns the pointer to it.
11018func (o *Options) SetThresholds(v ThresholdCount) {
11019	o.Thresholds = &v
11020}
11021
11022// GetThresholdWindows returns the ThresholdWindows field if non-nil, zero value otherwise.
11023func (o *Options) GetThresholdWindows() ThresholdWindows {
11024	if o == nil || o.ThresholdWindows == nil {
11025		return ThresholdWindows{}
11026	}
11027	return *o.ThresholdWindows
11028}
11029
11030// GetThresholdWindowsOk returns a tuple with the ThresholdWindows field if it's non-nil, zero value otherwise
11031// and a boolean to check if the value has been set.
11032func (o *Options) GetThresholdWindowsOk() (ThresholdWindows, bool) {
11033	if o == nil || o.ThresholdWindows == nil {
11034		return ThresholdWindows{}, false
11035	}
11036	return *o.ThresholdWindows, true
11037}
11038
11039// HasThresholdWindows returns a boolean if a field has been set.
11040func (o *Options) HasThresholdWindows() bool {
11041	if o != nil && o.ThresholdWindows != nil {
11042		return true
11043	}
11044
11045	return false
11046}
11047
11048// SetThresholdWindows allocates a new o.ThresholdWindows and returns the pointer to it.
11049func (o *Options) SetThresholdWindows(v ThresholdWindows) {
11050	o.ThresholdWindows = &v
11051}
11052
11053// GetTimeoutH returns the TimeoutH field if non-nil, zero value otherwise.
11054func (o *Options) GetTimeoutH() int {
11055	if o == nil || o.TimeoutH == nil {
11056		return 0
11057	}
11058	return *o.TimeoutH
11059}
11060
11061// GetTimeoutHOk returns a tuple with the TimeoutH field if it's non-nil, zero value otherwise
11062// and a boolean to check if the value has been set.
11063func (o *Options) GetTimeoutHOk() (int, bool) {
11064	if o == nil || o.TimeoutH == nil {
11065		return 0, false
11066	}
11067	return *o.TimeoutH, true
11068}
11069
11070// HasTimeoutH returns a boolean if a field has been set.
11071func (o *Options) HasTimeoutH() bool {
11072	if o != nil && o.TimeoutH != nil {
11073		return true
11074	}
11075
11076	return false
11077}
11078
11079// SetTimeoutH allocates a new o.TimeoutH and returns the pointer to it.
11080func (o *Options) SetTimeoutH(v int) {
11081	o.TimeoutH = &v
11082}
11083
11084// GetCount returns the Count field if non-nil, zero value otherwise.
11085func (p *Params) GetCount() string {
11086	if p == nil || p.Count == nil {
11087		return ""
11088	}
11089	return *p.Count
11090}
11091
11092// GetCountOk returns a tuple with the Count field if it's non-nil, zero value otherwise
11093// and a boolean to check if the value has been set.
11094func (p *Params) GetCountOk() (string, bool) {
11095	if p == nil || p.Count == nil {
11096		return "", false
11097	}
11098	return *p.Count, true
11099}
11100
11101// HasCount returns a boolean if a field has been set.
11102func (p *Params) HasCount() bool {
11103	if p != nil && p.Count != nil {
11104		return true
11105	}
11106
11107	return false
11108}
11109
11110// SetCount allocates a new p.Count and returns the pointer to it.
11111func (p *Params) SetCount(v string) {
11112	p.Count = &v
11113}
11114
11115// GetSort returns the Sort field if non-nil, zero value otherwise.
11116func (p *Params) GetSort() string {
11117	if p == nil || p.Sort == nil {
11118		return ""
11119	}
11120	return *p.Sort
11121}
11122
11123// GetSortOk returns a tuple with the Sort field if it's non-nil, zero value otherwise
11124// and a boolean to check if the value has been set.
11125func (p *Params) GetSortOk() (string, bool) {
11126	if p == nil || p.Sort == nil {
11127		return "", false
11128	}
11129	return *p.Sort, true
11130}
11131
11132// HasSort returns a boolean if a field has been set.
11133func (p *Params) HasSort() bool {
11134	if p != nil && p.Sort != nil {
11135		return true
11136	}
11137
11138	return false
11139}
11140
11141// SetSort allocates a new p.Sort and returns the pointer to it.
11142func (p *Params) SetSort(v string) {
11143	p.Sort = &v
11144}
11145
11146// GetStart returns the Start field if non-nil, zero value otherwise.
11147func (p *Params) GetStart() string {
11148	if p == nil || p.Start == nil {
11149		return ""
11150	}
11151	return *p.Start
11152}
11153
11154// GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise
11155// and a boolean to check if the value has been set.
11156func (p *Params) GetStartOk() (string, bool) {
11157	if p == nil || p.Start == nil {
11158		return "", false
11159	}
11160	return *p.Start, true
11161}
11162
11163// HasStart returns a boolean if a field has been set.
11164func (p *Params) HasStart() bool {
11165	if p != nil && p.Start != nil {
11166		return true
11167	}
11168
11169	return false
11170}
11171
11172// SetStart allocates a new p.Start and returns the pointer to it.
11173func (p *Params) SetStart(v string) {
11174	p.Start = &v
11175}
11176
11177// GetText returns the Text field if non-nil, zero value otherwise.
11178func (p *Params) GetText() string {
11179	if p == nil || p.Text == nil {
11180		return ""
11181	}
11182	return *p.Text
11183}
11184
11185// GetTextOk returns a tuple with the Text field if it's non-nil, zero value otherwise
11186// and a boolean to check if the value has been set.
11187func (p *Params) GetTextOk() (string, bool) {
11188	if p == nil || p.Text == nil {
11189		return "", false
11190	}
11191	return *p.Text, true
11192}
11193
11194// HasText returns a boolean if a field has been set.
11195func (p *Params) HasText() bool {
11196	if p != nil && p.Text != nil {
11197		return true
11198	}
11199
11200	return false
11201}
11202
11203// SetText allocates a new p.Text and returns the pointer to it.
11204func (p *Params) SetText(v string) {
11205	p.Text = &v
11206}
11207
11208// GetName returns the Name field if non-nil, zero value otherwise.
11209func (p *Period) GetName() string {
11210	if p == nil || p.Name == nil {
11211		return ""
11212	}
11213	return *p.Name
11214}
11215
11216// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
11217// and a boolean to check if the value has been set.
11218func (p *Period) GetNameOk() (string, bool) {
11219	if p == nil || p.Name == nil {
11220		return "", false
11221	}
11222	return *p.Name, true
11223}
11224
11225// HasName returns a boolean if a field has been set.
11226func (p *Period) HasName() bool {
11227	if p != nil && p.Name != nil {
11228		return true
11229	}
11230
11231	return false
11232}
11233
11234// SetName allocates a new p.Name and returns the pointer to it.
11235func (p *Period) SetName(v string) {
11236	p.Name = &v
11237}
11238
11239// GetSeconds returns the Seconds field if non-nil, zero value otherwise.
11240func (p *Period) GetSeconds() json.Number {
11241	if p == nil || p.Seconds == nil {
11242		return ""
11243	}
11244	return *p.Seconds
11245}
11246
11247// GetSecondsOk returns a tuple with the Seconds field if it's non-nil, zero value otherwise
11248// and a boolean to check if the value has been set.
11249func (p *Period) GetSecondsOk() (json.Number, bool) {
11250	if p == nil || p.Seconds == nil {
11251		return "", false
11252	}
11253	return *p.Seconds, true
11254}
11255
11256// HasSeconds returns a boolean if a field has been set.
11257func (p *Period) HasSeconds() bool {
11258	if p != nil && p.Seconds != nil {
11259		return true
11260	}
11261
11262	return false
11263}
11264
11265// SetSeconds allocates a new p.Seconds and returns the pointer to it.
11266func (p *Period) SetSeconds(v json.Number) {
11267	p.Seconds = &v
11268}
11269
11270// GetText returns the Text field if non-nil, zero value otherwise.
11271func (p *Period) GetText() string {
11272	if p == nil || p.Text == nil {
11273		return ""
11274	}
11275	return *p.Text
11276}
11277
11278// GetTextOk returns a tuple with the Text field if it's non-nil, zero value otherwise
11279// and a boolean to check if the value has been set.
11280func (p *Period) GetTextOk() (string, bool) {
11281	if p == nil || p.Text == nil {
11282		return "", false
11283	}
11284	return *p.Text, true
11285}
11286
11287// HasText returns a boolean if a field has been set.
11288func (p *Period) HasText() bool {
11289	if p != nil && p.Text != nil {
11290		return true
11291	}
11292
11293	return false
11294}
11295
11296// SetText allocates a new p.Text and returns the pointer to it.
11297func (p *Period) SetText(v string) {
11298	p.Text = &v
11299}
11300
11301// GetUnit returns the Unit field if non-nil, zero value otherwise.
11302func (p *Period) GetUnit() string {
11303	if p == nil || p.Unit == nil {
11304		return ""
11305	}
11306	return *p.Unit
11307}
11308
11309// GetUnitOk returns a tuple with the Unit field if it's non-nil, zero value otherwise
11310// and a boolean to check if the value has been set.
11311func (p *Period) GetUnitOk() (string, bool) {
11312	if p == nil || p.Unit == nil {
11313		return "", false
11314	}
11315	return *p.Unit, true
11316}
11317
11318// HasUnit returns a boolean if a field has been set.
11319func (p *Period) HasUnit() bool {
11320	if p != nil && p.Unit != nil {
11321		return true
11322	}
11323
11324	return false
11325}
11326
11327// SetUnit allocates a new p.Unit and returns the pointer to it.
11328func (p *Period) SetUnit(v string) {
11329	p.Unit = &v
11330}
11331
11332// GetValue returns the Value field if non-nil, zero value otherwise.
11333func (p *Period) GetValue() string {
11334	if p == nil || p.Value == nil {
11335		return ""
11336	}
11337	return *p.Value
11338}
11339
11340// GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise
11341// and a boolean to check if the value has been set.
11342func (p *Period) GetValueOk() (string, bool) {
11343	if p == nil || p.Value == nil {
11344		return "", false
11345	}
11346	return *p.Value, true
11347}
11348
11349// HasValue returns a boolean if a field has been set.
11350func (p *Period) HasValue() bool {
11351	if p != nil && p.Value != nil {
11352		return true
11353	}
11354
11355	return false
11356}
11357
11358// SetValue allocates a new p.Value and returns the pointer to it.
11359func (p *Period) SetValue(v string) {
11360	p.Value = &v
11361}
11362
11363// GetLogSet returns the LogSet field if non-nil, zero value otherwise.
11364func (q *QueryConfig) GetLogSet() LogSet {
11365	if q == nil || q.LogSet == nil {
11366		return LogSet{}
11367	}
11368	return *q.LogSet
11369}
11370
11371// GetLogSetOk returns a tuple with the LogSet field if it's non-nil, zero value otherwise
11372// and a boolean to check if the value has been set.
11373func (q *QueryConfig) GetLogSetOk() (LogSet, bool) {
11374	if q == nil || q.LogSet == nil {
11375		return LogSet{}, false
11376	}
11377	return *q.LogSet, true
11378}
11379
11380// HasLogSet returns a boolean if a field has been set.
11381func (q *QueryConfig) HasLogSet() bool {
11382	if q != nil && q.LogSet != nil {
11383		return true
11384	}
11385
11386	return false
11387}
11388
11389// SetLogSet allocates a new q.LogSet and returns the pointer to it.
11390func (q *QueryConfig) SetLogSet(v LogSet) {
11391	q.LogSet = &v
11392}
11393
11394// GetQueryIsFailed returns the QueryIsFailed field if non-nil, zero value otherwise.
11395func (q *QueryConfig) GetQueryIsFailed() bool {
11396	if q == nil || q.QueryIsFailed == nil {
11397		return false
11398	}
11399	return *q.QueryIsFailed
11400}
11401
11402// GetQueryIsFailedOk returns a tuple with the QueryIsFailed field if it's non-nil, zero value otherwise
11403// and a boolean to check if the value has been set.
11404func (q *QueryConfig) GetQueryIsFailedOk() (bool, bool) {
11405	if q == nil || q.QueryIsFailed == nil {
11406		return false, false
11407	}
11408	return *q.QueryIsFailed, true
11409}
11410
11411// HasQueryIsFailed returns a boolean if a field has been set.
11412func (q *QueryConfig) HasQueryIsFailed() bool {
11413	if q != nil && q.QueryIsFailed != nil {
11414		return true
11415	}
11416
11417	return false
11418}
11419
11420// SetQueryIsFailed allocates a new q.QueryIsFailed and returns the pointer to it.
11421func (q *QueryConfig) SetQueryIsFailed(v bool) {
11422	q.QueryIsFailed = &v
11423}
11424
11425// GetQueryString returns the QueryString field if non-nil, zero value otherwise.
11426func (q *QueryConfig) GetQueryString() string {
11427	if q == nil || q.QueryString == nil {
11428		return ""
11429	}
11430	return *q.QueryString
11431}
11432
11433// GetQueryStringOk returns a tuple with the QueryString field if it's non-nil, zero value otherwise
11434// and a boolean to check if the value has been set.
11435func (q *QueryConfig) GetQueryStringOk() (string, bool) {
11436	if q == nil || q.QueryString == nil {
11437		return "", false
11438	}
11439	return *q.QueryString, true
11440}
11441
11442// HasQueryString returns a boolean if a field has been set.
11443func (q *QueryConfig) HasQueryString() bool {
11444	if q != nil && q.QueryString != nil {
11445		return true
11446	}
11447
11448	return false
11449}
11450
11451// SetQueryString allocates a new q.QueryString and returns the pointer to it.
11452func (q *QueryConfig) SetQueryString(v string) {
11453	q.QueryString = &v
11454}
11455
11456// GetTimeRange returns the TimeRange field if non-nil, zero value otherwise.
11457func (q *QueryConfig) GetTimeRange() TimeRange {
11458	if q == nil || q.TimeRange == nil {
11459		return TimeRange{}
11460	}
11461	return *q.TimeRange
11462}
11463
11464// GetTimeRangeOk returns a tuple with the TimeRange field if it's non-nil, zero value otherwise
11465// and a boolean to check if the value has been set.
11466func (q *QueryConfig) GetTimeRangeOk() (TimeRange, bool) {
11467	if q == nil || q.TimeRange == nil {
11468		return TimeRange{}, false
11469	}
11470	return *q.TimeRange, true
11471}
11472
11473// HasTimeRange returns a boolean if a field has been set.
11474func (q *QueryConfig) HasTimeRange() bool {
11475	if q != nil && q.TimeRange != nil {
11476		return true
11477	}
11478
11479	return false
11480}
11481
11482// SetTimeRange allocates a new q.TimeRange and returns the pointer to it.
11483func (q *QueryConfig) SetTimeRange(v TimeRange) {
11484	q.TimeRange = &v
11485}
11486
11487// GetAutoscale returns the Autoscale field if non-nil, zero value otherwise.
11488func (q *QueryValueDefinition) GetAutoscale() bool {
11489	if q == nil || q.Autoscale == nil {
11490		return false
11491	}
11492	return *q.Autoscale
11493}
11494
11495// GetAutoscaleOk returns a tuple with the Autoscale field if it's non-nil, zero value otherwise
11496// and a boolean to check if the value has been set.
11497func (q *QueryValueDefinition) GetAutoscaleOk() (bool, bool) {
11498	if q == nil || q.Autoscale == nil {
11499		return false, false
11500	}
11501	return *q.Autoscale, true
11502}
11503
11504// HasAutoscale returns a boolean if a field has been set.
11505func (q *QueryValueDefinition) HasAutoscale() bool {
11506	if q != nil && q.Autoscale != nil {
11507		return true
11508	}
11509
11510	return false
11511}
11512
11513// SetAutoscale allocates a new q.Autoscale and returns the pointer to it.
11514func (q *QueryValueDefinition) SetAutoscale(v bool) {
11515	q.Autoscale = &v
11516}
11517
11518// GetCustomUnit returns the CustomUnit field if non-nil, zero value otherwise.
11519func (q *QueryValueDefinition) GetCustomUnit() string {
11520	if q == nil || q.CustomUnit == nil {
11521		return ""
11522	}
11523	return *q.CustomUnit
11524}
11525
11526// GetCustomUnitOk returns a tuple with the CustomUnit field if it's non-nil, zero value otherwise
11527// and a boolean to check if the value has been set.
11528func (q *QueryValueDefinition) GetCustomUnitOk() (string, bool) {
11529	if q == nil || q.CustomUnit == nil {
11530		return "", false
11531	}
11532	return *q.CustomUnit, true
11533}
11534
11535// HasCustomUnit returns a boolean if a field has been set.
11536func (q *QueryValueDefinition) HasCustomUnit() bool {
11537	if q != nil && q.CustomUnit != nil {
11538		return true
11539	}
11540
11541	return false
11542}
11543
11544// SetCustomUnit allocates a new q.CustomUnit and returns the pointer to it.
11545func (q *QueryValueDefinition) SetCustomUnit(v string) {
11546	q.CustomUnit = &v
11547}
11548
11549// GetPrecision returns the Precision field if non-nil, zero value otherwise.
11550func (q *QueryValueDefinition) GetPrecision() int {
11551	if q == nil || q.Precision == nil {
11552		return 0
11553	}
11554	return *q.Precision
11555}
11556
11557// GetPrecisionOk returns a tuple with the Precision field if it's non-nil, zero value otherwise
11558// and a boolean to check if the value has been set.
11559func (q *QueryValueDefinition) GetPrecisionOk() (int, bool) {
11560	if q == nil || q.Precision == nil {
11561		return 0, false
11562	}
11563	return *q.Precision, true
11564}
11565
11566// HasPrecision returns a boolean if a field has been set.
11567func (q *QueryValueDefinition) HasPrecision() bool {
11568	if q != nil && q.Precision != nil {
11569		return true
11570	}
11571
11572	return false
11573}
11574
11575// SetPrecision allocates a new q.Precision and returns the pointer to it.
11576func (q *QueryValueDefinition) SetPrecision(v int) {
11577	q.Precision = &v
11578}
11579
11580// GetTextAlign returns the TextAlign field if non-nil, zero value otherwise.
11581func (q *QueryValueDefinition) GetTextAlign() string {
11582	if q == nil || q.TextAlign == nil {
11583		return ""
11584	}
11585	return *q.TextAlign
11586}
11587
11588// GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise
11589// and a boolean to check if the value has been set.
11590func (q *QueryValueDefinition) GetTextAlignOk() (string, bool) {
11591	if q == nil || q.TextAlign == nil {
11592		return "", false
11593	}
11594	return *q.TextAlign, true
11595}
11596
11597// HasTextAlign returns a boolean if a field has been set.
11598func (q *QueryValueDefinition) HasTextAlign() bool {
11599	if q != nil && q.TextAlign != nil {
11600		return true
11601	}
11602
11603	return false
11604}
11605
11606// SetTextAlign allocates a new q.TextAlign and returns the pointer to it.
11607func (q *QueryValueDefinition) SetTextAlign(v string) {
11608	q.TextAlign = &v
11609}
11610
11611// GetTime returns the Time field if non-nil, zero value otherwise.
11612func (q *QueryValueDefinition) GetTime() WidgetTime {
11613	if q == nil || q.Time == nil {
11614		return WidgetTime{}
11615	}
11616	return *q.Time
11617}
11618
11619// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
11620// and a boolean to check if the value has been set.
11621func (q *QueryValueDefinition) GetTimeOk() (WidgetTime, bool) {
11622	if q == nil || q.Time == nil {
11623		return WidgetTime{}, false
11624	}
11625	return *q.Time, true
11626}
11627
11628// HasTime returns a boolean if a field has been set.
11629func (q *QueryValueDefinition) HasTime() bool {
11630	if q != nil && q.Time != nil {
11631		return true
11632	}
11633
11634	return false
11635}
11636
11637// SetTime allocates a new q.Time and returns the pointer to it.
11638func (q *QueryValueDefinition) SetTime(v WidgetTime) {
11639	q.Time = &v
11640}
11641
11642// GetTitle returns the Title field if non-nil, zero value otherwise.
11643func (q *QueryValueDefinition) GetTitle() string {
11644	if q == nil || q.Title == nil {
11645		return ""
11646	}
11647	return *q.Title
11648}
11649
11650// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
11651// and a boolean to check if the value has been set.
11652func (q *QueryValueDefinition) GetTitleOk() (string, bool) {
11653	if q == nil || q.Title == nil {
11654		return "", false
11655	}
11656	return *q.Title, true
11657}
11658
11659// HasTitle returns a boolean if a field has been set.
11660func (q *QueryValueDefinition) HasTitle() bool {
11661	if q != nil && q.Title != nil {
11662		return true
11663	}
11664
11665	return false
11666}
11667
11668// SetTitle allocates a new q.Title and returns the pointer to it.
11669func (q *QueryValueDefinition) SetTitle(v string) {
11670	q.Title = &v
11671}
11672
11673// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
11674func (q *QueryValueDefinition) GetTitleAlign() string {
11675	if q == nil || q.TitleAlign == nil {
11676		return ""
11677	}
11678	return *q.TitleAlign
11679}
11680
11681// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
11682// and a boolean to check if the value has been set.
11683func (q *QueryValueDefinition) GetTitleAlignOk() (string, bool) {
11684	if q == nil || q.TitleAlign == nil {
11685		return "", false
11686	}
11687	return *q.TitleAlign, true
11688}
11689
11690// HasTitleAlign returns a boolean if a field has been set.
11691func (q *QueryValueDefinition) HasTitleAlign() bool {
11692	if q != nil && q.TitleAlign != nil {
11693		return true
11694	}
11695
11696	return false
11697}
11698
11699// SetTitleAlign allocates a new q.TitleAlign and returns the pointer to it.
11700func (q *QueryValueDefinition) SetTitleAlign(v string) {
11701	q.TitleAlign = &v
11702}
11703
11704// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
11705func (q *QueryValueDefinition) GetTitleSize() string {
11706	if q == nil || q.TitleSize == nil {
11707		return ""
11708	}
11709	return *q.TitleSize
11710}
11711
11712// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
11713// and a boolean to check if the value has been set.
11714func (q *QueryValueDefinition) GetTitleSizeOk() (string, bool) {
11715	if q == nil || q.TitleSize == nil {
11716		return "", false
11717	}
11718	return *q.TitleSize, true
11719}
11720
11721// HasTitleSize returns a boolean if a field has been set.
11722func (q *QueryValueDefinition) HasTitleSize() bool {
11723	if q != nil && q.TitleSize != nil {
11724		return true
11725	}
11726
11727	return false
11728}
11729
11730// SetTitleSize allocates a new q.TitleSize and returns the pointer to it.
11731func (q *QueryValueDefinition) SetTitleSize(v string) {
11732	q.TitleSize = &v
11733}
11734
11735// GetType returns the Type field if non-nil, zero value otherwise.
11736func (q *QueryValueDefinition) GetType() string {
11737	if q == nil || q.Type == nil {
11738		return ""
11739	}
11740	return *q.Type
11741}
11742
11743// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
11744// and a boolean to check if the value has been set.
11745func (q *QueryValueDefinition) GetTypeOk() (string, bool) {
11746	if q == nil || q.Type == nil {
11747		return "", false
11748	}
11749	return *q.Type, true
11750}
11751
11752// HasType returns a boolean if a field has been set.
11753func (q *QueryValueDefinition) HasType() bool {
11754	if q != nil && q.Type != nil {
11755		return true
11756	}
11757
11758	return false
11759}
11760
11761// SetType allocates a new q.Type and returns the pointer to it.
11762func (q *QueryValueDefinition) SetType(v string) {
11763	q.Type = &v
11764}
11765
11766// GetAggregator returns the Aggregator field if non-nil, zero value otherwise.
11767func (q *QueryValueRequest) GetAggregator() string {
11768	if q == nil || q.Aggregator == nil {
11769		return ""
11770	}
11771	return *q.Aggregator
11772}
11773
11774// GetAggregatorOk returns a tuple with the Aggregator field if it's non-nil, zero value otherwise
11775// and a boolean to check if the value has been set.
11776func (q *QueryValueRequest) GetAggregatorOk() (string, bool) {
11777	if q == nil || q.Aggregator == nil {
11778		return "", false
11779	}
11780	return *q.Aggregator, true
11781}
11782
11783// HasAggregator returns a boolean if a field has been set.
11784func (q *QueryValueRequest) HasAggregator() bool {
11785	if q != nil && q.Aggregator != nil {
11786		return true
11787	}
11788
11789	return false
11790}
11791
11792// SetAggregator allocates a new q.Aggregator and returns the pointer to it.
11793func (q *QueryValueRequest) SetAggregator(v string) {
11794	q.Aggregator = &v
11795}
11796
11797// GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise.
11798func (q *QueryValueRequest) GetApmQuery() WidgetApmOrLogQuery {
11799	if q == nil || q.ApmQuery == nil {
11800		return WidgetApmOrLogQuery{}
11801	}
11802	return *q.ApmQuery
11803}
11804
11805// GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise
11806// and a boolean to check if the value has been set.
11807func (q *QueryValueRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) {
11808	if q == nil || q.ApmQuery == nil {
11809		return WidgetApmOrLogQuery{}, false
11810	}
11811	return *q.ApmQuery, true
11812}
11813
11814// HasApmQuery returns a boolean if a field has been set.
11815func (q *QueryValueRequest) HasApmQuery() bool {
11816	if q != nil && q.ApmQuery != nil {
11817		return true
11818	}
11819
11820	return false
11821}
11822
11823// SetApmQuery allocates a new q.ApmQuery and returns the pointer to it.
11824func (q *QueryValueRequest) SetApmQuery(v WidgetApmOrLogQuery) {
11825	q.ApmQuery = &v
11826}
11827
11828// GetLogQuery returns the LogQuery field if non-nil, zero value otherwise.
11829func (q *QueryValueRequest) GetLogQuery() WidgetApmOrLogQuery {
11830	if q == nil || q.LogQuery == nil {
11831		return WidgetApmOrLogQuery{}
11832	}
11833	return *q.LogQuery
11834}
11835
11836// GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise
11837// and a boolean to check if the value has been set.
11838func (q *QueryValueRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) {
11839	if q == nil || q.LogQuery == nil {
11840		return WidgetApmOrLogQuery{}, false
11841	}
11842	return *q.LogQuery, true
11843}
11844
11845// HasLogQuery returns a boolean if a field has been set.
11846func (q *QueryValueRequest) HasLogQuery() bool {
11847	if q != nil && q.LogQuery != nil {
11848		return true
11849	}
11850
11851	return false
11852}
11853
11854// SetLogQuery allocates a new q.LogQuery and returns the pointer to it.
11855func (q *QueryValueRequest) SetLogQuery(v WidgetApmOrLogQuery) {
11856	q.LogQuery = &v
11857}
11858
11859// GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise.
11860func (q *QueryValueRequest) GetMetricQuery() string {
11861	if q == nil || q.MetricQuery == nil {
11862		return ""
11863	}
11864	return *q.MetricQuery
11865}
11866
11867// GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise
11868// and a boolean to check if the value has been set.
11869func (q *QueryValueRequest) GetMetricQueryOk() (string, bool) {
11870	if q == nil || q.MetricQuery == nil {
11871		return "", false
11872	}
11873	return *q.MetricQuery, true
11874}
11875
11876// HasMetricQuery returns a boolean if a field has been set.
11877func (q *QueryValueRequest) HasMetricQuery() bool {
11878	if q != nil && q.MetricQuery != nil {
11879		return true
11880	}
11881
11882	return false
11883}
11884
11885// SetMetricQuery allocates a new q.MetricQuery and returns the pointer to it.
11886func (q *QueryValueRequest) SetMetricQuery(v string) {
11887	q.MetricQuery = &v
11888}
11889
11890// GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise.
11891func (q *QueryValueRequest) GetProcessQuery() WidgetProcessQuery {
11892	if q == nil || q.ProcessQuery == nil {
11893		return WidgetProcessQuery{}
11894	}
11895	return *q.ProcessQuery
11896}
11897
11898// GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise
11899// and a boolean to check if the value has been set.
11900func (q *QueryValueRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) {
11901	if q == nil || q.ProcessQuery == nil {
11902		return WidgetProcessQuery{}, false
11903	}
11904	return *q.ProcessQuery, true
11905}
11906
11907// HasProcessQuery returns a boolean if a field has been set.
11908func (q *QueryValueRequest) HasProcessQuery() bool {
11909	if q != nil && q.ProcessQuery != nil {
11910		return true
11911	}
11912
11913	return false
11914}
11915
11916// SetProcessQuery allocates a new q.ProcessQuery and returns the pointer to it.
11917func (q *QueryValueRequest) SetProcessQuery(v WidgetProcessQuery) {
11918	q.ProcessQuery = &v
11919}
11920
11921// GetPeriod returns the Period field if non-nil, zero value otherwise.
11922func (r *Recurrence) GetPeriod() int {
11923	if r == nil || r.Period == nil {
11924		return 0
11925	}
11926	return *r.Period
11927}
11928
11929// GetPeriodOk returns a tuple with the Period field if it's non-nil, zero value otherwise
11930// and a boolean to check if the value has been set.
11931func (r *Recurrence) GetPeriodOk() (int, bool) {
11932	if r == nil || r.Period == nil {
11933		return 0, false
11934	}
11935	return *r.Period, true
11936}
11937
11938// HasPeriod returns a boolean if a field has been set.
11939func (r *Recurrence) HasPeriod() bool {
11940	if r != nil && r.Period != nil {
11941		return true
11942	}
11943
11944	return false
11945}
11946
11947// SetPeriod allocates a new r.Period and returns the pointer to it.
11948func (r *Recurrence) SetPeriod(v int) {
11949	r.Period = &v
11950}
11951
11952// GetType returns the Type field if non-nil, zero value otherwise.
11953func (r *Recurrence) GetType() string {
11954	if r == nil || r.Type == nil {
11955		return ""
11956	}
11957	return *r.Type
11958}
11959
11960// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
11961// and a boolean to check if the value has been set.
11962func (r *Recurrence) GetTypeOk() (string, bool) {
11963	if r == nil || r.Type == nil {
11964		return "", false
11965	}
11966	return *r.Type, true
11967}
11968
11969// HasType returns a boolean if a field has been set.
11970func (r *Recurrence) HasType() bool {
11971	if r != nil && r.Type != nil {
11972		return true
11973	}
11974
11975	return false
11976}
11977
11978// SetType allocates a new r.Type and returns the pointer to it.
11979func (r *Recurrence) SetType(v string) {
11980	r.Type = &v
11981}
11982
11983// GetUntilDate returns the UntilDate field if non-nil, zero value otherwise.
11984func (r *Recurrence) GetUntilDate() int {
11985	if r == nil || r.UntilDate == nil {
11986		return 0
11987	}
11988	return *r.UntilDate
11989}
11990
11991// GetUntilDateOk returns a tuple with the UntilDate field if it's non-nil, zero value otherwise
11992// and a boolean to check if the value has been set.
11993func (r *Recurrence) GetUntilDateOk() (int, bool) {
11994	if r == nil || r.UntilDate == nil {
11995		return 0, false
11996	}
11997	return *r.UntilDate, true
11998}
11999
12000// HasUntilDate returns a boolean if a field has been set.
12001func (r *Recurrence) HasUntilDate() bool {
12002	if r != nil && r.UntilDate != nil {
12003		return true
12004	}
12005
12006	return false
12007}
12008
12009// SetUntilDate allocates a new r.UntilDate and returns the pointer to it.
12010func (r *Recurrence) SetUntilDate(v int) {
12011	r.UntilDate = &v
12012}
12013
12014// GetUntilOccurrences returns the UntilOccurrences field if non-nil, zero value otherwise.
12015func (r *Recurrence) GetUntilOccurrences() int {
12016	if r == nil || r.UntilOccurrences == nil {
12017		return 0
12018	}
12019	return *r.UntilOccurrences
12020}
12021
12022// GetUntilOccurrencesOk returns a tuple with the UntilOccurrences field if it's non-nil, zero value otherwise
12023// and a boolean to check if the value has been set.
12024func (r *Recurrence) GetUntilOccurrencesOk() (int, bool) {
12025	if r == nil || r.UntilOccurrences == nil {
12026		return 0, false
12027	}
12028	return *r.UntilOccurrences, true
12029}
12030
12031// HasUntilOccurrences returns a boolean if a field has been set.
12032func (r *Recurrence) HasUntilOccurrences() bool {
12033	if r != nil && r.UntilOccurrences != nil {
12034		return true
12035	}
12036
12037	return false
12038}
12039
12040// SetUntilOccurrences allocates a new r.UntilOccurrences and returns the pointer to it.
12041func (r *Recurrence) SetUntilOccurrences(v int) {
12042	r.UntilOccurrences = &v
12043}
12044
12045// GetAPIKey returns the APIKey field if non-nil, zero value otherwise.
12046func (r *reqAPIKey) GetAPIKey() APIKey {
12047	if r == nil || r.APIKey == nil {
12048		return APIKey{}
12049	}
12050	return *r.APIKey
12051}
12052
12053// GetAPIKeyOk returns a tuple with the APIKey field if it's non-nil, zero value otherwise
12054// and a boolean to check if the value has been set.
12055func (r *reqAPIKey) GetAPIKeyOk() (APIKey, bool) {
12056	if r == nil || r.APIKey == nil {
12057		return APIKey{}, false
12058	}
12059	return *r.APIKey, true
12060}
12061
12062// HasAPIKey returns a boolean if a field has been set.
12063func (r *reqAPIKey) HasAPIKey() bool {
12064	if r != nil && r.APIKey != nil {
12065		return true
12066	}
12067
12068	return false
12069}
12070
12071// SetAPIKey allocates a new r.APIKey and returns the pointer to it.
12072func (r *reqAPIKey) SetAPIKey(v APIKey) {
12073	r.APIKey = &v
12074}
12075
12076// GetComment returns the Comment field if non-nil, zero value otherwise.
12077func (r *reqComment) GetComment() Comment {
12078	if r == nil || r.Comment == nil {
12079		return Comment{}
12080	}
12081	return *r.Comment
12082}
12083
12084// GetCommentOk returns a tuple with the Comment field if it's non-nil, zero value otherwise
12085// and a boolean to check if the value has been set.
12086func (r *reqComment) GetCommentOk() (Comment, bool) {
12087	if r == nil || r.Comment == nil {
12088		return Comment{}, false
12089	}
12090	return *r.Comment, true
12091}
12092
12093// HasComment returns a boolean if a field has been set.
12094func (r *reqComment) HasComment() bool {
12095	if r != nil && r.Comment != nil {
12096		return true
12097	}
12098
12099	return false
12100}
12101
12102// SetComment allocates a new r.Comment and returns the pointer to it.
12103func (r *reqComment) SetComment(v Comment) {
12104	r.Comment = &v
12105}
12106
12107// GetDashboard returns the Dashboard field if non-nil, zero value otherwise.
12108func (r *reqGetDashboard) GetDashboard() Dashboard {
12109	if r == nil || r.Dashboard == nil {
12110		return Dashboard{}
12111	}
12112	return *r.Dashboard
12113}
12114
12115// GetDashboardOk returns a tuple with the Dashboard field if it's non-nil, zero value otherwise
12116// and a boolean to check if the value has been set.
12117func (r *reqGetDashboard) GetDashboardOk() (Dashboard, bool) {
12118	if r == nil || r.Dashboard == nil {
12119		return Dashboard{}, false
12120	}
12121	return *r.Dashboard, true
12122}
12123
12124// HasDashboard returns a boolean if a field has been set.
12125func (r *reqGetDashboard) HasDashboard() bool {
12126	if r != nil && r.Dashboard != nil {
12127		return true
12128	}
12129
12130	return false
12131}
12132
12133// SetDashboard allocates a new r.Dashboard and returns the pointer to it.
12134func (r *reqGetDashboard) SetDashboard(v Dashboard) {
12135	r.Dashboard = &v
12136}
12137
12138// GetResource returns the Resource field if non-nil, zero value otherwise.
12139func (r *reqGetDashboard) GetResource() string {
12140	if r == nil || r.Resource == nil {
12141		return ""
12142	}
12143	return *r.Resource
12144}
12145
12146// GetResourceOk returns a tuple with the Resource field if it's non-nil, zero value otherwise
12147// and a boolean to check if the value has been set.
12148func (r *reqGetDashboard) GetResourceOk() (string, bool) {
12149	if r == nil || r.Resource == nil {
12150		return "", false
12151	}
12152	return *r.Resource, true
12153}
12154
12155// HasResource returns a boolean if a field has been set.
12156func (r *reqGetDashboard) HasResource() bool {
12157	if r != nil && r.Resource != nil {
12158		return true
12159	}
12160
12161	return false
12162}
12163
12164// SetResource allocates a new r.Resource and returns the pointer to it.
12165func (r *reqGetDashboard) SetResource(v string) {
12166	r.Resource = &v
12167}
12168
12169// GetUrl returns the Url field if non-nil, zero value otherwise.
12170func (r *reqGetDashboard) GetUrl() string {
12171	if r == nil || r.Url == nil {
12172		return ""
12173	}
12174	return *r.Url
12175}
12176
12177// GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
12178// and a boolean to check if the value has been set.
12179func (r *reqGetDashboard) GetUrlOk() (string, bool) {
12180	if r == nil || r.Url == nil {
12181		return "", false
12182	}
12183	return *r.Url, true
12184}
12185
12186// HasUrl returns a boolean if a field has been set.
12187func (r *reqGetDashboard) HasUrl() bool {
12188	if r != nil && r.Url != nil {
12189		return true
12190	}
12191
12192	return false
12193}
12194
12195// SetUrl allocates a new r.Url and returns the pointer to it.
12196func (r *reqGetDashboard) SetUrl(v string) {
12197	r.Url = &v
12198}
12199
12200// GetEvent returns the Event field if non-nil, zero value otherwise.
12201func (r *reqGetEvent) GetEvent() Event {
12202	if r == nil || r.Event == nil {
12203		return Event{}
12204	}
12205	return *r.Event
12206}
12207
12208// GetEventOk returns a tuple with the Event field if it's non-nil, zero value otherwise
12209// and a boolean to check if the value has been set.
12210func (r *reqGetEvent) GetEventOk() (Event, bool) {
12211	if r == nil || r.Event == nil {
12212		return Event{}, false
12213	}
12214	return *r.Event, true
12215}
12216
12217// HasEvent returns a boolean if a field has been set.
12218func (r *reqGetEvent) HasEvent() bool {
12219	if r != nil && r.Event != nil {
12220		return true
12221	}
12222
12223	return false
12224}
12225
12226// SetEvent allocates a new r.Event and returns the pointer to it.
12227func (r *reqGetEvent) SetEvent(v Event) {
12228	r.Event = &v
12229}
12230
12231// GetTags returns the Tags field if non-nil, zero value otherwise.
12232func (r *reqGetTags) GetTags() TagMap {
12233	if r == nil || r.Tags == nil {
12234		return TagMap{}
12235	}
12236	return *r.Tags
12237}
12238
12239// GetTagsOk returns a tuple with the Tags field if it's non-nil, zero value otherwise
12240// and a boolean to check if the value has been set.
12241func (r *reqGetTags) GetTagsOk() (TagMap, bool) {
12242	if r == nil || r.Tags == nil {
12243		return TagMap{}, false
12244	}
12245	return *r.Tags, true
12246}
12247
12248// HasTags returns a boolean if a field has been set.
12249func (r *reqGetTags) HasTags() bool {
12250	if r != nil && r.Tags != nil {
12251		return true
12252	}
12253
12254	return false
12255}
12256
12257// SetTags allocates a new r.Tags and returns the pointer to it.
12258func (r *reqGetTags) SetTags(v TagMap) {
12259	r.Tags = &v
12260}
12261
12262// GetColor returns the Color field if non-nil, zero value otherwise.
12263func (r *Rule) GetColor() string {
12264	if r == nil || r.Color == nil {
12265		return ""
12266	}
12267	return *r.Color
12268}
12269
12270// GetColorOk returns a tuple with the Color field if it's non-nil, zero value otherwise
12271// and a boolean to check if the value has been set.
12272func (r *Rule) GetColorOk() (string, bool) {
12273	if r == nil || r.Color == nil {
12274		return "", false
12275	}
12276	return *r.Color, true
12277}
12278
12279// HasColor returns a boolean if a field has been set.
12280func (r *Rule) HasColor() bool {
12281	if r != nil && r.Color != nil {
12282		return true
12283	}
12284
12285	return false
12286}
12287
12288// SetColor allocates a new r.Color and returns the pointer to it.
12289func (r *Rule) SetColor(v string) {
12290	r.Color = &v
12291}
12292
12293// GetThreshold returns the Threshold field if non-nil, zero value otherwise.
12294func (r *Rule) GetThreshold() json.Number {
12295	if r == nil || r.Threshold == nil {
12296		return ""
12297	}
12298	return *r.Threshold
12299}
12300
12301// GetThresholdOk returns a tuple with the Threshold field if it's non-nil, zero value otherwise
12302// and a boolean to check if the value has been set.
12303func (r *Rule) GetThresholdOk() (json.Number, bool) {
12304	if r == nil || r.Threshold == nil {
12305		return "", false
12306	}
12307	return *r.Threshold, true
12308}
12309
12310// HasThreshold returns a boolean if a field has been set.
12311func (r *Rule) HasThreshold() bool {
12312	if r != nil && r.Threshold != nil {
12313		return true
12314	}
12315
12316	return false
12317}
12318
12319// SetThreshold allocates a new r.Threshold and returns the pointer to it.
12320func (r *Rule) SetThreshold(v json.Number) {
12321	r.Threshold = &v
12322}
12323
12324// GetTimeframe returns the Timeframe field if non-nil, zero value otherwise.
12325func (r *Rule) GetTimeframe() string {
12326	if r == nil || r.Timeframe == nil {
12327		return ""
12328	}
12329	return *r.Timeframe
12330}
12331
12332// GetTimeframeOk returns a tuple with the Timeframe field if it's non-nil, zero value otherwise
12333// and a boolean to check if the value has been set.
12334func (r *Rule) GetTimeframeOk() (string, bool) {
12335	if r == nil || r.Timeframe == nil {
12336		return "", false
12337	}
12338	return *r.Timeframe, true
12339}
12340
12341// HasTimeframe returns a boolean if a field has been set.
12342func (r *Rule) HasTimeframe() bool {
12343	if r != nil && r.Timeframe != nil {
12344		return true
12345	}
12346
12347	return false
12348}
12349
12350// SetTimeframe allocates a new r.Timeframe and returns the pointer to it.
12351func (r *Rule) SetTimeframe(v string) {
12352	r.Timeframe = &v
12353}
12354
12355// GetRequests returns the Requests field if non-nil, zero value otherwise.
12356func (s *ScatterplotDefinition) GetRequests() ScatterplotRequests {
12357	if s == nil || s.Requests == nil {
12358		return ScatterplotRequests{}
12359	}
12360	return *s.Requests
12361}
12362
12363// GetRequestsOk returns a tuple with the Requests field if it's non-nil, zero value otherwise
12364// and a boolean to check if the value has been set.
12365func (s *ScatterplotDefinition) GetRequestsOk() (ScatterplotRequests, bool) {
12366	if s == nil || s.Requests == nil {
12367		return ScatterplotRequests{}, false
12368	}
12369	return *s.Requests, true
12370}
12371
12372// HasRequests returns a boolean if a field has been set.
12373func (s *ScatterplotDefinition) HasRequests() bool {
12374	if s != nil && s.Requests != nil {
12375		return true
12376	}
12377
12378	return false
12379}
12380
12381// SetRequests allocates a new s.Requests and returns the pointer to it.
12382func (s *ScatterplotDefinition) SetRequests(v ScatterplotRequests) {
12383	s.Requests = &v
12384}
12385
12386// GetTime returns the Time field if non-nil, zero value otherwise.
12387func (s *ScatterplotDefinition) GetTime() WidgetTime {
12388	if s == nil || s.Time == nil {
12389		return WidgetTime{}
12390	}
12391	return *s.Time
12392}
12393
12394// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
12395// and a boolean to check if the value has been set.
12396func (s *ScatterplotDefinition) GetTimeOk() (WidgetTime, bool) {
12397	if s == nil || s.Time == nil {
12398		return WidgetTime{}, false
12399	}
12400	return *s.Time, true
12401}
12402
12403// HasTime returns a boolean if a field has been set.
12404func (s *ScatterplotDefinition) HasTime() bool {
12405	if s != nil && s.Time != nil {
12406		return true
12407	}
12408
12409	return false
12410}
12411
12412// SetTime allocates a new s.Time and returns the pointer to it.
12413func (s *ScatterplotDefinition) SetTime(v WidgetTime) {
12414	s.Time = &v
12415}
12416
12417// GetTitle returns the Title field if non-nil, zero value otherwise.
12418func (s *ScatterplotDefinition) GetTitle() string {
12419	if s == nil || s.Title == nil {
12420		return ""
12421	}
12422	return *s.Title
12423}
12424
12425// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
12426// and a boolean to check if the value has been set.
12427func (s *ScatterplotDefinition) GetTitleOk() (string, bool) {
12428	if s == nil || s.Title == nil {
12429		return "", false
12430	}
12431	return *s.Title, true
12432}
12433
12434// HasTitle returns a boolean if a field has been set.
12435func (s *ScatterplotDefinition) HasTitle() bool {
12436	if s != nil && s.Title != nil {
12437		return true
12438	}
12439
12440	return false
12441}
12442
12443// SetTitle allocates a new s.Title and returns the pointer to it.
12444func (s *ScatterplotDefinition) SetTitle(v string) {
12445	s.Title = &v
12446}
12447
12448// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
12449func (s *ScatterplotDefinition) GetTitleAlign() string {
12450	if s == nil || s.TitleAlign == nil {
12451		return ""
12452	}
12453	return *s.TitleAlign
12454}
12455
12456// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
12457// and a boolean to check if the value has been set.
12458func (s *ScatterplotDefinition) GetTitleAlignOk() (string, bool) {
12459	if s == nil || s.TitleAlign == nil {
12460		return "", false
12461	}
12462	return *s.TitleAlign, true
12463}
12464
12465// HasTitleAlign returns a boolean if a field has been set.
12466func (s *ScatterplotDefinition) HasTitleAlign() bool {
12467	if s != nil && s.TitleAlign != nil {
12468		return true
12469	}
12470
12471	return false
12472}
12473
12474// SetTitleAlign allocates a new s.TitleAlign and returns the pointer to it.
12475func (s *ScatterplotDefinition) SetTitleAlign(v string) {
12476	s.TitleAlign = &v
12477}
12478
12479// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
12480func (s *ScatterplotDefinition) GetTitleSize() string {
12481	if s == nil || s.TitleSize == nil {
12482		return ""
12483	}
12484	return *s.TitleSize
12485}
12486
12487// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
12488// and a boolean to check if the value has been set.
12489func (s *ScatterplotDefinition) GetTitleSizeOk() (string, bool) {
12490	if s == nil || s.TitleSize == nil {
12491		return "", false
12492	}
12493	return *s.TitleSize, true
12494}
12495
12496// HasTitleSize returns a boolean if a field has been set.
12497func (s *ScatterplotDefinition) HasTitleSize() bool {
12498	if s != nil && s.TitleSize != nil {
12499		return true
12500	}
12501
12502	return false
12503}
12504
12505// SetTitleSize allocates a new s.TitleSize and returns the pointer to it.
12506func (s *ScatterplotDefinition) SetTitleSize(v string) {
12507	s.TitleSize = &v
12508}
12509
12510// GetType returns the Type field if non-nil, zero value otherwise.
12511func (s *ScatterplotDefinition) GetType() string {
12512	if s == nil || s.Type == nil {
12513		return ""
12514	}
12515	return *s.Type
12516}
12517
12518// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
12519// and a boolean to check if the value has been set.
12520func (s *ScatterplotDefinition) GetTypeOk() (string, bool) {
12521	if s == nil || s.Type == nil {
12522		return "", false
12523	}
12524	return *s.Type, true
12525}
12526
12527// HasType returns a boolean if a field has been set.
12528func (s *ScatterplotDefinition) HasType() bool {
12529	if s != nil && s.Type != nil {
12530		return true
12531	}
12532
12533	return false
12534}
12535
12536// SetType allocates a new s.Type and returns the pointer to it.
12537func (s *ScatterplotDefinition) SetType(v string) {
12538	s.Type = &v
12539}
12540
12541// GetXaxis returns the Xaxis field if non-nil, zero value otherwise.
12542func (s *ScatterplotDefinition) GetXaxis() WidgetAxis {
12543	if s == nil || s.Xaxis == nil {
12544		return WidgetAxis{}
12545	}
12546	return *s.Xaxis
12547}
12548
12549// GetXaxisOk returns a tuple with the Xaxis field if it's non-nil, zero value otherwise
12550// and a boolean to check if the value has been set.
12551func (s *ScatterplotDefinition) GetXaxisOk() (WidgetAxis, bool) {
12552	if s == nil || s.Xaxis == nil {
12553		return WidgetAxis{}, false
12554	}
12555	return *s.Xaxis, true
12556}
12557
12558// HasXaxis returns a boolean if a field has been set.
12559func (s *ScatterplotDefinition) HasXaxis() bool {
12560	if s != nil && s.Xaxis != nil {
12561		return true
12562	}
12563
12564	return false
12565}
12566
12567// SetXaxis allocates a new s.Xaxis and returns the pointer to it.
12568func (s *ScatterplotDefinition) SetXaxis(v WidgetAxis) {
12569	s.Xaxis = &v
12570}
12571
12572// GetYaxis returns the Yaxis field if non-nil, zero value otherwise.
12573func (s *ScatterplotDefinition) GetYaxis() WidgetAxis {
12574	if s == nil || s.Yaxis == nil {
12575		return WidgetAxis{}
12576	}
12577	return *s.Yaxis
12578}
12579
12580// GetYaxisOk returns a tuple with the Yaxis field if it's non-nil, zero value otherwise
12581// and a boolean to check if the value has been set.
12582func (s *ScatterplotDefinition) GetYaxisOk() (WidgetAxis, bool) {
12583	if s == nil || s.Yaxis == nil {
12584		return WidgetAxis{}, false
12585	}
12586	return *s.Yaxis, true
12587}
12588
12589// HasYaxis returns a boolean if a field has been set.
12590func (s *ScatterplotDefinition) HasYaxis() bool {
12591	if s != nil && s.Yaxis != nil {
12592		return true
12593	}
12594
12595	return false
12596}
12597
12598// SetYaxis allocates a new s.Yaxis and returns the pointer to it.
12599func (s *ScatterplotDefinition) SetYaxis(v WidgetAxis) {
12600	s.Yaxis = &v
12601}
12602
12603// GetAggregator returns the Aggregator field if non-nil, zero value otherwise.
12604func (s *ScatterplotRequest) GetAggregator() string {
12605	if s == nil || s.Aggregator == nil {
12606		return ""
12607	}
12608	return *s.Aggregator
12609}
12610
12611// GetAggregatorOk returns a tuple with the Aggregator field if it's non-nil, zero value otherwise
12612// and a boolean to check if the value has been set.
12613func (s *ScatterplotRequest) GetAggregatorOk() (string, bool) {
12614	if s == nil || s.Aggregator == nil {
12615		return "", false
12616	}
12617	return *s.Aggregator, true
12618}
12619
12620// HasAggregator returns a boolean if a field has been set.
12621func (s *ScatterplotRequest) HasAggregator() bool {
12622	if s != nil && s.Aggregator != nil {
12623		return true
12624	}
12625
12626	return false
12627}
12628
12629// SetAggregator allocates a new s.Aggregator and returns the pointer to it.
12630func (s *ScatterplotRequest) SetAggregator(v string) {
12631	s.Aggregator = &v
12632}
12633
12634// GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise.
12635func (s *ScatterplotRequest) GetApmQuery() WidgetApmOrLogQuery {
12636	if s == nil || s.ApmQuery == nil {
12637		return WidgetApmOrLogQuery{}
12638	}
12639	return *s.ApmQuery
12640}
12641
12642// GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise
12643// and a boolean to check if the value has been set.
12644func (s *ScatterplotRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) {
12645	if s == nil || s.ApmQuery == nil {
12646		return WidgetApmOrLogQuery{}, false
12647	}
12648	return *s.ApmQuery, true
12649}
12650
12651// HasApmQuery returns a boolean if a field has been set.
12652func (s *ScatterplotRequest) HasApmQuery() bool {
12653	if s != nil && s.ApmQuery != nil {
12654		return true
12655	}
12656
12657	return false
12658}
12659
12660// SetApmQuery allocates a new s.ApmQuery and returns the pointer to it.
12661func (s *ScatterplotRequest) SetApmQuery(v WidgetApmOrLogQuery) {
12662	s.ApmQuery = &v
12663}
12664
12665// GetLogQuery returns the LogQuery field if non-nil, zero value otherwise.
12666func (s *ScatterplotRequest) GetLogQuery() WidgetApmOrLogQuery {
12667	if s == nil || s.LogQuery == nil {
12668		return WidgetApmOrLogQuery{}
12669	}
12670	return *s.LogQuery
12671}
12672
12673// GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise
12674// and a boolean to check if the value has been set.
12675func (s *ScatterplotRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) {
12676	if s == nil || s.LogQuery == nil {
12677		return WidgetApmOrLogQuery{}, false
12678	}
12679	return *s.LogQuery, true
12680}
12681
12682// HasLogQuery returns a boolean if a field has been set.
12683func (s *ScatterplotRequest) HasLogQuery() bool {
12684	if s != nil && s.LogQuery != nil {
12685		return true
12686	}
12687
12688	return false
12689}
12690
12691// SetLogQuery allocates a new s.LogQuery and returns the pointer to it.
12692func (s *ScatterplotRequest) SetLogQuery(v WidgetApmOrLogQuery) {
12693	s.LogQuery = &v
12694}
12695
12696// GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise.
12697func (s *ScatterplotRequest) GetMetricQuery() string {
12698	if s == nil || s.MetricQuery == nil {
12699		return ""
12700	}
12701	return *s.MetricQuery
12702}
12703
12704// GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise
12705// and a boolean to check if the value has been set.
12706func (s *ScatterplotRequest) GetMetricQueryOk() (string, bool) {
12707	if s == nil || s.MetricQuery == nil {
12708		return "", false
12709	}
12710	return *s.MetricQuery, true
12711}
12712
12713// HasMetricQuery returns a boolean if a field has been set.
12714func (s *ScatterplotRequest) HasMetricQuery() bool {
12715	if s != nil && s.MetricQuery != nil {
12716		return true
12717	}
12718
12719	return false
12720}
12721
12722// SetMetricQuery allocates a new s.MetricQuery and returns the pointer to it.
12723func (s *ScatterplotRequest) SetMetricQuery(v string) {
12724	s.MetricQuery = &v
12725}
12726
12727// GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise.
12728func (s *ScatterplotRequest) GetProcessQuery() WidgetProcessQuery {
12729	if s == nil || s.ProcessQuery == nil {
12730		return WidgetProcessQuery{}
12731	}
12732	return *s.ProcessQuery
12733}
12734
12735// GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise
12736// and a boolean to check if the value has been set.
12737func (s *ScatterplotRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) {
12738	if s == nil || s.ProcessQuery == nil {
12739		return WidgetProcessQuery{}, false
12740	}
12741	return *s.ProcessQuery, true
12742}
12743
12744// HasProcessQuery returns a boolean if a field has been set.
12745func (s *ScatterplotRequest) HasProcessQuery() bool {
12746	if s != nil && s.ProcessQuery != nil {
12747		return true
12748	}
12749
12750	return false
12751}
12752
12753// SetProcessQuery allocates a new s.ProcessQuery and returns the pointer to it.
12754func (s *ScatterplotRequest) SetProcessQuery(v WidgetProcessQuery) {
12755	s.ProcessQuery = &v
12756}
12757
12758// GetX returns the X field if non-nil, zero value otherwise.
12759func (s *ScatterplotRequests) GetX() ScatterplotRequest {
12760	if s == nil || s.X == nil {
12761		return ScatterplotRequest{}
12762	}
12763	return *s.X
12764}
12765
12766// GetXOk returns a tuple with the X field if it's non-nil, zero value otherwise
12767// and a boolean to check if the value has been set.
12768func (s *ScatterplotRequests) GetXOk() (ScatterplotRequest, bool) {
12769	if s == nil || s.X == nil {
12770		return ScatterplotRequest{}, false
12771	}
12772	return *s.X, true
12773}
12774
12775// HasX returns a boolean if a field has been set.
12776func (s *ScatterplotRequests) HasX() bool {
12777	if s != nil && s.X != nil {
12778		return true
12779	}
12780
12781	return false
12782}
12783
12784// SetX allocates a new s.X and returns the pointer to it.
12785func (s *ScatterplotRequests) SetX(v ScatterplotRequest) {
12786	s.X = &v
12787}
12788
12789// GetY returns the Y field if non-nil, zero value otherwise.
12790func (s *ScatterplotRequests) GetY() ScatterplotRequest {
12791	if s == nil || s.Y == nil {
12792		return ScatterplotRequest{}
12793	}
12794	return *s.Y
12795}
12796
12797// GetYOk returns a tuple with the Y field if it's non-nil, zero value otherwise
12798// and a boolean to check if the value has been set.
12799func (s *ScatterplotRequests) GetYOk() (ScatterplotRequest, bool) {
12800	if s == nil || s.Y == nil {
12801		return ScatterplotRequest{}, false
12802	}
12803	return *s.Y, true
12804}
12805
12806// HasY returns a boolean if a field has been set.
12807func (s *ScatterplotRequests) HasY() bool {
12808	if s != nil && s.Y != nil {
12809		return true
12810	}
12811
12812	return false
12813}
12814
12815// SetY allocates a new s.Y and returns the pointer to it.
12816func (s *ScatterplotRequests) SetY(v ScatterplotRequest) {
12817	s.Y = &v
12818}
12819
12820// GetHeight returns the Height field if non-nil, zero value otherwise.
12821func (s *Screenboard) GetHeight() int {
12822	if s == nil || s.Height == nil {
12823		return 0
12824	}
12825	return *s.Height
12826}
12827
12828// GetHeightOk returns a tuple with the Height field if it's non-nil, zero value otherwise
12829// and a boolean to check if the value has been set.
12830func (s *Screenboard) GetHeightOk() (int, bool) {
12831	if s == nil || s.Height == nil {
12832		return 0, false
12833	}
12834	return *s.Height, true
12835}
12836
12837// HasHeight returns a boolean if a field has been set.
12838func (s *Screenboard) HasHeight() bool {
12839	if s != nil && s.Height != nil {
12840		return true
12841	}
12842
12843	return false
12844}
12845
12846// SetHeight allocates a new s.Height and returns the pointer to it.
12847func (s *Screenboard) SetHeight(v int) {
12848	s.Height = &v
12849}
12850
12851// GetId returns the Id field if non-nil, zero value otherwise.
12852func (s *Screenboard) GetId() int {
12853	if s == nil || s.Id == nil {
12854		return 0
12855	}
12856	return *s.Id
12857}
12858
12859// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
12860// and a boolean to check if the value has been set.
12861func (s *Screenboard) GetIdOk() (int, bool) {
12862	if s == nil || s.Id == nil {
12863		return 0, false
12864	}
12865	return *s.Id, true
12866}
12867
12868// HasId returns a boolean if a field has been set.
12869func (s *Screenboard) HasId() bool {
12870	if s != nil && s.Id != nil {
12871		return true
12872	}
12873
12874	return false
12875}
12876
12877// SetId allocates a new s.Id and returns the pointer to it.
12878func (s *Screenboard) SetId(v int) {
12879	s.Id = &v
12880}
12881
12882// GetNewId returns the NewId field if non-nil, zero value otherwise.
12883func (s *Screenboard) GetNewId() string {
12884	if s == nil || s.NewId == nil {
12885		return ""
12886	}
12887	return *s.NewId
12888}
12889
12890// GetNewIdOk returns a tuple with the NewId field if it's non-nil, zero value otherwise
12891// and a boolean to check if the value has been set.
12892func (s *Screenboard) GetNewIdOk() (string, bool) {
12893	if s == nil || s.NewId == nil {
12894		return "", false
12895	}
12896	return *s.NewId, true
12897}
12898
12899// HasNewId returns a boolean if a field has been set.
12900func (s *Screenboard) HasNewId() bool {
12901	if s != nil && s.NewId != nil {
12902		return true
12903	}
12904
12905	return false
12906}
12907
12908// SetNewId allocates a new s.NewId and returns the pointer to it.
12909func (s *Screenboard) SetNewId(v string) {
12910	s.NewId = &v
12911}
12912
12913// GetReadOnly returns the ReadOnly field if non-nil, zero value otherwise.
12914func (s *Screenboard) GetReadOnly() bool {
12915	if s == nil || s.ReadOnly == nil {
12916		return false
12917	}
12918	return *s.ReadOnly
12919}
12920
12921// GetReadOnlyOk returns a tuple with the ReadOnly field if it's non-nil, zero value otherwise
12922// and a boolean to check if the value has been set.
12923func (s *Screenboard) GetReadOnlyOk() (bool, bool) {
12924	if s == nil || s.ReadOnly == nil {
12925		return false, false
12926	}
12927	return *s.ReadOnly, true
12928}
12929
12930// HasReadOnly returns a boolean if a field has been set.
12931func (s *Screenboard) HasReadOnly() bool {
12932	if s != nil && s.ReadOnly != nil {
12933		return true
12934	}
12935
12936	return false
12937}
12938
12939// SetReadOnly allocates a new s.ReadOnly and returns the pointer to it.
12940func (s *Screenboard) SetReadOnly(v bool) {
12941	s.ReadOnly = &v
12942}
12943
12944// GetShared returns the Shared field if non-nil, zero value otherwise.
12945func (s *Screenboard) GetShared() bool {
12946	if s == nil || s.Shared == nil {
12947		return false
12948	}
12949	return *s.Shared
12950}
12951
12952// GetSharedOk returns a tuple with the Shared field if it's non-nil, zero value otherwise
12953// and a boolean to check if the value has been set.
12954func (s *Screenboard) GetSharedOk() (bool, bool) {
12955	if s == nil || s.Shared == nil {
12956		return false, false
12957	}
12958	return *s.Shared, true
12959}
12960
12961// HasShared returns a boolean if a field has been set.
12962func (s *Screenboard) HasShared() bool {
12963	if s != nil && s.Shared != nil {
12964		return true
12965	}
12966
12967	return false
12968}
12969
12970// SetShared allocates a new s.Shared and returns the pointer to it.
12971func (s *Screenboard) SetShared(v bool) {
12972	s.Shared = &v
12973}
12974
12975// GetTitle returns the Title field if non-nil, zero value otherwise.
12976func (s *Screenboard) GetTitle() string {
12977	if s == nil || s.Title == nil {
12978		return ""
12979	}
12980	return *s.Title
12981}
12982
12983// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
12984// and a boolean to check if the value has been set.
12985func (s *Screenboard) GetTitleOk() (string, bool) {
12986	if s == nil || s.Title == nil {
12987		return "", false
12988	}
12989	return *s.Title, true
12990}
12991
12992// HasTitle returns a boolean if a field has been set.
12993func (s *Screenboard) HasTitle() bool {
12994	if s != nil && s.Title != nil {
12995		return true
12996	}
12997
12998	return false
12999}
13000
13001// SetTitle allocates a new s.Title and returns the pointer to it.
13002func (s *Screenboard) SetTitle(v string) {
13003	s.Title = &v
13004}
13005
13006// GetWidth returns the Width field if non-nil, zero value otherwise.
13007func (s *Screenboard) GetWidth() int {
13008	if s == nil || s.Width == nil {
13009		return 0
13010	}
13011	return *s.Width
13012}
13013
13014// GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise
13015// and a boolean to check if the value has been set.
13016func (s *Screenboard) GetWidthOk() (int, bool) {
13017	if s == nil || s.Width == nil {
13018		return 0, false
13019	}
13020	return *s.Width, true
13021}
13022
13023// HasWidth returns a boolean if a field has been set.
13024func (s *Screenboard) HasWidth() bool {
13025	if s != nil && s.Width != nil {
13026		return true
13027	}
13028
13029	return false
13030}
13031
13032// SetWidth allocates a new s.Width and returns the pointer to it.
13033func (s *Screenboard) SetWidth(v int) {
13034	s.Width = &v
13035}
13036
13037// GetId returns the Id field if non-nil, zero value otherwise.
13038func (s *ScreenboardLite) GetId() int {
13039	if s == nil || s.Id == nil {
13040		return 0
13041	}
13042	return *s.Id
13043}
13044
13045// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
13046// and a boolean to check if the value has been set.
13047func (s *ScreenboardLite) GetIdOk() (int, bool) {
13048	if s == nil || s.Id == nil {
13049		return 0, false
13050	}
13051	return *s.Id, true
13052}
13053
13054// HasId returns a boolean if a field has been set.
13055func (s *ScreenboardLite) HasId() bool {
13056	if s != nil && s.Id != nil {
13057		return true
13058	}
13059
13060	return false
13061}
13062
13063// SetId allocates a new s.Id and returns the pointer to it.
13064func (s *ScreenboardLite) SetId(v int) {
13065	s.Id = &v
13066}
13067
13068// GetResource returns the Resource field if non-nil, zero value otherwise.
13069func (s *ScreenboardLite) GetResource() string {
13070	if s == nil || s.Resource == nil {
13071		return ""
13072	}
13073	return *s.Resource
13074}
13075
13076// GetResourceOk returns a tuple with the Resource field if it's non-nil, zero value otherwise
13077// and a boolean to check if the value has been set.
13078func (s *ScreenboardLite) GetResourceOk() (string, bool) {
13079	if s == nil || s.Resource == nil {
13080		return "", false
13081	}
13082	return *s.Resource, true
13083}
13084
13085// HasResource returns a boolean if a field has been set.
13086func (s *ScreenboardLite) HasResource() bool {
13087	if s != nil && s.Resource != nil {
13088		return true
13089	}
13090
13091	return false
13092}
13093
13094// SetResource allocates a new s.Resource and returns the pointer to it.
13095func (s *ScreenboardLite) SetResource(v string) {
13096	s.Resource = &v
13097}
13098
13099// GetTitle returns the Title field if non-nil, zero value otherwise.
13100func (s *ScreenboardLite) GetTitle() string {
13101	if s == nil || s.Title == nil {
13102		return ""
13103	}
13104	return *s.Title
13105}
13106
13107// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
13108// and a boolean to check if the value has been set.
13109func (s *ScreenboardLite) GetTitleOk() (string, bool) {
13110	if s == nil || s.Title == nil {
13111		return "", false
13112	}
13113	return *s.Title, true
13114}
13115
13116// HasTitle returns a boolean if a field has been set.
13117func (s *ScreenboardLite) HasTitle() bool {
13118	if s != nil && s.Title != nil {
13119		return true
13120	}
13121
13122	return false
13123}
13124
13125// SetTitle allocates a new s.Title and returns the pointer to it.
13126func (s *ScreenboardLite) SetTitle(v string) {
13127	s.Title = &v
13128}
13129
13130// GetId returns the Id field if non-nil, zero value otherwise.
13131func (s *ScreenboardMonitor) GetId() int {
13132	if s == nil || s.Id == nil {
13133		return 0
13134	}
13135	return *s.Id
13136}
13137
13138// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
13139// and a boolean to check if the value has been set.
13140func (s *ScreenboardMonitor) GetIdOk() (int, bool) {
13141	if s == nil || s.Id == nil {
13142		return 0, false
13143	}
13144	return *s.Id, true
13145}
13146
13147// HasId returns a boolean if a field has been set.
13148func (s *ScreenboardMonitor) HasId() bool {
13149	if s != nil && s.Id != nil {
13150		return true
13151	}
13152
13153	return false
13154}
13155
13156// SetId allocates a new s.Id and returns the pointer to it.
13157func (s *ScreenboardMonitor) SetId(v int) {
13158	s.Id = &v
13159}
13160
13161// GetAggr returns the Aggr field if non-nil, zero value otherwise.
13162func (s *Series) GetAggr() string {
13163	if s == nil || s.Aggr == nil {
13164		return ""
13165	}
13166	return *s.Aggr
13167}
13168
13169// GetAggrOk returns a tuple with the Aggr field if it's non-nil, zero value otherwise
13170// and a boolean to check if the value has been set.
13171func (s *Series) GetAggrOk() (string, bool) {
13172	if s == nil || s.Aggr == nil {
13173		return "", false
13174	}
13175	return *s.Aggr, true
13176}
13177
13178// HasAggr returns a boolean if a field has been set.
13179func (s *Series) HasAggr() bool {
13180	if s != nil && s.Aggr != nil {
13181		return true
13182	}
13183
13184	return false
13185}
13186
13187// SetAggr allocates a new s.Aggr and returns the pointer to it.
13188func (s *Series) SetAggr(v string) {
13189	s.Aggr = &v
13190}
13191
13192// GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
13193func (s *Series) GetDisplayName() string {
13194	if s == nil || s.DisplayName == nil {
13195		return ""
13196	}
13197	return *s.DisplayName
13198}
13199
13200// GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise
13201// and a boolean to check if the value has been set.
13202func (s *Series) GetDisplayNameOk() (string, bool) {
13203	if s == nil || s.DisplayName == nil {
13204		return "", false
13205	}
13206	return *s.DisplayName, true
13207}
13208
13209// HasDisplayName returns a boolean if a field has been set.
13210func (s *Series) HasDisplayName() bool {
13211	if s != nil && s.DisplayName != nil {
13212		return true
13213	}
13214
13215	return false
13216}
13217
13218// SetDisplayName allocates a new s.DisplayName and returns the pointer to it.
13219func (s *Series) SetDisplayName(v string) {
13220	s.DisplayName = &v
13221}
13222
13223// GetEnd returns the End field if non-nil, zero value otherwise.
13224func (s *Series) GetEnd() float64 {
13225	if s == nil || s.End == nil {
13226		return 0
13227	}
13228	return *s.End
13229}
13230
13231// GetEndOk returns a tuple with the End field if it's non-nil, zero value otherwise
13232// and a boolean to check if the value has been set.
13233func (s *Series) GetEndOk() (float64, bool) {
13234	if s == nil || s.End == nil {
13235		return 0, false
13236	}
13237	return *s.End, true
13238}
13239
13240// HasEnd returns a boolean if a field has been set.
13241func (s *Series) HasEnd() bool {
13242	if s != nil && s.End != nil {
13243		return true
13244	}
13245
13246	return false
13247}
13248
13249// SetEnd allocates a new s.End and returns the pointer to it.
13250func (s *Series) SetEnd(v float64) {
13251	s.End = &v
13252}
13253
13254// GetExpression returns the Expression field if non-nil, zero value otherwise.
13255func (s *Series) GetExpression() string {
13256	if s == nil || s.Expression == nil {
13257		return ""
13258	}
13259	return *s.Expression
13260}
13261
13262// GetExpressionOk returns a tuple with the Expression field if it's non-nil, zero value otherwise
13263// and a boolean to check if the value has been set.
13264func (s *Series) GetExpressionOk() (string, bool) {
13265	if s == nil || s.Expression == nil {
13266		return "", false
13267	}
13268	return *s.Expression, true
13269}
13270
13271// HasExpression returns a boolean if a field has been set.
13272func (s *Series) HasExpression() bool {
13273	if s != nil && s.Expression != nil {
13274		return true
13275	}
13276
13277	return false
13278}
13279
13280// SetExpression allocates a new s.Expression and returns the pointer to it.
13281func (s *Series) SetExpression(v string) {
13282	s.Expression = &v
13283}
13284
13285// GetInterval returns the Interval field if non-nil, zero value otherwise.
13286func (s *Series) GetInterval() int {
13287	if s == nil || s.Interval == nil {
13288		return 0
13289	}
13290	return *s.Interval
13291}
13292
13293// GetIntervalOk returns a tuple with the Interval field if it's non-nil, zero value otherwise
13294// and a boolean to check if the value has been set.
13295func (s *Series) GetIntervalOk() (int, bool) {
13296	if s == nil || s.Interval == nil {
13297		return 0, false
13298	}
13299	return *s.Interval, true
13300}
13301
13302// HasInterval returns a boolean if a field has been set.
13303func (s *Series) HasInterval() bool {
13304	if s != nil && s.Interval != nil {
13305		return true
13306	}
13307
13308	return false
13309}
13310
13311// SetInterval allocates a new s.Interval and returns the pointer to it.
13312func (s *Series) SetInterval(v int) {
13313	s.Interval = &v
13314}
13315
13316// GetLength returns the Length field if non-nil, zero value otherwise.
13317func (s *Series) GetLength() int {
13318	if s == nil || s.Length == nil {
13319		return 0
13320	}
13321	return *s.Length
13322}
13323
13324// GetLengthOk returns a tuple with the Length field if it's non-nil, zero value otherwise
13325// and a boolean to check if the value has been set.
13326func (s *Series) GetLengthOk() (int, bool) {
13327	if s == nil || s.Length == nil {
13328		return 0, false
13329	}
13330	return *s.Length, true
13331}
13332
13333// HasLength returns a boolean if a field has been set.
13334func (s *Series) HasLength() bool {
13335	if s != nil && s.Length != nil {
13336		return true
13337	}
13338
13339	return false
13340}
13341
13342// SetLength allocates a new s.Length and returns the pointer to it.
13343func (s *Series) SetLength(v int) {
13344	s.Length = &v
13345}
13346
13347// GetMetric returns the Metric field if non-nil, zero value otherwise.
13348func (s *Series) GetMetric() string {
13349	if s == nil || s.Metric == nil {
13350		return ""
13351	}
13352	return *s.Metric
13353}
13354
13355// GetMetricOk returns a tuple with the Metric field if it's non-nil, zero value otherwise
13356// and a boolean to check if the value has been set.
13357func (s *Series) GetMetricOk() (string, bool) {
13358	if s == nil || s.Metric == nil {
13359		return "", false
13360	}
13361	return *s.Metric, true
13362}
13363
13364// HasMetric returns a boolean if a field has been set.
13365func (s *Series) HasMetric() bool {
13366	if s != nil && s.Metric != nil {
13367		return true
13368	}
13369
13370	return false
13371}
13372
13373// SetMetric allocates a new s.Metric and returns the pointer to it.
13374func (s *Series) SetMetric(v string) {
13375	s.Metric = &v
13376}
13377
13378// GetScope returns the Scope field if non-nil, zero value otherwise.
13379func (s *Series) GetScope() string {
13380	if s == nil || s.Scope == nil {
13381		return ""
13382	}
13383	return *s.Scope
13384}
13385
13386// GetScopeOk returns a tuple with the Scope field if it's non-nil, zero value otherwise
13387// and a boolean to check if the value has been set.
13388func (s *Series) GetScopeOk() (string, bool) {
13389	if s == nil || s.Scope == nil {
13390		return "", false
13391	}
13392	return *s.Scope, true
13393}
13394
13395// HasScope returns a boolean if a field has been set.
13396func (s *Series) HasScope() bool {
13397	if s != nil && s.Scope != nil {
13398		return true
13399	}
13400
13401	return false
13402}
13403
13404// SetScope allocates a new s.Scope and returns the pointer to it.
13405func (s *Series) SetScope(v string) {
13406	s.Scope = &v
13407}
13408
13409// GetStart returns the Start field if non-nil, zero value otherwise.
13410func (s *Series) GetStart() float64 {
13411	if s == nil || s.Start == nil {
13412		return 0
13413	}
13414	return *s.Start
13415}
13416
13417// GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise
13418// and a boolean to check if the value has been set.
13419func (s *Series) GetStartOk() (float64, bool) {
13420	if s == nil || s.Start == nil {
13421		return 0, false
13422	}
13423	return *s.Start, true
13424}
13425
13426// HasStart returns a boolean if a field has been set.
13427func (s *Series) HasStart() bool {
13428	if s != nil && s.Start != nil {
13429		return true
13430	}
13431
13432	return false
13433}
13434
13435// SetStart allocates a new s.Start and returns the pointer to it.
13436func (s *Series) SetStart(v float64) {
13437	s.Start = &v
13438}
13439
13440// GetUnits returns the Units field if non-nil, zero value otherwise.
13441func (s *Series) GetUnits() UnitPair {
13442	if s == nil || s.Units == nil {
13443		return UnitPair{}
13444	}
13445	return *s.Units
13446}
13447
13448// GetUnitsOk returns a tuple with the Units field if it's non-nil, zero value otherwise
13449// and a boolean to check if the value has been set.
13450func (s *Series) GetUnitsOk() (UnitPair, bool) {
13451	if s == nil || s.Units == nil {
13452		return UnitPair{}, false
13453	}
13454	return *s.Units, true
13455}
13456
13457// HasUnits returns a boolean if a field has been set.
13458func (s *Series) HasUnits() bool {
13459	if s != nil && s.Units != nil {
13460		return true
13461	}
13462
13463	return false
13464}
13465
13466// SetUnits allocates a new s.Units and returns the pointer to it.
13467func (s *Series) SetUnits(v UnitPair) {
13468	s.Units = &v
13469}
13470
13471// GetAccount returns the Account field if non-nil, zero value otherwise.
13472func (s *ServiceHookSlackRequest) GetAccount() string {
13473	if s == nil || s.Account == nil {
13474		return ""
13475	}
13476	return *s.Account
13477}
13478
13479// GetAccountOk returns a tuple with the Account field if it's non-nil, zero value otherwise
13480// and a boolean to check if the value has been set.
13481func (s *ServiceHookSlackRequest) GetAccountOk() (string, bool) {
13482	if s == nil || s.Account == nil {
13483		return "", false
13484	}
13485	return *s.Account, true
13486}
13487
13488// HasAccount returns a boolean if a field has been set.
13489func (s *ServiceHookSlackRequest) HasAccount() bool {
13490	if s != nil && s.Account != nil {
13491		return true
13492	}
13493
13494	return false
13495}
13496
13497// SetAccount allocates a new s.Account and returns the pointer to it.
13498func (s *ServiceHookSlackRequest) SetAccount(v string) {
13499	s.Account = &v
13500}
13501
13502// GetUrl returns the Url field if non-nil, zero value otherwise.
13503func (s *ServiceHookSlackRequest) GetUrl() string {
13504	if s == nil || s.Url == nil {
13505		return ""
13506	}
13507	return *s.Url
13508}
13509
13510// GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
13511// and a boolean to check if the value has been set.
13512func (s *ServiceHookSlackRequest) GetUrlOk() (string, bool) {
13513	if s == nil || s.Url == nil {
13514		return "", false
13515	}
13516	return *s.Url, true
13517}
13518
13519// HasUrl returns a boolean if a field has been set.
13520func (s *ServiceHookSlackRequest) HasUrl() bool {
13521	if s != nil && s.Url != nil {
13522		return true
13523	}
13524
13525	return false
13526}
13527
13528// SetUrl allocates a new s.Url and returns the pointer to it.
13529func (s *ServiceHookSlackRequest) SetUrl(v string) {
13530	s.Url = &v
13531}
13532
13533// GetServiceKey returns the ServiceKey field if non-nil, zero value otherwise.
13534func (s *servicePD) GetServiceKey() string {
13535	if s == nil || s.ServiceKey == nil {
13536		return ""
13537	}
13538	return *s.ServiceKey
13539}
13540
13541// GetServiceKeyOk returns a tuple with the ServiceKey field if it's non-nil, zero value otherwise
13542// and a boolean to check if the value has been set.
13543func (s *servicePD) GetServiceKeyOk() (string, bool) {
13544	if s == nil || s.ServiceKey == nil {
13545		return "", false
13546	}
13547	return *s.ServiceKey, true
13548}
13549
13550// HasServiceKey returns a boolean if a field has been set.
13551func (s *servicePD) HasServiceKey() bool {
13552	if s != nil && s.ServiceKey != nil {
13553		return true
13554	}
13555
13556	return false
13557}
13558
13559// SetServiceKey allocates a new s.ServiceKey and returns the pointer to it.
13560func (s *servicePD) SetServiceKey(v string) {
13561	s.ServiceKey = &v
13562}
13563
13564// GetServiceName returns the ServiceName field if non-nil, zero value otherwise.
13565func (s *servicePD) GetServiceName() string {
13566	if s == nil || s.ServiceName == nil {
13567		return ""
13568	}
13569	return *s.ServiceName
13570}
13571
13572// GetServiceNameOk returns a tuple with the ServiceName field if it's non-nil, zero value otherwise
13573// and a boolean to check if the value has been set.
13574func (s *servicePD) GetServiceNameOk() (string, bool) {
13575	if s == nil || s.ServiceName == nil {
13576		return "", false
13577	}
13578	return *s.ServiceName, true
13579}
13580
13581// HasServiceName returns a boolean if a field has been set.
13582func (s *servicePD) HasServiceName() bool {
13583	if s != nil && s.ServiceName != nil {
13584		return true
13585	}
13586
13587	return false
13588}
13589
13590// SetServiceName allocates a new s.ServiceName and returns the pointer to it.
13591func (s *servicePD) SetServiceName(v string) {
13592	s.ServiceName = &v
13593}
13594
13595// GetServiceKey returns the ServiceKey field if non-nil, zero value otherwise.
13596func (s *ServicePDRequest) GetServiceKey() string {
13597	if s == nil || s.ServiceKey == nil {
13598		return ""
13599	}
13600	return *s.ServiceKey
13601}
13602
13603// GetServiceKeyOk returns a tuple with the ServiceKey field if it's non-nil, zero value otherwise
13604// and a boolean to check if the value has been set.
13605func (s *ServicePDRequest) GetServiceKeyOk() (string, bool) {
13606	if s == nil || s.ServiceKey == nil {
13607		return "", false
13608	}
13609	return *s.ServiceKey, true
13610}
13611
13612// HasServiceKey returns a boolean if a field has been set.
13613func (s *ServicePDRequest) HasServiceKey() bool {
13614	if s != nil && s.ServiceKey != nil {
13615		return true
13616	}
13617
13618	return false
13619}
13620
13621// SetServiceKey allocates a new s.ServiceKey and returns the pointer to it.
13622func (s *ServicePDRequest) SetServiceKey(v string) {
13623	s.ServiceKey = &v
13624}
13625
13626// GetServiceName returns the ServiceName field if non-nil, zero value otherwise.
13627func (s *ServicePDRequest) GetServiceName() string {
13628	if s == nil || s.ServiceName == nil {
13629		return ""
13630	}
13631	return *s.ServiceName
13632}
13633
13634// GetServiceNameOk returns a tuple with the ServiceName field if it's non-nil, zero value otherwise
13635// and a boolean to check if the value has been set.
13636func (s *ServicePDRequest) GetServiceNameOk() (string, bool) {
13637	if s == nil || s.ServiceName == nil {
13638		return "", false
13639	}
13640	return *s.ServiceName, true
13641}
13642
13643// HasServiceName returns a boolean if a field has been set.
13644func (s *ServicePDRequest) HasServiceName() bool {
13645	if s != nil && s.ServiceName != nil {
13646		return true
13647	}
13648
13649	return false
13650}
13651
13652// SetServiceName allocates a new s.ServiceName and returns the pointer to it.
13653func (s *ServicePDRequest) SetServiceName(v string) {
13654	s.ServiceName = &v
13655}
13656
13657// GetFillMax returns the FillMax field if non-nil, zero value otherwise.
13658func (s *Style) GetFillMax() json.Number {
13659	if s == nil || s.FillMax == nil {
13660		return ""
13661	}
13662	return *s.FillMax
13663}
13664
13665// GetFillMaxOk returns a tuple with the FillMax field if it's non-nil, zero value otherwise
13666// and a boolean to check if the value has been set.
13667func (s *Style) GetFillMaxOk() (json.Number, bool) {
13668	if s == nil || s.FillMax == nil {
13669		return "", false
13670	}
13671	return *s.FillMax, true
13672}
13673
13674// HasFillMax returns a boolean if a field has been set.
13675func (s *Style) HasFillMax() bool {
13676	if s != nil && s.FillMax != nil {
13677		return true
13678	}
13679
13680	return false
13681}
13682
13683// SetFillMax allocates a new s.FillMax and returns the pointer to it.
13684func (s *Style) SetFillMax(v json.Number) {
13685	s.FillMax = &v
13686}
13687
13688// GetFillMin returns the FillMin field if non-nil, zero value otherwise.
13689func (s *Style) GetFillMin() json.Number {
13690	if s == nil || s.FillMin == nil {
13691		return ""
13692	}
13693	return *s.FillMin
13694}
13695
13696// GetFillMinOk returns a tuple with the FillMin field if it's non-nil, zero value otherwise
13697// and a boolean to check if the value has been set.
13698func (s *Style) GetFillMinOk() (json.Number, bool) {
13699	if s == nil || s.FillMin == nil {
13700		return "", false
13701	}
13702	return *s.FillMin, true
13703}
13704
13705// HasFillMin returns a boolean if a field has been set.
13706func (s *Style) HasFillMin() bool {
13707	if s != nil && s.FillMin != nil {
13708		return true
13709	}
13710
13711	return false
13712}
13713
13714// SetFillMin allocates a new s.FillMin and returns the pointer to it.
13715func (s *Style) SetFillMin(v json.Number) {
13716	s.FillMin = &v
13717}
13718
13719// GetPalette returns the Palette field if non-nil, zero value otherwise.
13720func (s *Style) GetPalette() string {
13721	if s == nil || s.Palette == nil {
13722		return ""
13723	}
13724	return *s.Palette
13725}
13726
13727// GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise
13728// and a boolean to check if the value has been set.
13729func (s *Style) GetPaletteOk() (string, bool) {
13730	if s == nil || s.Palette == nil {
13731		return "", false
13732	}
13733	return *s.Palette, true
13734}
13735
13736// HasPalette returns a boolean if a field has been set.
13737func (s *Style) HasPalette() bool {
13738	if s != nil && s.Palette != nil {
13739		return true
13740	}
13741
13742	return false
13743}
13744
13745// SetPalette allocates a new s.Palette and returns the pointer to it.
13746func (s *Style) SetPalette(v string) {
13747	s.Palette = &v
13748}
13749
13750// GetPaletteFlip returns the PaletteFlip field if non-nil, zero value otherwise.
13751func (s *Style) GetPaletteFlip() bool {
13752	if s == nil || s.PaletteFlip == nil {
13753		return false
13754	}
13755	return *s.PaletteFlip
13756}
13757
13758// GetPaletteFlipOk returns a tuple with the PaletteFlip field if it's non-nil, zero value otherwise
13759// and a boolean to check if the value has been set.
13760func (s *Style) GetPaletteFlipOk() (bool, bool) {
13761	if s == nil || s.PaletteFlip == nil {
13762		return false, false
13763	}
13764	return *s.PaletteFlip, true
13765}
13766
13767// HasPaletteFlip returns a boolean if a field has been set.
13768func (s *Style) HasPaletteFlip() bool {
13769	if s != nil && s.PaletteFlip != nil {
13770		return true
13771	}
13772
13773	return false
13774}
13775
13776// SetPaletteFlip allocates a new s.PaletteFlip and returns the pointer to it.
13777func (s *Style) SetPaletteFlip(v bool) {
13778	s.PaletteFlip = &v
13779}
13780
13781// GetOperator returns the Operator field if non-nil, zero value otherwise.
13782func (s *SyntheticsAssertion) GetOperator() string {
13783	if s == nil || s.Operator == nil {
13784		return ""
13785	}
13786	return *s.Operator
13787}
13788
13789// GetOperatorOk returns a tuple with the Operator field if it's non-nil, zero value otherwise
13790// and a boolean to check if the value has been set.
13791func (s *SyntheticsAssertion) GetOperatorOk() (string, bool) {
13792	if s == nil || s.Operator == nil {
13793		return "", false
13794	}
13795	return *s.Operator, true
13796}
13797
13798// HasOperator returns a boolean if a field has been set.
13799func (s *SyntheticsAssertion) HasOperator() bool {
13800	if s != nil && s.Operator != nil {
13801		return true
13802	}
13803
13804	return false
13805}
13806
13807// SetOperator allocates a new s.Operator and returns the pointer to it.
13808func (s *SyntheticsAssertion) SetOperator(v string) {
13809	s.Operator = &v
13810}
13811
13812// GetProperty returns the Property field if non-nil, zero value otherwise.
13813func (s *SyntheticsAssertion) GetProperty() string {
13814	if s == nil || s.Property == nil {
13815		return ""
13816	}
13817	return *s.Property
13818}
13819
13820// GetPropertyOk returns a tuple with the Property field if it's non-nil, zero value otherwise
13821// and a boolean to check if the value has been set.
13822func (s *SyntheticsAssertion) GetPropertyOk() (string, bool) {
13823	if s == nil || s.Property == nil {
13824		return "", false
13825	}
13826	return *s.Property, true
13827}
13828
13829// HasProperty returns a boolean if a field has been set.
13830func (s *SyntheticsAssertion) HasProperty() bool {
13831	if s != nil && s.Property != nil {
13832		return true
13833	}
13834
13835	return false
13836}
13837
13838// SetProperty allocates a new s.Property and returns the pointer to it.
13839func (s *SyntheticsAssertion) SetProperty(v string) {
13840	s.Property = &v
13841}
13842
13843// GetType returns the Type field if non-nil, zero value otherwise.
13844func (s *SyntheticsAssertion) GetType() string {
13845	if s == nil || s.Type == nil {
13846		return ""
13847	}
13848	return *s.Type
13849}
13850
13851// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
13852// and a boolean to check if the value has been set.
13853func (s *SyntheticsAssertion) GetTypeOk() (string, bool) {
13854	if s == nil || s.Type == nil {
13855		return "", false
13856	}
13857	return *s.Type, true
13858}
13859
13860// HasType returns a boolean if a field has been set.
13861func (s *SyntheticsAssertion) HasType() bool {
13862	if s != nil && s.Type != nil {
13863		return true
13864	}
13865
13866	return false
13867}
13868
13869// SetType allocates a new s.Type and returns the pointer to it.
13870func (s *SyntheticsAssertion) SetType(v string) {
13871	s.Type = &v
13872}
13873
13874// GetRequest returns the Request field if non-nil, zero value otherwise.
13875func (s *SyntheticsConfig) GetRequest() SyntheticsRequest {
13876	if s == nil || s.Request == nil {
13877		return SyntheticsRequest{}
13878	}
13879	return *s.Request
13880}
13881
13882// GetRequestOk returns a tuple with the Request field if it's non-nil, zero value otherwise
13883// and a boolean to check if the value has been set.
13884func (s *SyntheticsConfig) GetRequestOk() (SyntheticsRequest, bool) {
13885	if s == nil || s.Request == nil {
13886		return SyntheticsRequest{}, false
13887	}
13888	return *s.Request, true
13889}
13890
13891// HasRequest returns a boolean if a field has been set.
13892func (s *SyntheticsConfig) HasRequest() bool {
13893	if s != nil && s.Request != nil {
13894		return true
13895	}
13896
13897	return false
13898}
13899
13900// SetRequest allocates a new s.Request and returns the pointer to it.
13901func (s *SyntheticsConfig) SetRequest(v SyntheticsRequest) {
13902	s.Request = &v
13903}
13904
13905// GetHeight returns the Height field if non-nil, zero value otherwise.
13906func (s *SyntheticsDevice) GetHeight() int {
13907	if s == nil || s.Height == nil {
13908		return 0
13909	}
13910	return *s.Height
13911}
13912
13913// GetHeightOk returns a tuple with the Height field if it's non-nil, zero value otherwise
13914// and a boolean to check if the value has been set.
13915func (s *SyntheticsDevice) GetHeightOk() (int, bool) {
13916	if s == nil || s.Height == nil {
13917		return 0, false
13918	}
13919	return *s.Height, true
13920}
13921
13922// HasHeight returns a boolean if a field has been set.
13923func (s *SyntheticsDevice) HasHeight() bool {
13924	if s != nil && s.Height != nil {
13925		return true
13926	}
13927
13928	return false
13929}
13930
13931// SetHeight allocates a new s.Height and returns the pointer to it.
13932func (s *SyntheticsDevice) SetHeight(v int) {
13933	s.Height = &v
13934}
13935
13936// GetId returns the Id field if non-nil, zero value otherwise.
13937func (s *SyntheticsDevice) GetId() string {
13938	if s == nil || s.Id == nil {
13939		return ""
13940	}
13941	return *s.Id
13942}
13943
13944// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
13945// and a boolean to check if the value has been set.
13946func (s *SyntheticsDevice) GetIdOk() (string, bool) {
13947	if s == nil || s.Id == nil {
13948		return "", false
13949	}
13950	return *s.Id, true
13951}
13952
13953// HasId returns a boolean if a field has been set.
13954func (s *SyntheticsDevice) HasId() bool {
13955	if s != nil && s.Id != nil {
13956		return true
13957	}
13958
13959	return false
13960}
13961
13962// SetId allocates a new s.Id and returns the pointer to it.
13963func (s *SyntheticsDevice) SetId(v string) {
13964	s.Id = &v
13965}
13966
13967// GetIsLandscape returns the IsLandscape field if non-nil, zero value otherwise.
13968func (s *SyntheticsDevice) GetIsLandscape() bool {
13969	if s == nil || s.IsLandscape == nil {
13970		return false
13971	}
13972	return *s.IsLandscape
13973}
13974
13975// GetIsLandscapeOk returns a tuple with the IsLandscape field if it's non-nil, zero value otherwise
13976// and a boolean to check if the value has been set.
13977func (s *SyntheticsDevice) GetIsLandscapeOk() (bool, bool) {
13978	if s == nil || s.IsLandscape == nil {
13979		return false, false
13980	}
13981	return *s.IsLandscape, true
13982}
13983
13984// HasIsLandscape returns a boolean if a field has been set.
13985func (s *SyntheticsDevice) HasIsLandscape() bool {
13986	if s != nil && s.IsLandscape != nil {
13987		return true
13988	}
13989
13990	return false
13991}
13992
13993// SetIsLandscape allocates a new s.IsLandscape and returns the pointer to it.
13994func (s *SyntheticsDevice) SetIsLandscape(v bool) {
13995	s.IsLandscape = &v
13996}
13997
13998// GetIsMobile returns the IsMobile field if non-nil, zero value otherwise.
13999func (s *SyntheticsDevice) GetIsMobile() bool {
14000	if s == nil || s.IsMobile == nil {
14001		return false
14002	}
14003	return *s.IsMobile
14004}
14005
14006// GetIsMobileOk returns a tuple with the IsMobile field if it's non-nil, zero value otherwise
14007// and a boolean to check if the value has been set.
14008func (s *SyntheticsDevice) GetIsMobileOk() (bool, bool) {
14009	if s == nil || s.IsMobile == nil {
14010		return false, false
14011	}
14012	return *s.IsMobile, true
14013}
14014
14015// HasIsMobile returns a boolean if a field has been set.
14016func (s *SyntheticsDevice) HasIsMobile() bool {
14017	if s != nil && s.IsMobile != nil {
14018		return true
14019	}
14020
14021	return false
14022}
14023
14024// SetIsMobile allocates a new s.IsMobile and returns the pointer to it.
14025func (s *SyntheticsDevice) SetIsMobile(v bool) {
14026	s.IsMobile = &v
14027}
14028
14029// GetName returns the Name field if non-nil, zero value otherwise.
14030func (s *SyntheticsDevice) GetName() string {
14031	if s == nil || s.Name == nil {
14032		return ""
14033	}
14034	return *s.Name
14035}
14036
14037// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
14038// and a boolean to check if the value has been set.
14039func (s *SyntheticsDevice) GetNameOk() (string, bool) {
14040	if s == nil || s.Name == nil {
14041		return "", false
14042	}
14043	return *s.Name, true
14044}
14045
14046// HasName returns a boolean if a field has been set.
14047func (s *SyntheticsDevice) HasName() bool {
14048	if s != nil && s.Name != nil {
14049		return true
14050	}
14051
14052	return false
14053}
14054
14055// SetName allocates a new s.Name and returns the pointer to it.
14056func (s *SyntheticsDevice) SetName(v string) {
14057	s.Name = &v
14058}
14059
14060// GetUserAgent returns the UserAgent field if non-nil, zero value otherwise.
14061func (s *SyntheticsDevice) GetUserAgent() string {
14062	if s == nil || s.UserAgent == nil {
14063		return ""
14064	}
14065	return *s.UserAgent
14066}
14067
14068// GetUserAgentOk returns a tuple with the UserAgent field if it's non-nil, zero value otherwise
14069// and a boolean to check if the value has been set.
14070func (s *SyntheticsDevice) GetUserAgentOk() (string, bool) {
14071	if s == nil || s.UserAgent == nil {
14072		return "", false
14073	}
14074	return *s.UserAgent, true
14075}
14076
14077// HasUserAgent returns a boolean if a field has been set.
14078func (s *SyntheticsDevice) HasUserAgent() bool {
14079	if s != nil && s.UserAgent != nil {
14080		return true
14081	}
14082
14083	return false
14084}
14085
14086// SetUserAgent allocates a new s.UserAgent and returns the pointer to it.
14087func (s *SyntheticsDevice) SetUserAgent(v string) {
14088	s.UserAgent = &v
14089}
14090
14091// GetWidth returns the Width field if non-nil, zero value otherwise.
14092func (s *SyntheticsDevice) GetWidth() int {
14093	if s == nil || s.Width == nil {
14094		return 0
14095	}
14096	return *s.Width
14097}
14098
14099// GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise
14100// and a boolean to check if the value has been set.
14101func (s *SyntheticsDevice) GetWidthOk() (int, bool) {
14102	if s == nil || s.Width == nil {
14103		return 0, false
14104	}
14105	return *s.Width, true
14106}
14107
14108// HasWidth returns a boolean if a field has been set.
14109func (s *SyntheticsDevice) HasWidth() bool {
14110	if s != nil && s.Width != nil {
14111		return true
14112	}
14113
14114	return false
14115}
14116
14117// SetWidth allocates a new s.Width and returns the pointer to it.
14118func (s *SyntheticsDevice) SetWidth(v int) {
14119	s.Width = &v
14120}
14121
14122// GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
14123func (s *SyntheticsLocation) GetDisplayName() string {
14124	if s == nil || s.DisplayName == nil {
14125		return ""
14126	}
14127	return *s.DisplayName
14128}
14129
14130// GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise
14131// and a boolean to check if the value has been set.
14132func (s *SyntheticsLocation) GetDisplayNameOk() (string, bool) {
14133	if s == nil || s.DisplayName == nil {
14134		return "", false
14135	}
14136	return *s.DisplayName, true
14137}
14138
14139// HasDisplayName returns a boolean if a field has been set.
14140func (s *SyntheticsLocation) HasDisplayName() bool {
14141	if s != nil && s.DisplayName != nil {
14142		return true
14143	}
14144
14145	return false
14146}
14147
14148// SetDisplayName allocates a new s.DisplayName and returns the pointer to it.
14149func (s *SyntheticsLocation) SetDisplayName(v string) {
14150	s.DisplayName = &v
14151}
14152
14153// GetId returns the Id field if non-nil, zero value otherwise.
14154func (s *SyntheticsLocation) GetId() int {
14155	if s == nil || s.Id == nil {
14156		return 0
14157	}
14158	return *s.Id
14159}
14160
14161// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
14162// and a boolean to check if the value has been set.
14163func (s *SyntheticsLocation) GetIdOk() (int, bool) {
14164	if s == nil || s.Id == nil {
14165		return 0, false
14166	}
14167	return *s.Id, true
14168}
14169
14170// HasId returns a boolean if a field has been set.
14171func (s *SyntheticsLocation) HasId() bool {
14172	if s != nil && s.Id != nil {
14173		return true
14174	}
14175
14176	return false
14177}
14178
14179// SetId allocates a new s.Id and returns the pointer to it.
14180func (s *SyntheticsLocation) SetId(v int) {
14181	s.Id = &v
14182}
14183
14184// GetIsLandscape returns the IsLandscape field if non-nil, zero value otherwise.
14185func (s *SyntheticsLocation) GetIsLandscape() bool {
14186	if s == nil || s.IsLandscape == nil {
14187		return false
14188	}
14189	return *s.IsLandscape
14190}
14191
14192// GetIsLandscapeOk returns a tuple with the IsLandscape field if it's non-nil, zero value otherwise
14193// and a boolean to check if the value has been set.
14194func (s *SyntheticsLocation) GetIsLandscapeOk() (bool, bool) {
14195	if s == nil || s.IsLandscape == nil {
14196		return false, false
14197	}
14198	return *s.IsLandscape, true
14199}
14200
14201// HasIsLandscape returns a boolean if a field has been set.
14202func (s *SyntheticsLocation) HasIsLandscape() bool {
14203	if s != nil && s.IsLandscape != nil {
14204		return true
14205	}
14206
14207	return false
14208}
14209
14210// SetIsLandscape allocates a new s.IsLandscape and returns the pointer to it.
14211func (s *SyntheticsLocation) SetIsLandscape(v bool) {
14212	s.IsLandscape = &v
14213}
14214
14215// GetName returns the Name field if non-nil, zero value otherwise.
14216func (s *SyntheticsLocation) GetName() string {
14217	if s == nil || s.Name == nil {
14218		return ""
14219	}
14220	return *s.Name
14221}
14222
14223// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
14224// and a boolean to check if the value has been set.
14225func (s *SyntheticsLocation) GetNameOk() (string, bool) {
14226	if s == nil || s.Name == nil {
14227		return "", false
14228	}
14229	return *s.Name, true
14230}
14231
14232// HasName returns a boolean if a field has been set.
14233func (s *SyntheticsLocation) HasName() bool {
14234	if s != nil && s.Name != nil {
14235		return true
14236	}
14237
14238	return false
14239}
14240
14241// SetName allocates a new s.Name and returns the pointer to it.
14242func (s *SyntheticsLocation) SetName(v string) {
14243	s.Name = &v
14244}
14245
14246// GetRegion returns the Region field if non-nil, zero value otherwise.
14247func (s *SyntheticsLocation) GetRegion() string {
14248	if s == nil || s.Region == nil {
14249		return ""
14250	}
14251	return *s.Region
14252}
14253
14254// GetRegionOk returns a tuple with the Region field if it's non-nil, zero value otherwise
14255// and a boolean to check if the value has been set.
14256func (s *SyntheticsLocation) GetRegionOk() (string, bool) {
14257	if s == nil || s.Region == nil {
14258		return "", false
14259	}
14260	return *s.Region, true
14261}
14262
14263// HasRegion returns a boolean if a field has been set.
14264func (s *SyntheticsLocation) HasRegion() bool {
14265	if s != nil && s.Region != nil {
14266		return true
14267	}
14268
14269	return false
14270}
14271
14272// SetRegion allocates a new s.Region and returns the pointer to it.
14273func (s *SyntheticsLocation) SetRegion(v string) {
14274	s.Region = &v
14275}
14276
14277// GetFollowRedirects returns the FollowRedirects field if non-nil, zero value otherwise.
14278func (s *SyntheticsOptions) GetFollowRedirects() bool {
14279	if s == nil || s.FollowRedirects == nil {
14280		return false
14281	}
14282	return *s.FollowRedirects
14283}
14284
14285// GetFollowRedirectsOk returns a tuple with the FollowRedirects field if it's non-nil, zero value otherwise
14286// and a boolean to check if the value has been set.
14287func (s *SyntheticsOptions) GetFollowRedirectsOk() (bool, bool) {
14288	if s == nil || s.FollowRedirects == nil {
14289		return false, false
14290	}
14291	return *s.FollowRedirects, true
14292}
14293
14294// HasFollowRedirects returns a boolean if a field has been set.
14295func (s *SyntheticsOptions) HasFollowRedirects() bool {
14296	if s != nil && s.FollowRedirects != nil {
14297		return true
14298	}
14299
14300	return false
14301}
14302
14303// SetFollowRedirects allocates a new s.FollowRedirects and returns the pointer to it.
14304func (s *SyntheticsOptions) SetFollowRedirects(v bool) {
14305	s.FollowRedirects = &v
14306}
14307
14308// GetMinFailureDuration returns the MinFailureDuration field if non-nil, zero value otherwise.
14309func (s *SyntheticsOptions) GetMinFailureDuration() int {
14310	if s == nil || s.MinFailureDuration == nil {
14311		return 0
14312	}
14313	return *s.MinFailureDuration
14314}
14315
14316// GetMinFailureDurationOk returns a tuple with the MinFailureDuration field if it's non-nil, zero value otherwise
14317// and a boolean to check if the value has been set.
14318func (s *SyntheticsOptions) GetMinFailureDurationOk() (int, bool) {
14319	if s == nil || s.MinFailureDuration == nil {
14320		return 0, false
14321	}
14322	return *s.MinFailureDuration, true
14323}
14324
14325// HasMinFailureDuration returns a boolean if a field has been set.
14326func (s *SyntheticsOptions) HasMinFailureDuration() bool {
14327	if s != nil && s.MinFailureDuration != nil {
14328		return true
14329	}
14330
14331	return false
14332}
14333
14334// SetMinFailureDuration allocates a new s.MinFailureDuration and returns the pointer to it.
14335func (s *SyntheticsOptions) SetMinFailureDuration(v int) {
14336	s.MinFailureDuration = &v
14337}
14338
14339// GetMinLocationFailed returns the MinLocationFailed field if non-nil, zero value otherwise.
14340func (s *SyntheticsOptions) GetMinLocationFailed() int {
14341	if s == nil || s.MinLocationFailed == nil {
14342		return 0
14343	}
14344	return *s.MinLocationFailed
14345}
14346
14347// GetMinLocationFailedOk returns a tuple with the MinLocationFailed field if it's non-nil, zero value otherwise
14348// and a boolean to check if the value has been set.
14349func (s *SyntheticsOptions) GetMinLocationFailedOk() (int, bool) {
14350	if s == nil || s.MinLocationFailed == nil {
14351		return 0, false
14352	}
14353	return *s.MinLocationFailed, true
14354}
14355
14356// HasMinLocationFailed returns a boolean if a field has been set.
14357func (s *SyntheticsOptions) HasMinLocationFailed() bool {
14358	if s != nil && s.MinLocationFailed != nil {
14359		return true
14360	}
14361
14362	return false
14363}
14364
14365// SetMinLocationFailed allocates a new s.MinLocationFailed and returns the pointer to it.
14366func (s *SyntheticsOptions) SetMinLocationFailed(v int) {
14367	s.MinLocationFailed = &v
14368}
14369
14370// GetTickEvery returns the TickEvery field if non-nil, zero value otherwise.
14371func (s *SyntheticsOptions) GetTickEvery() int {
14372	if s == nil || s.TickEvery == nil {
14373		return 0
14374	}
14375	return *s.TickEvery
14376}
14377
14378// GetTickEveryOk returns a tuple with the TickEvery field if it's non-nil, zero value otherwise
14379// and a boolean to check if the value has been set.
14380func (s *SyntheticsOptions) GetTickEveryOk() (int, bool) {
14381	if s == nil || s.TickEvery == nil {
14382		return 0, false
14383	}
14384	return *s.TickEvery, true
14385}
14386
14387// HasTickEvery returns a boolean if a field has been set.
14388func (s *SyntheticsOptions) HasTickEvery() bool {
14389	if s != nil && s.TickEvery != nil {
14390		return true
14391	}
14392
14393	return false
14394}
14395
14396// SetTickEvery allocates a new s.TickEvery and returns the pointer to it.
14397func (s *SyntheticsOptions) SetTickEvery(v int) {
14398	s.TickEvery = &v
14399}
14400
14401// GetBody returns the Body field if non-nil, zero value otherwise.
14402func (s *SyntheticsRequest) GetBody() string {
14403	if s == nil || s.Body == nil {
14404		return ""
14405	}
14406	return *s.Body
14407}
14408
14409// GetBodyOk returns a tuple with the Body field if it's non-nil, zero value otherwise
14410// and a boolean to check if the value has been set.
14411func (s *SyntheticsRequest) GetBodyOk() (string, bool) {
14412	if s == nil || s.Body == nil {
14413		return "", false
14414	}
14415	return *s.Body, true
14416}
14417
14418// HasBody returns a boolean if a field has been set.
14419func (s *SyntheticsRequest) HasBody() bool {
14420	if s != nil && s.Body != nil {
14421		return true
14422	}
14423
14424	return false
14425}
14426
14427// SetBody allocates a new s.Body and returns the pointer to it.
14428func (s *SyntheticsRequest) SetBody(v string) {
14429	s.Body = &v
14430}
14431
14432// GetMethod returns the Method field if non-nil, zero value otherwise.
14433func (s *SyntheticsRequest) GetMethod() string {
14434	if s == nil || s.Method == nil {
14435		return ""
14436	}
14437	return *s.Method
14438}
14439
14440// GetMethodOk returns a tuple with the Method field if it's non-nil, zero value otherwise
14441// and a boolean to check if the value has been set.
14442func (s *SyntheticsRequest) GetMethodOk() (string, bool) {
14443	if s == nil || s.Method == nil {
14444		return "", false
14445	}
14446	return *s.Method, true
14447}
14448
14449// HasMethod returns a boolean if a field has been set.
14450func (s *SyntheticsRequest) HasMethod() bool {
14451	if s != nil && s.Method != nil {
14452		return true
14453	}
14454
14455	return false
14456}
14457
14458// SetMethod allocates a new s.Method and returns the pointer to it.
14459func (s *SyntheticsRequest) SetMethod(v string) {
14460	s.Method = &v
14461}
14462
14463// GetTimeout returns the Timeout field if non-nil, zero value otherwise.
14464func (s *SyntheticsRequest) GetTimeout() int {
14465	if s == nil || s.Timeout == nil {
14466		return 0
14467	}
14468	return *s.Timeout
14469}
14470
14471// GetTimeoutOk returns a tuple with the Timeout field if it's non-nil, zero value otherwise
14472// and a boolean to check if the value has been set.
14473func (s *SyntheticsRequest) GetTimeoutOk() (int, bool) {
14474	if s == nil || s.Timeout == nil {
14475		return 0, false
14476	}
14477	return *s.Timeout, true
14478}
14479
14480// HasTimeout returns a boolean if a field has been set.
14481func (s *SyntheticsRequest) HasTimeout() bool {
14482	if s != nil && s.Timeout != nil {
14483		return true
14484	}
14485
14486	return false
14487}
14488
14489// SetTimeout allocates a new s.Timeout and returns the pointer to it.
14490func (s *SyntheticsRequest) SetTimeout(v int) {
14491	s.Timeout = &v
14492}
14493
14494// GetUrl returns the Url field if non-nil, zero value otherwise.
14495func (s *SyntheticsRequest) GetUrl() string {
14496	if s == nil || s.Url == nil {
14497		return ""
14498	}
14499	return *s.Url
14500}
14501
14502// GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
14503// and a boolean to check if the value has been set.
14504func (s *SyntheticsRequest) GetUrlOk() (string, bool) {
14505	if s == nil || s.Url == nil {
14506		return "", false
14507	}
14508	return *s.Url, true
14509}
14510
14511// HasUrl returns a boolean if a field has been set.
14512func (s *SyntheticsRequest) HasUrl() bool {
14513	if s != nil && s.Url != nil {
14514		return true
14515	}
14516
14517	return false
14518}
14519
14520// SetUrl allocates a new s.Url and returns the pointer to it.
14521func (s *SyntheticsRequest) SetUrl(v string) {
14522	s.Url = &v
14523}
14524
14525// GetConfig returns the Config field if non-nil, zero value otherwise.
14526func (s *SyntheticsTest) GetConfig() SyntheticsConfig {
14527	if s == nil || s.Config == nil {
14528		return SyntheticsConfig{}
14529	}
14530	return *s.Config
14531}
14532
14533// GetConfigOk returns a tuple with the Config field if it's non-nil, zero value otherwise
14534// and a boolean to check if the value has been set.
14535func (s *SyntheticsTest) GetConfigOk() (SyntheticsConfig, bool) {
14536	if s == nil || s.Config == nil {
14537		return SyntheticsConfig{}, false
14538	}
14539	return *s.Config, true
14540}
14541
14542// HasConfig returns a boolean if a field has been set.
14543func (s *SyntheticsTest) HasConfig() bool {
14544	if s != nil && s.Config != nil {
14545		return true
14546	}
14547
14548	return false
14549}
14550
14551// SetConfig allocates a new s.Config and returns the pointer to it.
14552func (s *SyntheticsTest) SetConfig(v SyntheticsConfig) {
14553	s.Config = &v
14554}
14555
14556// GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
14557func (s *SyntheticsTest) GetCreatedAt() string {
14558	if s == nil || s.CreatedAt == nil {
14559		return ""
14560	}
14561	return *s.CreatedAt
14562}
14563
14564// GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise
14565// and a boolean to check if the value has been set.
14566func (s *SyntheticsTest) GetCreatedAtOk() (string, bool) {
14567	if s == nil || s.CreatedAt == nil {
14568		return "", false
14569	}
14570	return *s.CreatedAt, true
14571}
14572
14573// HasCreatedAt returns a boolean if a field has been set.
14574func (s *SyntheticsTest) HasCreatedAt() bool {
14575	if s != nil && s.CreatedAt != nil {
14576		return true
14577	}
14578
14579	return false
14580}
14581
14582// SetCreatedAt allocates a new s.CreatedAt and returns the pointer to it.
14583func (s *SyntheticsTest) SetCreatedAt(v string) {
14584	s.CreatedAt = &v
14585}
14586
14587// GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise.
14588func (s *SyntheticsTest) GetCreatedBy() SyntheticsUser {
14589	if s == nil || s.CreatedBy == nil {
14590		return SyntheticsUser{}
14591	}
14592	return *s.CreatedBy
14593}
14594
14595// GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise
14596// and a boolean to check if the value has been set.
14597func (s *SyntheticsTest) GetCreatedByOk() (SyntheticsUser, bool) {
14598	if s == nil || s.CreatedBy == nil {
14599		return SyntheticsUser{}, false
14600	}
14601	return *s.CreatedBy, true
14602}
14603
14604// HasCreatedBy returns a boolean if a field has been set.
14605func (s *SyntheticsTest) HasCreatedBy() bool {
14606	if s != nil && s.CreatedBy != nil {
14607		return true
14608	}
14609
14610	return false
14611}
14612
14613// SetCreatedBy allocates a new s.CreatedBy and returns the pointer to it.
14614func (s *SyntheticsTest) SetCreatedBy(v SyntheticsUser) {
14615	s.CreatedBy = &v
14616}
14617
14618// GetDeletedAt returns the DeletedAt field if non-nil, zero value otherwise.
14619func (s *SyntheticsTest) GetDeletedAt() string {
14620	if s == nil || s.DeletedAt == nil {
14621		return ""
14622	}
14623	return *s.DeletedAt
14624}
14625
14626// GetDeletedAtOk returns a tuple with the DeletedAt field if it's non-nil, zero value otherwise
14627// and a boolean to check if the value has been set.
14628func (s *SyntheticsTest) GetDeletedAtOk() (string, bool) {
14629	if s == nil || s.DeletedAt == nil {
14630		return "", false
14631	}
14632	return *s.DeletedAt, true
14633}
14634
14635// HasDeletedAt returns a boolean if a field has been set.
14636func (s *SyntheticsTest) HasDeletedAt() bool {
14637	if s != nil && s.DeletedAt != nil {
14638		return true
14639	}
14640
14641	return false
14642}
14643
14644// SetDeletedAt allocates a new s.DeletedAt and returns the pointer to it.
14645func (s *SyntheticsTest) SetDeletedAt(v string) {
14646	s.DeletedAt = &v
14647}
14648
14649// GetMessage returns the Message field if non-nil, zero value otherwise.
14650func (s *SyntheticsTest) GetMessage() string {
14651	if s == nil || s.Message == nil {
14652		return ""
14653	}
14654	return *s.Message
14655}
14656
14657// GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise
14658// and a boolean to check if the value has been set.
14659func (s *SyntheticsTest) GetMessageOk() (string, bool) {
14660	if s == nil || s.Message == nil {
14661		return "", false
14662	}
14663	return *s.Message, true
14664}
14665
14666// HasMessage returns a boolean if a field has been set.
14667func (s *SyntheticsTest) HasMessage() bool {
14668	if s != nil && s.Message != nil {
14669		return true
14670	}
14671
14672	return false
14673}
14674
14675// SetMessage allocates a new s.Message and returns the pointer to it.
14676func (s *SyntheticsTest) SetMessage(v string) {
14677	s.Message = &v
14678}
14679
14680// GetModifiedAt returns the ModifiedAt field if non-nil, zero value otherwise.
14681func (s *SyntheticsTest) GetModifiedAt() string {
14682	if s == nil || s.ModifiedAt == nil {
14683		return ""
14684	}
14685	return *s.ModifiedAt
14686}
14687
14688// GetModifiedAtOk returns a tuple with the ModifiedAt field if it's non-nil, zero value otherwise
14689// and a boolean to check if the value has been set.
14690func (s *SyntheticsTest) GetModifiedAtOk() (string, bool) {
14691	if s == nil || s.ModifiedAt == nil {
14692		return "", false
14693	}
14694	return *s.ModifiedAt, true
14695}
14696
14697// HasModifiedAt returns a boolean if a field has been set.
14698func (s *SyntheticsTest) HasModifiedAt() bool {
14699	if s != nil && s.ModifiedAt != nil {
14700		return true
14701	}
14702
14703	return false
14704}
14705
14706// SetModifiedAt allocates a new s.ModifiedAt and returns the pointer to it.
14707func (s *SyntheticsTest) SetModifiedAt(v string) {
14708	s.ModifiedAt = &v
14709}
14710
14711// GetModifiedBy returns the ModifiedBy field if non-nil, zero value otherwise.
14712func (s *SyntheticsTest) GetModifiedBy() SyntheticsUser {
14713	if s == nil || s.ModifiedBy == nil {
14714		return SyntheticsUser{}
14715	}
14716	return *s.ModifiedBy
14717}
14718
14719// GetModifiedByOk returns a tuple with the ModifiedBy field if it's non-nil, zero value otherwise
14720// and a boolean to check if the value has been set.
14721func (s *SyntheticsTest) GetModifiedByOk() (SyntheticsUser, bool) {
14722	if s == nil || s.ModifiedBy == nil {
14723		return SyntheticsUser{}, false
14724	}
14725	return *s.ModifiedBy, true
14726}
14727
14728// HasModifiedBy returns a boolean if a field has been set.
14729func (s *SyntheticsTest) HasModifiedBy() bool {
14730	if s != nil && s.ModifiedBy != nil {
14731		return true
14732	}
14733
14734	return false
14735}
14736
14737// SetModifiedBy allocates a new s.ModifiedBy and returns the pointer to it.
14738func (s *SyntheticsTest) SetModifiedBy(v SyntheticsUser) {
14739	s.ModifiedBy = &v
14740}
14741
14742// GetMonitorId returns the MonitorId field if non-nil, zero value otherwise.
14743func (s *SyntheticsTest) GetMonitorId() int {
14744	if s == nil || s.MonitorId == nil {
14745		return 0
14746	}
14747	return *s.MonitorId
14748}
14749
14750// GetMonitorIdOk returns a tuple with the MonitorId field if it's non-nil, zero value otherwise
14751// and a boolean to check if the value has been set.
14752func (s *SyntheticsTest) GetMonitorIdOk() (int, bool) {
14753	if s == nil || s.MonitorId == nil {
14754		return 0, false
14755	}
14756	return *s.MonitorId, true
14757}
14758
14759// HasMonitorId returns a boolean if a field has been set.
14760func (s *SyntheticsTest) HasMonitorId() bool {
14761	if s != nil && s.MonitorId != nil {
14762		return true
14763	}
14764
14765	return false
14766}
14767
14768// SetMonitorId allocates a new s.MonitorId and returns the pointer to it.
14769func (s *SyntheticsTest) SetMonitorId(v int) {
14770	s.MonitorId = &v
14771}
14772
14773// GetMonitorStatus returns the MonitorStatus field if non-nil, zero value otherwise.
14774func (s *SyntheticsTest) GetMonitorStatus() string {
14775	if s == nil || s.MonitorStatus == nil {
14776		return ""
14777	}
14778	return *s.MonitorStatus
14779}
14780
14781// GetMonitorStatusOk returns a tuple with the MonitorStatus field if it's non-nil, zero value otherwise
14782// and a boolean to check if the value has been set.
14783func (s *SyntheticsTest) GetMonitorStatusOk() (string, bool) {
14784	if s == nil || s.MonitorStatus == nil {
14785		return "", false
14786	}
14787	return *s.MonitorStatus, true
14788}
14789
14790// HasMonitorStatus returns a boolean if a field has been set.
14791func (s *SyntheticsTest) HasMonitorStatus() bool {
14792	if s != nil && s.MonitorStatus != nil {
14793		return true
14794	}
14795
14796	return false
14797}
14798
14799// SetMonitorStatus allocates a new s.MonitorStatus and returns the pointer to it.
14800func (s *SyntheticsTest) SetMonitorStatus(v string) {
14801	s.MonitorStatus = &v
14802}
14803
14804// GetName returns the Name field if non-nil, zero value otherwise.
14805func (s *SyntheticsTest) GetName() string {
14806	if s == nil || s.Name == nil {
14807		return ""
14808	}
14809	return *s.Name
14810}
14811
14812// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
14813// and a boolean to check if the value has been set.
14814func (s *SyntheticsTest) GetNameOk() (string, bool) {
14815	if s == nil || s.Name == nil {
14816		return "", false
14817	}
14818	return *s.Name, true
14819}
14820
14821// HasName returns a boolean if a field has been set.
14822func (s *SyntheticsTest) HasName() bool {
14823	if s != nil && s.Name != nil {
14824		return true
14825	}
14826
14827	return false
14828}
14829
14830// SetName allocates a new s.Name and returns the pointer to it.
14831func (s *SyntheticsTest) SetName(v string) {
14832	s.Name = &v
14833}
14834
14835// GetOptions returns the Options field if non-nil, zero value otherwise.
14836func (s *SyntheticsTest) GetOptions() SyntheticsOptions {
14837	if s == nil || s.Options == nil {
14838		return SyntheticsOptions{}
14839	}
14840	return *s.Options
14841}
14842
14843// GetOptionsOk returns a tuple with the Options field if it's non-nil, zero value otherwise
14844// and a boolean to check if the value has been set.
14845func (s *SyntheticsTest) GetOptionsOk() (SyntheticsOptions, bool) {
14846	if s == nil || s.Options == nil {
14847		return SyntheticsOptions{}, false
14848	}
14849	return *s.Options, true
14850}
14851
14852// HasOptions returns a boolean if a field has been set.
14853func (s *SyntheticsTest) HasOptions() bool {
14854	if s != nil && s.Options != nil {
14855		return true
14856	}
14857
14858	return false
14859}
14860
14861// SetOptions allocates a new s.Options and returns the pointer to it.
14862func (s *SyntheticsTest) SetOptions(v SyntheticsOptions) {
14863	s.Options = &v
14864}
14865
14866// GetPublicId returns the PublicId field if non-nil, zero value otherwise.
14867func (s *SyntheticsTest) GetPublicId() string {
14868	if s == nil || s.PublicId == nil {
14869		return ""
14870	}
14871	return *s.PublicId
14872}
14873
14874// GetPublicIdOk returns a tuple with the PublicId field if it's non-nil, zero value otherwise
14875// and a boolean to check if the value has been set.
14876func (s *SyntheticsTest) GetPublicIdOk() (string, bool) {
14877	if s == nil || s.PublicId == nil {
14878		return "", false
14879	}
14880	return *s.PublicId, true
14881}
14882
14883// HasPublicId returns a boolean if a field has been set.
14884func (s *SyntheticsTest) HasPublicId() bool {
14885	if s != nil && s.PublicId != nil {
14886		return true
14887	}
14888
14889	return false
14890}
14891
14892// SetPublicId allocates a new s.PublicId and returns the pointer to it.
14893func (s *SyntheticsTest) SetPublicId(v string) {
14894	s.PublicId = &v
14895}
14896
14897// GetStatus returns the Status field if non-nil, zero value otherwise.
14898func (s *SyntheticsTest) GetStatus() string {
14899	if s == nil || s.Status == nil {
14900		return ""
14901	}
14902	return *s.Status
14903}
14904
14905// GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
14906// and a boolean to check if the value has been set.
14907func (s *SyntheticsTest) GetStatusOk() (string, bool) {
14908	if s == nil || s.Status == nil {
14909		return "", false
14910	}
14911	return *s.Status, true
14912}
14913
14914// HasStatus returns a boolean if a field has been set.
14915func (s *SyntheticsTest) HasStatus() bool {
14916	if s != nil && s.Status != nil {
14917		return true
14918	}
14919
14920	return false
14921}
14922
14923// SetStatus allocates a new s.Status and returns the pointer to it.
14924func (s *SyntheticsTest) SetStatus(v string) {
14925	s.Status = &v
14926}
14927
14928// GetType returns the Type field if non-nil, zero value otherwise.
14929func (s *SyntheticsTest) GetType() string {
14930	if s == nil || s.Type == nil {
14931		return ""
14932	}
14933	return *s.Type
14934}
14935
14936// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
14937// and a boolean to check if the value has been set.
14938func (s *SyntheticsTest) GetTypeOk() (string, bool) {
14939	if s == nil || s.Type == nil {
14940		return "", false
14941	}
14942	return *s.Type, true
14943}
14944
14945// HasType returns a boolean if a field has been set.
14946func (s *SyntheticsTest) HasType() bool {
14947	if s != nil && s.Type != nil {
14948		return true
14949	}
14950
14951	return false
14952}
14953
14954// SetType allocates a new s.Type and returns the pointer to it.
14955func (s *SyntheticsTest) SetType(v string) {
14956	s.Type = &v
14957}
14958
14959// GetEmail returns the Email field if non-nil, zero value otherwise.
14960func (s *SyntheticsUser) GetEmail() string {
14961	if s == nil || s.Email == nil {
14962		return ""
14963	}
14964	return *s.Email
14965}
14966
14967// GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise
14968// and a boolean to check if the value has been set.
14969func (s *SyntheticsUser) GetEmailOk() (string, bool) {
14970	if s == nil || s.Email == nil {
14971		return "", false
14972	}
14973	return *s.Email, true
14974}
14975
14976// HasEmail returns a boolean if a field has been set.
14977func (s *SyntheticsUser) HasEmail() bool {
14978	if s != nil && s.Email != nil {
14979		return true
14980	}
14981
14982	return false
14983}
14984
14985// SetEmail allocates a new s.Email and returns the pointer to it.
14986func (s *SyntheticsUser) SetEmail(v string) {
14987	s.Email = &v
14988}
14989
14990// GetHandle returns the Handle field if non-nil, zero value otherwise.
14991func (s *SyntheticsUser) GetHandle() string {
14992	if s == nil || s.Handle == nil {
14993		return ""
14994	}
14995	return *s.Handle
14996}
14997
14998// GetHandleOk returns a tuple with the Handle field if it's non-nil, zero value otherwise
14999// and a boolean to check if the value has been set.
15000func (s *SyntheticsUser) GetHandleOk() (string, bool) {
15001	if s == nil || s.Handle == nil {
15002		return "", false
15003	}
15004	return *s.Handle, true
15005}
15006
15007// HasHandle returns a boolean if a field has been set.
15008func (s *SyntheticsUser) HasHandle() bool {
15009	if s != nil && s.Handle != nil {
15010		return true
15011	}
15012
15013	return false
15014}
15015
15016// SetHandle allocates a new s.Handle and returns the pointer to it.
15017func (s *SyntheticsUser) SetHandle(v string) {
15018	s.Handle = &v
15019}
15020
15021// GetId returns the Id field if non-nil, zero value otherwise.
15022func (s *SyntheticsUser) GetId() int {
15023	if s == nil || s.Id == nil {
15024		return 0
15025	}
15026	return *s.Id
15027}
15028
15029// GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
15030// and a boolean to check if the value has been set.
15031func (s *SyntheticsUser) GetIdOk() (int, bool) {
15032	if s == nil || s.Id == nil {
15033		return 0, false
15034	}
15035	return *s.Id, true
15036}
15037
15038// HasId returns a boolean if a field has been set.
15039func (s *SyntheticsUser) HasId() bool {
15040	if s != nil && s.Id != nil {
15041		return true
15042	}
15043
15044	return false
15045}
15046
15047// SetId allocates a new s.Id and returns the pointer to it.
15048func (s *SyntheticsUser) SetId(v int) {
15049	s.Id = &v
15050}
15051
15052// GetName returns the Name field if non-nil, zero value otherwise.
15053func (s *SyntheticsUser) GetName() string {
15054	if s == nil || s.Name == nil {
15055		return ""
15056	}
15057	return *s.Name
15058}
15059
15060// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
15061// and a boolean to check if the value has been set.
15062func (s *SyntheticsUser) GetNameOk() (string, bool) {
15063	if s == nil || s.Name == nil {
15064		return "", false
15065	}
15066	return *s.Name, true
15067}
15068
15069// HasName returns a boolean if a field has been set.
15070func (s *SyntheticsUser) HasName() bool {
15071	if s != nil && s.Name != nil {
15072		return true
15073	}
15074
15075	return false
15076}
15077
15078// SetName allocates a new s.Name and returns the pointer to it.
15079func (s *SyntheticsUser) SetName(v string) {
15080	s.Name = &v
15081}
15082
15083// GetDefault returns the Default field if non-nil, zero value otherwise.
15084func (t *TemplateVariable) GetDefault() string {
15085	if t == nil || t.Default == nil {
15086		return ""
15087	}
15088	return *t.Default
15089}
15090
15091// GetDefaultOk returns a tuple with the Default field if it's non-nil, zero value otherwise
15092// and a boolean to check if the value has been set.
15093func (t *TemplateVariable) GetDefaultOk() (string, bool) {
15094	if t == nil || t.Default == nil {
15095		return "", false
15096	}
15097	return *t.Default, true
15098}
15099
15100// HasDefault returns a boolean if a field has been set.
15101func (t *TemplateVariable) HasDefault() bool {
15102	if t != nil && t.Default != nil {
15103		return true
15104	}
15105
15106	return false
15107}
15108
15109// SetDefault allocates a new t.Default and returns the pointer to it.
15110func (t *TemplateVariable) SetDefault(v string) {
15111	t.Default = &v
15112}
15113
15114// GetName returns the Name field if non-nil, zero value otherwise.
15115func (t *TemplateVariable) GetName() string {
15116	if t == nil || t.Name == nil {
15117		return ""
15118	}
15119	return *t.Name
15120}
15121
15122// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
15123// and a boolean to check if the value has been set.
15124func (t *TemplateVariable) GetNameOk() (string, bool) {
15125	if t == nil || t.Name == nil {
15126		return "", false
15127	}
15128	return *t.Name, true
15129}
15130
15131// HasName returns a boolean if a field has been set.
15132func (t *TemplateVariable) HasName() bool {
15133	if t != nil && t.Name != nil {
15134		return true
15135	}
15136
15137	return false
15138}
15139
15140// SetName allocates a new t.Name and returns the pointer to it.
15141func (t *TemplateVariable) SetName(v string) {
15142	t.Name = &v
15143}
15144
15145// GetPrefix returns the Prefix field if non-nil, zero value otherwise.
15146func (t *TemplateVariable) GetPrefix() string {
15147	if t == nil || t.Prefix == nil {
15148		return ""
15149	}
15150	return *t.Prefix
15151}
15152
15153// GetPrefixOk returns a tuple with the Prefix field if it's non-nil, zero value otherwise
15154// and a boolean to check if the value has been set.
15155func (t *TemplateVariable) GetPrefixOk() (string, bool) {
15156	if t == nil || t.Prefix == nil {
15157		return "", false
15158	}
15159	return *t.Prefix, true
15160}
15161
15162// HasPrefix returns a boolean if a field has been set.
15163func (t *TemplateVariable) HasPrefix() bool {
15164	if t != nil && t.Prefix != nil {
15165		return true
15166	}
15167
15168	return false
15169}
15170
15171// SetPrefix allocates a new t.Prefix and returns the pointer to it.
15172func (t *TemplateVariable) SetPrefix(v string) {
15173	t.Prefix = &v
15174}
15175
15176// GetCritical returns the Critical field if non-nil, zero value otherwise.
15177func (t *ThresholdCount) GetCritical() json.Number {
15178	if t == nil || t.Critical == nil {
15179		return ""
15180	}
15181	return *t.Critical
15182}
15183
15184// GetCriticalOk returns a tuple with the Critical field if it's non-nil, zero value otherwise
15185// and a boolean to check if the value has been set.
15186func (t *ThresholdCount) GetCriticalOk() (json.Number, bool) {
15187	if t == nil || t.Critical == nil {
15188		return "", false
15189	}
15190	return *t.Critical, true
15191}
15192
15193// HasCritical returns a boolean if a field has been set.
15194func (t *ThresholdCount) HasCritical() bool {
15195	if t != nil && t.Critical != nil {
15196		return true
15197	}
15198
15199	return false
15200}
15201
15202// SetCritical allocates a new t.Critical and returns the pointer to it.
15203func (t *ThresholdCount) SetCritical(v json.Number) {
15204	t.Critical = &v
15205}
15206
15207// GetCriticalRecovery returns the CriticalRecovery field if non-nil, zero value otherwise.
15208func (t *ThresholdCount) GetCriticalRecovery() json.Number {
15209	if t == nil || t.CriticalRecovery == nil {
15210		return ""
15211	}
15212	return *t.CriticalRecovery
15213}
15214
15215// GetCriticalRecoveryOk returns a tuple with the CriticalRecovery field if it's non-nil, zero value otherwise
15216// and a boolean to check if the value has been set.
15217func (t *ThresholdCount) GetCriticalRecoveryOk() (json.Number, bool) {
15218	if t == nil || t.CriticalRecovery == nil {
15219		return "", false
15220	}
15221	return *t.CriticalRecovery, true
15222}
15223
15224// HasCriticalRecovery returns a boolean if a field has been set.
15225func (t *ThresholdCount) HasCriticalRecovery() bool {
15226	if t != nil && t.CriticalRecovery != nil {
15227		return true
15228	}
15229
15230	return false
15231}
15232
15233// SetCriticalRecovery allocates a new t.CriticalRecovery and returns the pointer to it.
15234func (t *ThresholdCount) SetCriticalRecovery(v json.Number) {
15235	t.CriticalRecovery = &v
15236}
15237
15238// GetOk returns the Ok field if non-nil, zero value otherwise.
15239func (t *ThresholdCount) GetOk() json.Number {
15240	if t == nil || t.Ok == nil {
15241		return ""
15242	}
15243	return *t.Ok
15244}
15245
15246// GetOkOk returns a tuple with the Ok field if it's non-nil, zero value otherwise
15247// and a boolean to check if the value has been set.
15248func (t *ThresholdCount) GetOkOk() (json.Number, bool) {
15249	if t == nil || t.Ok == nil {
15250		return "", false
15251	}
15252	return *t.Ok, true
15253}
15254
15255// HasOk returns a boolean if a field has been set.
15256func (t *ThresholdCount) HasOk() bool {
15257	if t != nil && t.Ok != nil {
15258		return true
15259	}
15260
15261	return false
15262}
15263
15264// SetOk allocates a new t.Ok and returns the pointer to it.
15265func (t *ThresholdCount) SetOk(v json.Number) {
15266	t.Ok = &v
15267}
15268
15269// GetPeriod returns the Period field if non-nil, zero value otherwise.
15270func (t *ThresholdCount) GetPeriod() Period {
15271	if t == nil || t.Period == nil {
15272		return Period{}
15273	}
15274	return *t.Period
15275}
15276
15277// GetPeriodOk returns a tuple with the Period field if it's non-nil, zero value otherwise
15278// and a boolean to check if the value has been set.
15279func (t *ThresholdCount) GetPeriodOk() (Period, bool) {
15280	if t == nil || t.Period == nil {
15281		return Period{}, false
15282	}
15283	return *t.Period, true
15284}
15285
15286// HasPeriod returns a boolean if a field has been set.
15287func (t *ThresholdCount) HasPeriod() bool {
15288	if t != nil && t.Period != nil {
15289		return true
15290	}
15291
15292	return false
15293}
15294
15295// SetPeriod allocates a new t.Period and returns the pointer to it.
15296func (t *ThresholdCount) SetPeriod(v Period) {
15297	t.Period = &v
15298}
15299
15300// GetTimeAggregator returns the TimeAggregator field if non-nil, zero value otherwise.
15301func (t *ThresholdCount) GetTimeAggregator() string {
15302	if t == nil || t.TimeAggregator == nil {
15303		return ""
15304	}
15305	return *t.TimeAggregator
15306}
15307
15308// GetTimeAggregatorOk returns a tuple with the TimeAggregator field if it's non-nil, zero value otherwise
15309// and a boolean to check if the value has been set.
15310func (t *ThresholdCount) GetTimeAggregatorOk() (string, bool) {
15311	if t == nil || t.TimeAggregator == nil {
15312		return "", false
15313	}
15314	return *t.TimeAggregator, true
15315}
15316
15317// HasTimeAggregator returns a boolean if a field has been set.
15318func (t *ThresholdCount) HasTimeAggregator() bool {
15319	if t != nil && t.TimeAggregator != nil {
15320		return true
15321	}
15322
15323	return false
15324}
15325
15326// SetTimeAggregator allocates a new t.TimeAggregator and returns the pointer to it.
15327func (t *ThresholdCount) SetTimeAggregator(v string) {
15328	t.TimeAggregator = &v
15329}
15330
15331// GetUnknown returns the Unknown field if non-nil, zero value otherwise.
15332func (t *ThresholdCount) GetUnknown() json.Number {
15333	if t == nil || t.Unknown == nil {
15334		return ""
15335	}
15336	return *t.Unknown
15337}
15338
15339// GetUnknownOk returns a tuple with the Unknown field if it's non-nil, zero value otherwise
15340// and a boolean to check if the value has been set.
15341func (t *ThresholdCount) GetUnknownOk() (json.Number, bool) {
15342	if t == nil || t.Unknown == nil {
15343		return "", false
15344	}
15345	return *t.Unknown, true
15346}
15347
15348// HasUnknown returns a boolean if a field has been set.
15349func (t *ThresholdCount) HasUnknown() bool {
15350	if t != nil && t.Unknown != nil {
15351		return true
15352	}
15353
15354	return false
15355}
15356
15357// SetUnknown allocates a new t.Unknown and returns the pointer to it.
15358func (t *ThresholdCount) SetUnknown(v json.Number) {
15359	t.Unknown = &v
15360}
15361
15362// GetWarning returns the Warning field if non-nil, zero value otherwise.
15363func (t *ThresholdCount) GetWarning() json.Number {
15364	if t == nil || t.Warning == nil {
15365		return ""
15366	}
15367	return *t.Warning
15368}
15369
15370// GetWarningOk returns a tuple with the Warning field if it's non-nil, zero value otherwise
15371// and a boolean to check if the value has been set.
15372func (t *ThresholdCount) GetWarningOk() (json.Number, bool) {
15373	if t == nil || t.Warning == nil {
15374		return "", false
15375	}
15376	return *t.Warning, true
15377}
15378
15379// HasWarning returns a boolean if a field has been set.
15380func (t *ThresholdCount) HasWarning() bool {
15381	if t != nil && t.Warning != nil {
15382		return true
15383	}
15384
15385	return false
15386}
15387
15388// SetWarning allocates a new t.Warning and returns the pointer to it.
15389func (t *ThresholdCount) SetWarning(v json.Number) {
15390	t.Warning = &v
15391}
15392
15393// GetWarningRecovery returns the WarningRecovery field if non-nil, zero value otherwise.
15394func (t *ThresholdCount) GetWarningRecovery() json.Number {
15395	if t == nil || t.WarningRecovery == nil {
15396		return ""
15397	}
15398	return *t.WarningRecovery
15399}
15400
15401// GetWarningRecoveryOk returns a tuple with the WarningRecovery field if it's non-nil, zero value otherwise
15402// and a boolean to check if the value has been set.
15403func (t *ThresholdCount) GetWarningRecoveryOk() (json.Number, bool) {
15404	if t == nil || t.WarningRecovery == nil {
15405		return "", false
15406	}
15407	return *t.WarningRecovery, true
15408}
15409
15410// HasWarningRecovery returns a boolean if a field has been set.
15411func (t *ThresholdCount) HasWarningRecovery() bool {
15412	if t != nil && t.WarningRecovery != nil {
15413		return true
15414	}
15415
15416	return false
15417}
15418
15419// SetWarningRecovery allocates a new t.WarningRecovery and returns the pointer to it.
15420func (t *ThresholdCount) SetWarningRecovery(v json.Number) {
15421	t.WarningRecovery = &v
15422}
15423
15424// GetRecoveryWindow returns the RecoveryWindow field if non-nil, zero value otherwise.
15425func (t *ThresholdWindows) GetRecoveryWindow() string {
15426	if t == nil || t.RecoveryWindow == nil {
15427		return ""
15428	}
15429	return *t.RecoveryWindow
15430}
15431
15432// GetRecoveryWindowOk returns a tuple with the RecoveryWindow field if it's non-nil, zero value otherwise
15433// and a boolean to check if the value has been set.
15434func (t *ThresholdWindows) GetRecoveryWindowOk() (string, bool) {
15435	if t == nil || t.RecoveryWindow == nil {
15436		return "", false
15437	}
15438	return *t.RecoveryWindow, true
15439}
15440
15441// HasRecoveryWindow returns a boolean if a field has been set.
15442func (t *ThresholdWindows) HasRecoveryWindow() bool {
15443	if t != nil && t.RecoveryWindow != nil {
15444		return true
15445	}
15446
15447	return false
15448}
15449
15450// SetRecoveryWindow allocates a new t.RecoveryWindow and returns the pointer to it.
15451func (t *ThresholdWindows) SetRecoveryWindow(v string) {
15452	t.RecoveryWindow = &v
15453}
15454
15455// GetTriggerWindow returns the TriggerWindow field if non-nil, zero value otherwise.
15456func (t *ThresholdWindows) GetTriggerWindow() string {
15457	if t == nil || t.TriggerWindow == nil {
15458		return ""
15459	}
15460	return *t.TriggerWindow
15461}
15462
15463// GetTriggerWindowOk returns a tuple with the TriggerWindow field if it's non-nil, zero value otherwise
15464// and a boolean to check if the value has been set.
15465func (t *ThresholdWindows) GetTriggerWindowOk() (string, bool) {
15466	if t == nil || t.TriggerWindow == nil {
15467		return "", false
15468	}
15469	return *t.TriggerWindow, true
15470}
15471
15472// HasTriggerWindow returns a boolean if a field has been set.
15473func (t *ThresholdWindows) HasTriggerWindow() bool {
15474	if t != nil && t.TriggerWindow != nil {
15475		return true
15476	}
15477
15478	return false
15479}
15480
15481// SetTriggerWindow allocates a new t.TriggerWindow and returns the pointer to it.
15482func (t *ThresholdWindows) SetTriggerWindow(v string) {
15483	t.TriggerWindow = &v
15484}
15485
15486// GetAutoscale returns the Autoscale field if non-nil, zero value otherwise.
15487func (t *TileDef) GetAutoscale() bool {
15488	if t == nil || t.Autoscale == nil {
15489		return false
15490	}
15491	return *t.Autoscale
15492}
15493
15494// GetAutoscaleOk returns a tuple with the Autoscale field if it's non-nil, zero value otherwise
15495// and a boolean to check if the value has been set.
15496func (t *TileDef) GetAutoscaleOk() (bool, bool) {
15497	if t == nil || t.Autoscale == nil {
15498		return false, false
15499	}
15500	return *t.Autoscale, true
15501}
15502
15503// HasAutoscale returns a boolean if a field has been set.
15504func (t *TileDef) HasAutoscale() bool {
15505	if t != nil && t.Autoscale != nil {
15506		return true
15507	}
15508
15509	return false
15510}
15511
15512// SetAutoscale allocates a new t.Autoscale and returns the pointer to it.
15513func (t *TileDef) SetAutoscale(v bool) {
15514	t.Autoscale = &v
15515}
15516
15517// GetCustomUnit returns the CustomUnit field if non-nil, zero value otherwise.
15518func (t *TileDef) GetCustomUnit() string {
15519	if t == nil || t.CustomUnit == nil {
15520		return ""
15521	}
15522	return *t.CustomUnit
15523}
15524
15525// GetCustomUnitOk returns a tuple with the CustomUnit field if it's non-nil, zero value otherwise
15526// and a boolean to check if the value has been set.
15527func (t *TileDef) GetCustomUnitOk() (string, bool) {
15528	if t == nil || t.CustomUnit == nil {
15529		return "", false
15530	}
15531	return *t.CustomUnit, true
15532}
15533
15534// HasCustomUnit returns a boolean if a field has been set.
15535func (t *TileDef) HasCustomUnit() bool {
15536	if t != nil && t.CustomUnit != nil {
15537		return true
15538	}
15539
15540	return false
15541}
15542
15543// SetCustomUnit allocates a new t.CustomUnit and returns the pointer to it.
15544func (t *TileDef) SetCustomUnit(v string) {
15545	t.CustomUnit = &v
15546}
15547
15548// GetNodeType returns the NodeType field if non-nil, zero value otherwise.
15549func (t *TileDef) GetNodeType() string {
15550	if t == nil || t.NodeType == nil {
15551		return ""
15552	}
15553	return *t.NodeType
15554}
15555
15556// GetNodeTypeOk returns a tuple with the NodeType field if it's non-nil, zero value otherwise
15557// and a boolean to check if the value has been set.
15558func (t *TileDef) GetNodeTypeOk() (string, bool) {
15559	if t == nil || t.NodeType == nil {
15560		return "", false
15561	}
15562	return *t.NodeType, true
15563}
15564
15565// HasNodeType returns a boolean if a field has been set.
15566func (t *TileDef) HasNodeType() bool {
15567	if t != nil && t.NodeType != nil {
15568		return true
15569	}
15570
15571	return false
15572}
15573
15574// SetNodeType allocates a new t.NodeType and returns the pointer to it.
15575func (t *TileDef) SetNodeType(v string) {
15576	t.NodeType = &v
15577}
15578
15579// GetNoGroupHosts returns the NoGroupHosts field if non-nil, zero value otherwise.
15580func (t *TileDef) GetNoGroupHosts() bool {
15581	if t == nil || t.NoGroupHosts == nil {
15582		return false
15583	}
15584	return *t.NoGroupHosts
15585}
15586
15587// GetNoGroupHostsOk returns a tuple with the NoGroupHosts field if it's non-nil, zero value otherwise
15588// and a boolean to check if the value has been set.
15589func (t *TileDef) GetNoGroupHostsOk() (bool, bool) {
15590	if t == nil || t.NoGroupHosts == nil {
15591		return false, false
15592	}
15593	return *t.NoGroupHosts, true
15594}
15595
15596// HasNoGroupHosts returns a boolean if a field has been set.
15597func (t *TileDef) HasNoGroupHosts() bool {
15598	if t != nil && t.NoGroupHosts != nil {
15599		return true
15600	}
15601
15602	return false
15603}
15604
15605// SetNoGroupHosts allocates a new t.NoGroupHosts and returns the pointer to it.
15606func (t *TileDef) SetNoGroupHosts(v bool) {
15607	t.NoGroupHosts = &v
15608}
15609
15610// GetNoMetricHosts returns the NoMetricHosts field if non-nil, zero value otherwise.
15611func (t *TileDef) GetNoMetricHosts() bool {
15612	if t == nil || t.NoMetricHosts == nil {
15613		return false
15614	}
15615	return *t.NoMetricHosts
15616}
15617
15618// GetNoMetricHostsOk returns a tuple with the NoMetricHosts field if it's non-nil, zero value otherwise
15619// and a boolean to check if the value has been set.
15620func (t *TileDef) GetNoMetricHostsOk() (bool, bool) {
15621	if t == nil || t.NoMetricHosts == nil {
15622		return false, false
15623	}
15624	return *t.NoMetricHosts, true
15625}
15626
15627// HasNoMetricHosts returns a boolean if a field has been set.
15628func (t *TileDef) HasNoMetricHosts() bool {
15629	if t != nil && t.NoMetricHosts != nil {
15630		return true
15631	}
15632
15633	return false
15634}
15635
15636// SetNoMetricHosts allocates a new t.NoMetricHosts and returns the pointer to it.
15637func (t *TileDef) SetNoMetricHosts(v bool) {
15638	t.NoMetricHosts = &v
15639}
15640
15641// GetPrecision returns the Precision field if non-nil, zero value otherwise.
15642func (t *TileDef) GetPrecision() PrecisionT {
15643	if t == nil || t.Precision == nil {
15644		return ""
15645	}
15646	return *t.Precision
15647}
15648
15649// GetPrecisionOk returns a tuple with the Precision field if it's non-nil, zero value otherwise
15650// and a boolean to check if the value has been set.
15651func (t *TileDef) GetPrecisionOk() (PrecisionT, bool) {
15652	if t == nil || t.Precision == nil {
15653		return "", false
15654	}
15655	return *t.Precision, true
15656}
15657
15658// HasPrecision returns a boolean if a field has been set.
15659func (t *TileDef) HasPrecision() bool {
15660	if t != nil && t.Precision != nil {
15661		return true
15662	}
15663
15664	return false
15665}
15666
15667// SetPrecision allocates a new t.Precision and returns the pointer to it.
15668func (t *TileDef) SetPrecision(v PrecisionT) {
15669	t.Precision = &v
15670}
15671
15672// GetStyle returns the Style field if non-nil, zero value otherwise.
15673func (t *TileDef) GetStyle() TileDefStyle {
15674	if t == nil || t.Style == nil {
15675		return TileDefStyle{}
15676	}
15677	return *t.Style
15678}
15679
15680// GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise
15681// and a boolean to check if the value has been set.
15682func (t *TileDef) GetStyleOk() (TileDefStyle, bool) {
15683	if t == nil || t.Style == nil {
15684		return TileDefStyle{}, false
15685	}
15686	return *t.Style, true
15687}
15688
15689// HasStyle returns a boolean if a field has been set.
15690func (t *TileDef) HasStyle() bool {
15691	if t != nil && t.Style != nil {
15692		return true
15693	}
15694
15695	return false
15696}
15697
15698// SetStyle allocates a new t.Style and returns the pointer to it.
15699func (t *TileDef) SetStyle(v TileDefStyle) {
15700	t.Style = &v
15701}
15702
15703// GetTextAlign returns the TextAlign field if non-nil, zero value otherwise.
15704func (t *TileDef) GetTextAlign() string {
15705	if t == nil || t.TextAlign == nil {
15706		return ""
15707	}
15708	return *t.TextAlign
15709}
15710
15711// GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise
15712// and a boolean to check if the value has been set.
15713func (t *TileDef) GetTextAlignOk() (string, bool) {
15714	if t == nil || t.TextAlign == nil {
15715		return "", false
15716	}
15717	return *t.TextAlign, true
15718}
15719
15720// HasTextAlign returns a boolean if a field has been set.
15721func (t *TileDef) HasTextAlign() bool {
15722	if t != nil && t.TextAlign != nil {
15723		return true
15724	}
15725
15726	return false
15727}
15728
15729// SetTextAlign allocates a new t.TextAlign and returns the pointer to it.
15730func (t *TileDef) SetTextAlign(v string) {
15731	t.TextAlign = &v
15732}
15733
15734// GetViz returns the Viz field if non-nil, zero value otherwise.
15735func (t *TileDef) GetViz() string {
15736	if t == nil || t.Viz == nil {
15737		return ""
15738	}
15739	return *t.Viz
15740}
15741
15742// GetVizOk returns a tuple with the Viz field if it's non-nil, zero value otherwise
15743// and a boolean to check if the value has been set.
15744func (t *TileDef) GetVizOk() (string, bool) {
15745	if t == nil || t.Viz == nil {
15746		return "", false
15747	}
15748	return *t.Viz, true
15749}
15750
15751// HasViz returns a boolean if a field has been set.
15752func (t *TileDef) HasViz() bool {
15753	if t != nil && t.Viz != nil {
15754		return true
15755	}
15756
15757	return false
15758}
15759
15760// SetViz allocates a new t.Viz and returns the pointer to it.
15761func (t *TileDef) SetViz(v string) {
15762	t.Viz = &v
15763}
15764
15765// GetQuery returns the Query field if non-nil, zero value otherwise.
15766func (t *TileDefEvent) GetQuery() string {
15767	if t == nil || t.Query == nil {
15768		return ""
15769	}
15770	return *t.Query
15771}
15772
15773// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
15774// and a boolean to check if the value has been set.
15775func (t *TileDefEvent) GetQueryOk() (string, bool) {
15776	if t == nil || t.Query == nil {
15777		return "", false
15778	}
15779	return *t.Query, true
15780}
15781
15782// HasQuery returns a boolean if a field has been set.
15783func (t *TileDefEvent) HasQuery() bool {
15784	if t != nil && t.Query != nil {
15785		return true
15786	}
15787
15788	return false
15789}
15790
15791// SetQuery allocates a new t.Query and returns the pointer to it.
15792func (t *TileDefEvent) SetQuery(v string) {
15793	t.Query = &v
15794}
15795
15796// GetLabel returns the Label field if non-nil, zero value otherwise.
15797func (t *TileDefMarker) GetLabel() string {
15798	if t == nil || t.Label == nil {
15799		return ""
15800	}
15801	return *t.Label
15802}
15803
15804// GetLabelOk returns a tuple with the Label field if it's non-nil, zero value otherwise
15805// and a boolean to check if the value has been set.
15806func (t *TileDefMarker) GetLabelOk() (string, bool) {
15807	if t == nil || t.Label == nil {
15808		return "", false
15809	}
15810	return *t.Label, true
15811}
15812
15813// HasLabel returns a boolean if a field has been set.
15814func (t *TileDefMarker) HasLabel() bool {
15815	if t != nil && t.Label != nil {
15816		return true
15817	}
15818
15819	return false
15820}
15821
15822// SetLabel allocates a new t.Label and returns the pointer to it.
15823func (t *TileDefMarker) SetLabel(v string) {
15824	t.Label = &v
15825}
15826
15827// GetType returns the Type field if non-nil, zero value otherwise.
15828func (t *TileDefMarker) GetType() string {
15829	if t == nil || t.Type == nil {
15830		return ""
15831	}
15832	return *t.Type
15833}
15834
15835// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
15836// and a boolean to check if the value has been set.
15837func (t *TileDefMarker) GetTypeOk() (string, bool) {
15838	if t == nil || t.Type == nil {
15839		return "", false
15840	}
15841	return *t.Type, true
15842}
15843
15844// HasType returns a boolean if a field has been set.
15845func (t *TileDefMarker) HasType() bool {
15846	if t != nil && t.Type != nil {
15847		return true
15848	}
15849
15850	return false
15851}
15852
15853// SetType allocates a new t.Type and returns the pointer to it.
15854func (t *TileDefMarker) SetType(v string) {
15855	t.Type = &v
15856}
15857
15858// GetValue returns the Value field if non-nil, zero value otherwise.
15859func (t *TileDefMarker) GetValue() string {
15860	if t == nil || t.Value == nil {
15861		return ""
15862	}
15863	return *t.Value
15864}
15865
15866// GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise
15867// and a boolean to check if the value has been set.
15868func (t *TileDefMarker) GetValueOk() (string, bool) {
15869	if t == nil || t.Value == nil {
15870		return "", false
15871	}
15872	return *t.Value, true
15873}
15874
15875// HasValue returns a boolean if a field has been set.
15876func (t *TileDefMarker) HasValue() bool {
15877	if t != nil && t.Value != nil {
15878		return true
15879	}
15880
15881	return false
15882}
15883
15884// SetValue allocates a new t.Value and returns the pointer to it.
15885func (t *TileDefMarker) SetValue(v string) {
15886	t.Value = &v
15887}
15888
15889// GetAlias returns the Alias field if non-nil, zero value otherwise.
15890func (t *TileDefMetadata) GetAlias() string {
15891	if t == nil || t.Alias == nil {
15892		return ""
15893	}
15894	return *t.Alias
15895}
15896
15897// GetAliasOk returns a tuple with the Alias field if it's non-nil, zero value otherwise
15898// and a boolean to check if the value has been set.
15899func (t *TileDefMetadata) GetAliasOk() (string, bool) {
15900	if t == nil || t.Alias == nil {
15901		return "", false
15902	}
15903	return *t.Alias, true
15904}
15905
15906// HasAlias returns a boolean if a field has been set.
15907func (t *TileDefMetadata) HasAlias() bool {
15908	if t != nil && t.Alias != nil {
15909		return true
15910	}
15911
15912	return false
15913}
15914
15915// SetAlias allocates a new t.Alias and returns the pointer to it.
15916func (t *TileDefMetadata) SetAlias(v string) {
15917	t.Alias = &v
15918}
15919
15920// GetAggregator returns the Aggregator field if non-nil, zero value otherwise.
15921func (t *TileDefRequest) GetAggregator() string {
15922	if t == nil || t.Aggregator == nil {
15923		return ""
15924	}
15925	return *t.Aggregator
15926}
15927
15928// GetAggregatorOk returns a tuple with the Aggregator field if it's non-nil, zero value otherwise
15929// and a boolean to check if the value has been set.
15930func (t *TileDefRequest) GetAggregatorOk() (string, bool) {
15931	if t == nil || t.Aggregator == nil {
15932		return "", false
15933	}
15934	return *t.Aggregator, true
15935}
15936
15937// HasAggregator returns a boolean if a field has been set.
15938func (t *TileDefRequest) HasAggregator() bool {
15939	if t != nil && t.Aggregator != nil {
15940		return true
15941	}
15942
15943	return false
15944}
15945
15946// SetAggregator allocates a new t.Aggregator and returns the pointer to it.
15947func (t *TileDefRequest) SetAggregator(v string) {
15948	t.Aggregator = &v
15949}
15950
15951// GetChangeType returns the ChangeType field if non-nil, zero value otherwise.
15952func (t *TileDefRequest) GetChangeType() string {
15953	if t == nil || t.ChangeType == nil {
15954		return ""
15955	}
15956	return *t.ChangeType
15957}
15958
15959// GetChangeTypeOk returns a tuple with the ChangeType field if it's non-nil, zero value otherwise
15960// and a boolean to check if the value has been set.
15961func (t *TileDefRequest) GetChangeTypeOk() (string, bool) {
15962	if t == nil || t.ChangeType == nil {
15963		return "", false
15964	}
15965	return *t.ChangeType, true
15966}
15967
15968// HasChangeType returns a boolean if a field has been set.
15969func (t *TileDefRequest) HasChangeType() bool {
15970	if t != nil && t.ChangeType != nil {
15971		return true
15972	}
15973
15974	return false
15975}
15976
15977// SetChangeType allocates a new t.ChangeType and returns the pointer to it.
15978func (t *TileDefRequest) SetChangeType(v string) {
15979	t.ChangeType = &v
15980}
15981
15982// GetCompareTo returns the CompareTo field if non-nil, zero value otherwise.
15983func (t *TileDefRequest) GetCompareTo() string {
15984	if t == nil || t.CompareTo == nil {
15985		return ""
15986	}
15987	return *t.CompareTo
15988}
15989
15990// GetCompareToOk returns a tuple with the CompareTo field if it's non-nil, zero value otherwise
15991// and a boolean to check if the value has been set.
15992func (t *TileDefRequest) GetCompareToOk() (string, bool) {
15993	if t == nil || t.CompareTo == nil {
15994		return "", false
15995	}
15996	return *t.CompareTo, true
15997}
15998
15999// HasCompareTo returns a boolean if a field has been set.
16000func (t *TileDefRequest) HasCompareTo() bool {
16001	if t != nil && t.CompareTo != nil {
16002		return true
16003	}
16004
16005	return false
16006}
16007
16008// SetCompareTo allocates a new t.CompareTo and returns the pointer to it.
16009func (t *TileDefRequest) SetCompareTo(v string) {
16010	t.CompareTo = &v
16011}
16012
16013// GetExtraCol returns the ExtraCol field if non-nil, zero value otherwise.
16014func (t *TileDefRequest) GetExtraCol() string {
16015	if t == nil || t.ExtraCol == nil {
16016		return ""
16017	}
16018	return *t.ExtraCol
16019}
16020
16021// GetExtraColOk returns a tuple with the ExtraCol field if it's non-nil, zero value otherwise
16022// and a boolean to check if the value has been set.
16023func (t *TileDefRequest) GetExtraColOk() (string, bool) {
16024	if t == nil || t.ExtraCol == nil {
16025		return "", false
16026	}
16027	return *t.ExtraCol, true
16028}
16029
16030// HasExtraCol returns a boolean if a field has been set.
16031func (t *TileDefRequest) HasExtraCol() bool {
16032	if t != nil && t.ExtraCol != nil {
16033		return true
16034	}
16035
16036	return false
16037}
16038
16039// SetExtraCol allocates a new t.ExtraCol and returns the pointer to it.
16040func (t *TileDefRequest) SetExtraCol(v string) {
16041	t.ExtraCol = &v
16042}
16043
16044// GetIncreaseGood returns the IncreaseGood field if non-nil, zero value otherwise.
16045func (t *TileDefRequest) GetIncreaseGood() bool {
16046	if t == nil || t.IncreaseGood == nil {
16047		return false
16048	}
16049	return *t.IncreaseGood
16050}
16051
16052// GetIncreaseGoodOk returns a tuple with the IncreaseGood field if it's non-nil, zero value otherwise
16053// and a boolean to check if the value has been set.
16054func (t *TileDefRequest) GetIncreaseGoodOk() (bool, bool) {
16055	if t == nil || t.IncreaseGood == nil {
16056		return false, false
16057	}
16058	return *t.IncreaseGood, true
16059}
16060
16061// HasIncreaseGood returns a boolean if a field has been set.
16062func (t *TileDefRequest) HasIncreaseGood() bool {
16063	if t != nil && t.IncreaseGood != nil {
16064		return true
16065	}
16066
16067	return false
16068}
16069
16070// SetIncreaseGood allocates a new t.IncreaseGood and returns the pointer to it.
16071func (t *TileDefRequest) SetIncreaseGood(v bool) {
16072	t.IncreaseGood = &v
16073}
16074
16075// GetLimit returns the Limit field if non-nil, zero value otherwise.
16076func (t *TileDefRequest) GetLimit() int {
16077	if t == nil || t.Limit == nil {
16078		return 0
16079	}
16080	return *t.Limit
16081}
16082
16083// GetLimitOk returns a tuple with the Limit field if it's non-nil, zero value otherwise
16084// and a boolean to check if the value has been set.
16085func (t *TileDefRequest) GetLimitOk() (int, bool) {
16086	if t == nil || t.Limit == nil {
16087		return 0, false
16088	}
16089	return *t.Limit, true
16090}
16091
16092// HasLimit returns a boolean if a field has been set.
16093func (t *TileDefRequest) HasLimit() bool {
16094	if t != nil && t.Limit != nil {
16095		return true
16096	}
16097
16098	return false
16099}
16100
16101// SetLimit allocates a new t.Limit and returns the pointer to it.
16102func (t *TileDefRequest) SetLimit(v int) {
16103	t.Limit = &v
16104}
16105
16106// GetMetric returns the Metric field if non-nil, zero value otherwise.
16107func (t *TileDefRequest) GetMetric() string {
16108	if t == nil || t.Metric == nil {
16109		return ""
16110	}
16111	return *t.Metric
16112}
16113
16114// GetMetricOk returns a tuple with the Metric field if it's non-nil, zero value otherwise
16115// and a boolean to check if the value has been set.
16116func (t *TileDefRequest) GetMetricOk() (string, bool) {
16117	if t == nil || t.Metric == nil {
16118		return "", false
16119	}
16120	return *t.Metric, true
16121}
16122
16123// HasMetric returns a boolean if a field has been set.
16124func (t *TileDefRequest) HasMetric() bool {
16125	if t != nil && t.Metric != nil {
16126		return true
16127	}
16128
16129	return false
16130}
16131
16132// SetMetric allocates a new t.Metric and returns the pointer to it.
16133func (t *TileDefRequest) SetMetric(v string) {
16134	t.Metric = &v
16135}
16136
16137// GetOrderBy returns the OrderBy field if non-nil, zero value otherwise.
16138func (t *TileDefRequest) GetOrderBy() string {
16139	if t == nil || t.OrderBy == nil {
16140		return ""
16141	}
16142	return *t.OrderBy
16143}
16144
16145// GetOrderByOk returns a tuple with the OrderBy field if it's non-nil, zero value otherwise
16146// and a boolean to check if the value has been set.
16147func (t *TileDefRequest) GetOrderByOk() (string, bool) {
16148	if t == nil || t.OrderBy == nil {
16149		return "", false
16150	}
16151	return *t.OrderBy, true
16152}
16153
16154// HasOrderBy returns a boolean if a field has been set.
16155func (t *TileDefRequest) HasOrderBy() bool {
16156	if t != nil && t.OrderBy != nil {
16157		return true
16158	}
16159
16160	return false
16161}
16162
16163// SetOrderBy allocates a new t.OrderBy and returns the pointer to it.
16164func (t *TileDefRequest) SetOrderBy(v string) {
16165	t.OrderBy = &v
16166}
16167
16168// GetOrderDir returns the OrderDir field if non-nil, zero value otherwise.
16169func (t *TileDefRequest) GetOrderDir() string {
16170	if t == nil || t.OrderDir == nil {
16171		return ""
16172	}
16173	return *t.OrderDir
16174}
16175
16176// GetOrderDirOk returns a tuple with the OrderDir field if it's non-nil, zero value otherwise
16177// and a boolean to check if the value has been set.
16178func (t *TileDefRequest) GetOrderDirOk() (string, bool) {
16179	if t == nil || t.OrderDir == nil {
16180		return "", false
16181	}
16182	return *t.OrderDir, true
16183}
16184
16185// HasOrderDir returns a boolean if a field has been set.
16186func (t *TileDefRequest) HasOrderDir() bool {
16187	if t != nil && t.OrderDir != nil {
16188		return true
16189	}
16190
16191	return false
16192}
16193
16194// SetOrderDir allocates a new t.OrderDir and returns the pointer to it.
16195func (t *TileDefRequest) SetOrderDir(v string) {
16196	t.OrderDir = &v
16197}
16198
16199// GetQuery returns the Query field if non-nil, zero value otherwise.
16200func (t *TileDefRequest) GetQuery() string {
16201	if t == nil || t.Query == nil {
16202		return ""
16203	}
16204	return *t.Query
16205}
16206
16207// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
16208// and a boolean to check if the value has been set.
16209func (t *TileDefRequest) GetQueryOk() (string, bool) {
16210	if t == nil || t.Query == nil {
16211		return "", false
16212	}
16213	return *t.Query, true
16214}
16215
16216// HasQuery returns a boolean if a field has been set.
16217func (t *TileDefRequest) HasQuery() bool {
16218	if t != nil && t.Query != nil {
16219		return true
16220	}
16221
16222	return false
16223}
16224
16225// SetQuery allocates a new t.Query and returns the pointer to it.
16226func (t *TileDefRequest) SetQuery(v string) {
16227	t.Query = &v
16228}
16229
16230// GetQueryType returns the QueryType field if non-nil, zero value otherwise.
16231func (t *TileDefRequest) GetQueryType() string {
16232	if t == nil || t.QueryType == nil {
16233		return ""
16234	}
16235	return *t.QueryType
16236}
16237
16238// GetQueryTypeOk returns a tuple with the QueryType field if it's non-nil, zero value otherwise
16239// and a boolean to check if the value has been set.
16240func (t *TileDefRequest) GetQueryTypeOk() (string, bool) {
16241	if t == nil || t.QueryType == nil {
16242		return "", false
16243	}
16244	return *t.QueryType, true
16245}
16246
16247// HasQueryType returns a boolean if a field has been set.
16248func (t *TileDefRequest) HasQueryType() bool {
16249	if t != nil && t.QueryType != nil {
16250		return true
16251	}
16252
16253	return false
16254}
16255
16256// SetQueryType allocates a new t.QueryType and returns the pointer to it.
16257func (t *TileDefRequest) SetQueryType(v string) {
16258	t.QueryType = &v
16259}
16260
16261// GetStyle returns the Style field if non-nil, zero value otherwise.
16262func (t *TileDefRequest) GetStyle() TileDefRequestStyle {
16263	if t == nil || t.Style == nil {
16264		return TileDefRequestStyle{}
16265	}
16266	return *t.Style
16267}
16268
16269// GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise
16270// and a boolean to check if the value has been set.
16271func (t *TileDefRequest) GetStyleOk() (TileDefRequestStyle, bool) {
16272	if t == nil || t.Style == nil {
16273		return TileDefRequestStyle{}, false
16274	}
16275	return *t.Style, true
16276}
16277
16278// HasStyle returns a boolean if a field has been set.
16279func (t *TileDefRequest) HasStyle() bool {
16280	if t != nil && t.Style != nil {
16281		return true
16282	}
16283
16284	return false
16285}
16286
16287// SetStyle allocates a new t.Style and returns the pointer to it.
16288func (t *TileDefRequest) SetStyle(v TileDefRequestStyle) {
16289	t.Style = &v
16290}
16291
16292// GetTextFilter returns the TextFilter field if non-nil, zero value otherwise.
16293func (t *TileDefRequest) GetTextFilter() string {
16294	if t == nil || t.TextFilter == nil {
16295		return ""
16296	}
16297	return *t.TextFilter
16298}
16299
16300// GetTextFilterOk returns a tuple with the TextFilter field if it's non-nil, zero value otherwise
16301// and a boolean to check if the value has been set.
16302func (t *TileDefRequest) GetTextFilterOk() (string, bool) {
16303	if t == nil || t.TextFilter == nil {
16304		return "", false
16305	}
16306	return *t.TextFilter, true
16307}
16308
16309// HasTextFilter returns a boolean if a field has been set.
16310func (t *TileDefRequest) HasTextFilter() bool {
16311	if t != nil && t.TextFilter != nil {
16312		return true
16313	}
16314
16315	return false
16316}
16317
16318// SetTextFilter allocates a new t.TextFilter and returns the pointer to it.
16319func (t *TileDefRequest) SetTextFilter(v string) {
16320	t.TextFilter = &v
16321}
16322
16323// GetType returns the Type field if non-nil, zero value otherwise.
16324func (t *TileDefRequest) GetType() string {
16325	if t == nil || t.Type == nil {
16326		return ""
16327	}
16328	return *t.Type
16329}
16330
16331// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
16332// and a boolean to check if the value has been set.
16333func (t *TileDefRequest) GetTypeOk() (string, bool) {
16334	if t == nil || t.Type == nil {
16335		return "", false
16336	}
16337	return *t.Type, true
16338}
16339
16340// HasType returns a boolean if a field has been set.
16341func (t *TileDefRequest) HasType() bool {
16342	if t != nil && t.Type != nil {
16343		return true
16344	}
16345
16346	return false
16347}
16348
16349// SetType allocates a new t.Type and returns the pointer to it.
16350func (t *TileDefRequest) SetType(v string) {
16351	t.Type = &v
16352}
16353
16354// GetPalette returns the Palette field if non-nil, zero value otherwise.
16355func (t *TileDefRequestStyle) GetPalette() string {
16356	if t == nil || t.Palette == nil {
16357		return ""
16358	}
16359	return *t.Palette
16360}
16361
16362// GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise
16363// and a boolean to check if the value has been set.
16364func (t *TileDefRequestStyle) GetPaletteOk() (string, bool) {
16365	if t == nil || t.Palette == nil {
16366		return "", false
16367	}
16368	return *t.Palette, true
16369}
16370
16371// HasPalette returns a boolean if a field has been set.
16372func (t *TileDefRequestStyle) HasPalette() bool {
16373	if t != nil && t.Palette != nil {
16374		return true
16375	}
16376
16377	return false
16378}
16379
16380// SetPalette allocates a new t.Palette and returns the pointer to it.
16381func (t *TileDefRequestStyle) SetPalette(v string) {
16382	t.Palette = &v
16383}
16384
16385// GetType returns the Type field if non-nil, zero value otherwise.
16386func (t *TileDefRequestStyle) GetType() string {
16387	if t == nil || t.Type == nil {
16388		return ""
16389	}
16390	return *t.Type
16391}
16392
16393// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
16394// and a boolean to check if the value has been set.
16395func (t *TileDefRequestStyle) GetTypeOk() (string, bool) {
16396	if t == nil || t.Type == nil {
16397		return "", false
16398	}
16399	return *t.Type, true
16400}
16401
16402// HasType returns a boolean if a field has been set.
16403func (t *TileDefRequestStyle) HasType() bool {
16404	if t != nil && t.Type != nil {
16405		return true
16406	}
16407
16408	return false
16409}
16410
16411// SetType allocates a new t.Type and returns the pointer to it.
16412func (t *TileDefRequestStyle) SetType(v string) {
16413	t.Type = &v
16414}
16415
16416// GetWidth returns the Width field if non-nil, zero value otherwise.
16417func (t *TileDefRequestStyle) GetWidth() string {
16418	if t == nil || t.Width == nil {
16419		return ""
16420	}
16421	return *t.Width
16422}
16423
16424// GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise
16425// and a boolean to check if the value has been set.
16426func (t *TileDefRequestStyle) GetWidthOk() (string, bool) {
16427	if t == nil || t.Width == nil {
16428		return "", false
16429	}
16430	return *t.Width, true
16431}
16432
16433// HasWidth returns a boolean if a field has been set.
16434func (t *TileDefRequestStyle) HasWidth() bool {
16435	if t != nil && t.Width != nil {
16436		return true
16437	}
16438
16439	return false
16440}
16441
16442// SetWidth allocates a new t.Width and returns the pointer to it.
16443func (t *TileDefRequestStyle) SetWidth(v string) {
16444	t.Width = &v
16445}
16446
16447// GetFillMax returns the FillMax field if non-nil, zero value otherwise.
16448func (t *TileDefStyle) GetFillMax() json.Number {
16449	if t == nil || t.FillMax == nil {
16450		return ""
16451	}
16452	return *t.FillMax
16453}
16454
16455// GetFillMaxOk returns a tuple with the FillMax field if it's non-nil, zero value otherwise
16456// and a boolean to check if the value has been set.
16457func (t *TileDefStyle) GetFillMaxOk() (json.Number, bool) {
16458	if t == nil || t.FillMax == nil {
16459		return "", false
16460	}
16461	return *t.FillMax, true
16462}
16463
16464// HasFillMax returns a boolean if a field has been set.
16465func (t *TileDefStyle) HasFillMax() bool {
16466	if t != nil && t.FillMax != nil {
16467		return true
16468	}
16469
16470	return false
16471}
16472
16473// SetFillMax allocates a new t.FillMax and returns the pointer to it.
16474func (t *TileDefStyle) SetFillMax(v json.Number) {
16475	t.FillMax = &v
16476}
16477
16478// GetFillMin returns the FillMin field if non-nil, zero value otherwise.
16479func (t *TileDefStyle) GetFillMin() json.Number {
16480	if t == nil || t.FillMin == nil {
16481		return ""
16482	}
16483	return *t.FillMin
16484}
16485
16486// GetFillMinOk returns a tuple with the FillMin field if it's non-nil, zero value otherwise
16487// and a boolean to check if the value has been set.
16488func (t *TileDefStyle) GetFillMinOk() (json.Number, bool) {
16489	if t == nil || t.FillMin == nil {
16490		return "", false
16491	}
16492	return *t.FillMin, true
16493}
16494
16495// HasFillMin returns a boolean if a field has been set.
16496func (t *TileDefStyle) HasFillMin() bool {
16497	if t != nil && t.FillMin != nil {
16498		return true
16499	}
16500
16501	return false
16502}
16503
16504// SetFillMin allocates a new t.FillMin and returns the pointer to it.
16505func (t *TileDefStyle) SetFillMin(v json.Number) {
16506	t.FillMin = &v
16507}
16508
16509// GetPalette returns the Palette field if non-nil, zero value otherwise.
16510func (t *TileDefStyle) GetPalette() string {
16511	if t == nil || t.Palette == nil {
16512		return ""
16513	}
16514	return *t.Palette
16515}
16516
16517// GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise
16518// and a boolean to check if the value has been set.
16519func (t *TileDefStyle) GetPaletteOk() (string, bool) {
16520	if t == nil || t.Palette == nil {
16521		return "", false
16522	}
16523	return *t.Palette, true
16524}
16525
16526// HasPalette returns a boolean if a field has been set.
16527func (t *TileDefStyle) HasPalette() bool {
16528	if t != nil && t.Palette != nil {
16529		return true
16530	}
16531
16532	return false
16533}
16534
16535// SetPalette allocates a new t.Palette and returns the pointer to it.
16536func (t *TileDefStyle) SetPalette(v string) {
16537	t.Palette = &v
16538}
16539
16540// GetPaletteFlip returns the PaletteFlip field if non-nil, zero value otherwise.
16541func (t *TileDefStyle) GetPaletteFlip() string {
16542	if t == nil || t.PaletteFlip == nil {
16543		return ""
16544	}
16545	return *t.PaletteFlip
16546}
16547
16548// GetPaletteFlipOk returns a tuple with the PaletteFlip field if it's non-nil, zero value otherwise
16549// and a boolean to check if the value has been set.
16550func (t *TileDefStyle) GetPaletteFlipOk() (string, bool) {
16551	if t == nil || t.PaletteFlip == nil {
16552		return "", false
16553	}
16554	return *t.PaletteFlip, true
16555}
16556
16557// HasPaletteFlip returns a boolean if a field has been set.
16558func (t *TileDefStyle) HasPaletteFlip() bool {
16559	if t != nil && t.PaletteFlip != nil {
16560		return true
16561	}
16562
16563	return false
16564}
16565
16566// SetPaletteFlip allocates a new t.PaletteFlip and returns the pointer to it.
16567func (t *TileDefStyle) SetPaletteFlip(v string) {
16568	t.PaletteFlip = &v
16569}
16570
16571// GetLiveSpan returns the LiveSpan field if non-nil, zero value otherwise.
16572func (t *Time) GetLiveSpan() string {
16573	if t == nil || t.LiveSpan == nil {
16574		return ""
16575	}
16576	return *t.LiveSpan
16577}
16578
16579// GetLiveSpanOk returns a tuple with the LiveSpan field if it's non-nil, zero value otherwise
16580// and a boolean to check if the value has been set.
16581func (t *Time) GetLiveSpanOk() (string, bool) {
16582	if t == nil || t.LiveSpan == nil {
16583		return "", false
16584	}
16585	return *t.LiveSpan, true
16586}
16587
16588// HasLiveSpan returns a boolean if a field has been set.
16589func (t *Time) HasLiveSpan() bool {
16590	if t != nil && t.LiveSpan != nil {
16591		return true
16592	}
16593
16594	return false
16595}
16596
16597// SetLiveSpan allocates a new t.LiveSpan and returns the pointer to it.
16598func (t *Time) SetLiveSpan(v string) {
16599	t.LiveSpan = &v
16600}
16601
16602// GetFrom returns the From field if non-nil, zero value otherwise.
16603func (t *TimeRange) GetFrom() json.Number {
16604	if t == nil || t.From == nil {
16605		return ""
16606	}
16607	return *t.From
16608}
16609
16610// GetFromOk returns a tuple with the From field if it's non-nil, zero value otherwise
16611// and a boolean to check if the value has been set.
16612func (t *TimeRange) GetFromOk() (json.Number, bool) {
16613	if t == nil || t.From == nil {
16614		return "", false
16615	}
16616	return *t.From, true
16617}
16618
16619// HasFrom returns a boolean if a field has been set.
16620func (t *TimeRange) HasFrom() bool {
16621	if t != nil && t.From != nil {
16622		return true
16623	}
16624
16625	return false
16626}
16627
16628// SetFrom allocates a new t.From and returns the pointer to it.
16629func (t *TimeRange) SetFrom(v json.Number) {
16630	t.From = &v
16631}
16632
16633// GetLive returns the Live field if non-nil, zero value otherwise.
16634func (t *TimeRange) GetLive() bool {
16635	if t == nil || t.Live == nil {
16636		return false
16637	}
16638	return *t.Live
16639}
16640
16641// GetLiveOk returns a tuple with the Live field if it's non-nil, zero value otherwise
16642// and a boolean to check if the value has been set.
16643func (t *TimeRange) GetLiveOk() (bool, bool) {
16644	if t == nil || t.Live == nil {
16645		return false, false
16646	}
16647	return *t.Live, true
16648}
16649
16650// HasLive returns a boolean if a field has been set.
16651func (t *TimeRange) HasLive() bool {
16652	if t != nil && t.Live != nil {
16653		return true
16654	}
16655
16656	return false
16657}
16658
16659// SetLive allocates a new t.Live and returns the pointer to it.
16660func (t *TimeRange) SetLive(v bool) {
16661	t.Live = &v
16662}
16663
16664// GetTo returns the To field if non-nil, zero value otherwise.
16665func (t *TimeRange) GetTo() json.Number {
16666	if t == nil || t.To == nil {
16667		return ""
16668	}
16669	return *t.To
16670}
16671
16672// GetToOk returns a tuple with the To field if it's non-nil, zero value otherwise
16673// and a boolean to check if the value has been set.
16674func (t *TimeRange) GetToOk() (json.Number, bool) {
16675	if t == nil || t.To == nil {
16676		return "", false
16677	}
16678	return *t.To, true
16679}
16680
16681// HasTo returns a boolean if a field has been set.
16682func (t *TimeRange) HasTo() bool {
16683	if t != nil && t.To != nil {
16684		return true
16685	}
16686
16687	return false
16688}
16689
16690// SetTo allocates a new t.To and returns the pointer to it.
16691func (t *TimeRange) SetTo(v json.Number) {
16692	t.To = &v
16693}
16694
16695// GetLegendSize returns the LegendSize field if non-nil, zero value otherwise.
16696func (t *TimeseriesDefinition) GetLegendSize() string {
16697	if t == nil || t.LegendSize == nil {
16698		return ""
16699	}
16700	return *t.LegendSize
16701}
16702
16703// GetLegendSizeOk returns a tuple with the LegendSize field if it's non-nil, zero value otherwise
16704// and a boolean to check if the value has been set.
16705func (t *TimeseriesDefinition) GetLegendSizeOk() (string, bool) {
16706	if t == nil || t.LegendSize == nil {
16707		return "", false
16708	}
16709	return *t.LegendSize, true
16710}
16711
16712// HasLegendSize returns a boolean if a field has been set.
16713func (t *TimeseriesDefinition) HasLegendSize() bool {
16714	if t != nil && t.LegendSize != nil {
16715		return true
16716	}
16717
16718	return false
16719}
16720
16721// SetLegendSize allocates a new t.LegendSize and returns the pointer to it.
16722func (t *TimeseriesDefinition) SetLegendSize(v string) {
16723	t.LegendSize = &v
16724}
16725
16726// GetShowLegend returns the ShowLegend field if non-nil, zero value otherwise.
16727func (t *TimeseriesDefinition) GetShowLegend() bool {
16728	if t == nil || t.ShowLegend == nil {
16729		return false
16730	}
16731	return *t.ShowLegend
16732}
16733
16734// GetShowLegendOk returns a tuple with the ShowLegend field if it's non-nil, zero value otherwise
16735// and a boolean to check if the value has been set.
16736func (t *TimeseriesDefinition) GetShowLegendOk() (bool, bool) {
16737	if t == nil || t.ShowLegend == nil {
16738		return false, false
16739	}
16740	return *t.ShowLegend, true
16741}
16742
16743// HasShowLegend returns a boolean if a field has been set.
16744func (t *TimeseriesDefinition) HasShowLegend() bool {
16745	if t != nil && t.ShowLegend != nil {
16746		return true
16747	}
16748
16749	return false
16750}
16751
16752// SetShowLegend allocates a new t.ShowLegend and returns the pointer to it.
16753func (t *TimeseriesDefinition) SetShowLegend(v bool) {
16754	t.ShowLegend = &v
16755}
16756
16757// GetTime returns the Time field if non-nil, zero value otherwise.
16758func (t *TimeseriesDefinition) GetTime() WidgetTime {
16759	if t == nil || t.Time == nil {
16760		return WidgetTime{}
16761	}
16762	return *t.Time
16763}
16764
16765// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
16766// and a boolean to check if the value has been set.
16767func (t *TimeseriesDefinition) GetTimeOk() (WidgetTime, bool) {
16768	if t == nil || t.Time == nil {
16769		return WidgetTime{}, false
16770	}
16771	return *t.Time, true
16772}
16773
16774// HasTime returns a boolean if a field has been set.
16775func (t *TimeseriesDefinition) HasTime() bool {
16776	if t != nil && t.Time != nil {
16777		return true
16778	}
16779
16780	return false
16781}
16782
16783// SetTime allocates a new t.Time and returns the pointer to it.
16784func (t *TimeseriesDefinition) SetTime(v WidgetTime) {
16785	t.Time = &v
16786}
16787
16788// GetTitle returns the Title field if non-nil, zero value otherwise.
16789func (t *TimeseriesDefinition) GetTitle() string {
16790	if t == nil || t.Title == nil {
16791		return ""
16792	}
16793	return *t.Title
16794}
16795
16796// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
16797// and a boolean to check if the value has been set.
16798func (t *TimeseriesDefinition) GetTitleOk() (string, bool) {
16799	if t == nil || t.Title == nil {
16800		return "", false
16801	}
16802	return *t.Title, true
16803}
16804
16805// HasTitle returns a boolean if a field has been set.
16806func (t *TimeseriesDefinition) HasTitle() bool {
16807	if t != nil && t.Title != nil {
16808		return true
16809	}
16810
16811	return false
16812}
16813
16814// SetTitle allocates a new t.Title and returns the pointer to it.
16815func (t *TimeseriesDefinition) SetTitle(v string) {
16816	t.Title = &v
16817}
16818
16819// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
16820func (t *TimeseriesDefinition) GetTitleAlign() string {
16821	if t == nil || t.TitleAlign == nil {
16822		return ""
16823	}
16824	return *t.TitleAlign
16825}
16826
16827// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
16828// and a boolean to check if the value has been set.
16829func (t *TimeseriesDefinition) GetTitleAlignOk() (string, bool) {
16830	if t == nil || t.TitleAlign == nil {
16831		return "", false
16832	}
16833	return *t.TitleAlign, true
16834}
16835
16836// HasTitleAlign returns a boolean if a field has been set.
16837func (t *TimeseriesDefinition) HasTitleAlign() bool {
16838	if t != nil && t.TitleAlign != nil {
16839		return true
16840	}
16841
16842	return false
16843}
16844
16845// SetTitleAlign allocates a new t.TitleAlign and returns the pointer to it.
16846func (t *TimeseriesDefinition) SetTitleAlign(v string) {
16847	t.TitleAlign = &v
16848}
16849
16850// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
16851func (t *TimeseriesDefinition) GetTitleSize() string {
16852	if t == nil || t.TitleSize == nil {
16853		return ""
16854	}
16855	return *t.TitleSize
16856}
16857
16858// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
16859// and a boolean to check if the value has been set.
16860func (t *TimeseriesDefinition) GetTitleSizeOk() (string, bool) {
16861	if t == nil || t.TitleSize == nil {
16862		return "", false
16863	}
16864	return *t.TitleSize, true
16865}
16866
16867// HasTitleSize returns a boolean if a field has been set.
16868func (t *TimeseriesDefinition) HasTitleSize() bool {
16869	if t != nil && t.TitleSize != nil {
16870		return true
16871	}
16872
16873	return false
16874}
16875
16876// SetTitleSize allocates a new t.TitleSize and returns the pointer to it.
16877func (t *TimeseriesDefinition) SetTitleSize(v string) {
16878	t.TitleSize = &v
16879}
16880
16881// GetType returns the Type field if non-nil, zero value otherwise.
16882func (t *TimeseriesDefinition) GetType() string {
16883	if t == nil || t.Type == nil {
16884		return ""
16885	}
16886	return *t.Type
16887}
16888
16889// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
16890// and a boolean to check if the value has been set.
16891func (t *TimeseriesDefinition) GetTypeOk() (string, bool) {
16892	if t == nil || t.Type == nil {
16893		return "", false
16894	}
16895	return *t.Type, true
16896}
16897
16898// HasType returns a boolean if a field has been set.
16899func (t *TimeseriesDefinition) HasType() bool {
16900	if t != nil && t.Type != nil {
16901		return true
16902	}
16903
16904	return false
16905}
16906
16907// SetType allocates a new t.Type and returns the pointer to it.
16908func (t *TimeseriesDefinition) SetType(v string) {
16909	t.Type = &v
16910}
16911
16912// GetYaxis returns the Yaxis field if non-nil, zero value otherwise.
16913func (t *TimeseriesDefinition) GetYaxis() WidgetAxis {
16914	if t == nil || t.Yaxis == nil {
16915		return WidgetAxis{}
16916	}
16917	return *t.Yaxis
16918}
16919
16920// GetYaxisOk returns a tuple with the Yaxis field if it's non-nil, zero value otherwise
16921// and a boolean to check if the value has been set.
16922func (t *TimeseriesDefinition) GetYaxisOk() (WidgetAxis, bool) {
16923	if t == nil || t.Yaxis == nil {
16924		return WidgetAxis{}, false
16925	}
16926	return *t.Yaxis, true
16927}
16928
16929// HasYaxis returns a boolean if a field has been set.
16930func (t *TimeseriesDefinition) HasYaxis() bool {
16931	if t != nil && t.Yaxis != nil {
16932		return true
16933	}
16934
16935	return false
16936}
16937
16938// SetYaxis allocates a new t.Yaxis and returns the pointer to it.
16939func (t *TimeseriesDefinition) SetYaxis(v WidgetAxis) {
16940	t.Yaxis = &v
16941}
16942
16943// GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise.
16944func (t *TimeseriesRequest) GetApmQuery() WidgetApmOrLogQuery {
16945	if t == nil || t.ApmQuery == nil {
16946		return WidgetApmOrLogQuery{}
16947	}
16948	return *t.ApmQuery
16949}
16950
16951// GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise
16952// and a boolean to check if the value has been set.
16953func (t *TimeseriesRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) {
16954	if t == nil || t.ApmQuery == nil {
16955		return WidgetApmOrLogQuery{}, false
16956	}
16957	return *t.ApmQuery, true
16958}
16959
16960// HasApmQuery returns a boolean if a field has been set.
16961func (t *TimeseriesRequest) HasApmQuery() bool {
16962	if t != nil && t.ApmQuery != nil {
16963		return true
16964	}
16965
16966	return false
16967}
16968
16969// SetApmQuery allocates a new t.ApmQuery and returns the pointer to it.
16970func (t *TimeseriesRequest) SetApmQuery(v WidgetApmOrLogQuery) {
16971	t.ApmQuery = &v
16972}
16973
16974// GetDisplayType returns the DisplayType field if non-nil, zero value otherwise.
16975func (t *TimeseriesRequest) GetDisplayType() string {
16976	if t == nil || t.DisplayType == nil {
16977		return ""
16978	}
16979	return *t.DisplayType
16980}
16981
16982// GetDisplayTypeOk returns a tuple with the DisplayType field if it's non-nil, zero value otherwise
16983// and a boolean to check if the value has been set.
16984func (t *TimeseriesRequest) GetDisplayTypeOk() (string, bool) {
16985	if t == nil || t.DisplayType == nil {
16986		return "", false
16987	}
16988	return *t.DisplayType, true
16989}
16990
16991// HasDisplayType returns a boolean if a field has been set.
16992func (t *TimeseriesRequest) HasDisplayType() bool {
16993	if t != nil && t.DisplayType != nil {
16994		return true
16995	}
16996
16997	return false
16998}
16999
17000// SetDisplayType allocates a new t.DisplayType and returns the pointer to it.
17001func (t *TimeseriesRequest) SetDisplayType(v string) {
17002	t.DisplayType = &v
17003}
17004
17005// GetLogQuery returns the LogQuery field if non-nil, zero value otherwise.
17006func (t *TimeseriesRequest) GetLogQuery() WidgetApmOrLogQuery {
17007	if t == nil || t.LogQuery == nil {
17008		return WidgetApmOrLogQuery{}
17009	}
17010	return *t.LogQuery
17011}
17012
17013// GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise
17014// and a boolean to check if the value has been set.
17015func (t *TimeseriesRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) {
17016	if t == nil || t.LogQuery == nil {
17017		return WidgetApmOrLogQuery{}, false
17018	}
17019	return *t.LogQuery, true
17020}
17021
17022// HasLogQuery returns a boolean if a field has been set.
17023func (t *TimeseriesRequest) HasLogQuery() bool {
17024	if t != nil && t.LogQuery != nil {
17025		return true
17026	}
17027
17028	return false
17029}
17030
17031// SetLogQuery allocates a new t.LogQuery and returns the pointer to it.
17032func (t *TimeseriesRequest) SetLogQuery(v WidgetApmOrLogQuery) {
17033	t.LogQuery = &v
17034}
17035
17036// GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise.
17037func (t *TimeseriesRequest) GetMetricQuery() string {
17038	if t == nil || t.MetricQuery == nil {
17039		return ""
17040	}
17041	return *t.MetricQuery
17042}
17043
17044// GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise
17045// and a boolean to check if the value has been set.
17046func (t *TimeseriesRequest) GetMetricQueryOk() (string, bool) {
17047	if t == nil || t.MetricQuery == nil {
17048		return "", false
17049	}
17050	return *t.MetricQuery, true
17051}
17052
17053// HasMetricQuery returns a boolean if a field has been set.
17054func (t *TimeseriesRequest) HasMetricQuery() bool {
17055	if t != nil && t.MetricQuery != nil {
17056		return true
17057	}
17058
17059	return false
17060}
17061
17062// SetMetricQuery allocates a new t.MetricQuery and returns the pointer to it.
17063func (t *TimeseriesRequest) SetMetricQuery(v string) {
17064	t.MetricQuery = &v
17065}
17066
17067// GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise.
17068func (t *TimeseriesRequest) GetProcessQuery() WidgetProcessQuery {
17069	if t == nil || t.ProcessQuery == nil {
17070		return WidgetProcessQuery{}
17071	}
17072	return *t.ProcessQuery
17073}
17074
17075// GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise
17076// and a boolean to check if the value has been set.
17077func (t *TimeseriesRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) {
17078	if t == nil || t.ProcessQuery == nil {
17079		return WidgetProcessQuery{}, false
17080	}
17081	return *t.ProcessQuery, true
17082}
17083
17084// HasProcessQuery returns a boolean if a field has been set.
17085func (t *TimeseriesRequest) HasProcessQuery() bool {
17086	if t != nil && t.ProcessQuery != nil {
17087		return true
17088	}
17089
17090	return false
17091}
17092
17093// SetProcessQuery allocates a new t.ProcessQuery and returns the pointer to it.
17094func (t *TimeseriesRequest) SetProcessQuery(v WidgetProcessQuery) {
17095	t.ProcessQuery = &v
17096}
17097
17098// GetStyle returns the Style field if non-nil, zero value otherwise.
17099func (t *TimeseriesRequest) GetStyle() TimeseriesRequestStyle {
17100	if t == nil || t.Style == nil {
17101		return TimeseriesRequestStyle{}
17102	}
17103	return *t.Style
17104}
17105
17106// GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise
17107// and a boolean to check if the value has been set.
17108func (t *TimeseriesRequest) GetStyleOk() (TimeseriesRequestStyle, bool) {
17109	if t == nil || t.Style == nil {
17110		return TimeseriesRequestStyle{}, false
17111	}
17112	return *t.Style, true
17113}
17114
17115// HasStyle returns a boolean if a field has been set.
17116func (t *TimeseriesRequest) HasStyle() bool {
17117	if t != nil && t.Style != nil {
17118		return true
17119	}
17120
17121	return false
17122}
17123
17124// SetStyle allocates a new t.Style and returns the pointer to it.
17125func (t *TimeseriesRequest) SetStyle(v TimeseriesRequestStyle) {
17126	t.Style = &v
17127}
17128
17129// GetLineType returns the LineType field if non-nil, zero value otherwise.
17130func (t *TimeseriesRequestStyle) GetLineType() string {
17131	if t == nil || t.LineType == nil {
17132		return ""
17133	}
17134	return *t.LineType
17135}
17136
17137// GetLineTypeOk returns a tuple with the LineType field if it's non-nil, zero value otherwise
17138// and a boolean to check if the value has been set.
17139func (t *TimeseriesRequestStyle) GetLineTypeOk() (string, bool) {
17140	if t == nil || t.LineType == nil {
17141		return "", false
17142	}
17143	return *t.LineType, true
17144}
17145
17146// HasLineType returns a boolean if a field has been set.
17147func (t *TimeseriesRequestStyle) HasLineType() bool {
17148	if t != nil && t.LineType != nil {
17149		return true
17150	}
17151
17152	return false
17153}
17154
17155// SetLineType allocates a new t.LineType and returns the pointer to it.
17156func (t *TimeseriesRequestStyle) SetLineType(v string) {
17157	t.LineType = &v
17158}
17159
17160// GetLineWidth returns the LineWidth field if non-nil, zero value otherwise.
17161func (t *TimeseriesRequestStyle) GetLineWidth() string {
17162	if t == nil || t.LineWidth == nil {
17163		return ""
17164	}
17165	return *t.LineWidth
17166}
17167
17168// GetLineWidthOk returns a tuple with the LineWidth field if it's non-nil, zero value otherwise
17169// and a boolean to check if the value has been set.
17170func (t *TimeseriesRequestStyle) GetLineWidthOk() (string, bool) {
17171	if t == nil || t.LineWidth == nil {
17172		return "", false
17173	}
17174	return *t.LineWidth, true
17175}
17176
17177// HasLineWidth returns a boolean if a field has been set.
17178func (t *TimeseriesRequestStyle) HasLineWidth() bool {
17179	if t != nil && t.LineWidth != nil {
17180		return true
17181	}
17182
17183	return false
17184}
17185
17186// SetLineWidth allocates a new t.LineWidth and returns the pointer to it.
17187func (t *TimeseriesRequestStyle) SetLineWidth(v string) {
17188	t.LineWidth = &v
17189}
17190
17191// GetPalette returns the Palette field if non-nil, zero value otherwise.
17192func (t *TimeseriesRequestStyle) GetPalette() string {
17193	if t == nil || t.Palette == nil {
17194		return ""
17195	}
17196	return *t.Palette
17197}
17198
17199// GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise
17200// and a boolean to check if the value has been set.
17201func (t *TimeseriesRequestStyle) GetPaletteOk() (string, bool) {
17202	if t == nil || t.Palette == nil {
17203		return "", false
17204	}
17205	return *t.Palette, true
17206}
17207
17208// HasPalette returns a boolean if a field has been set.
17209func (t *TimeseriesRequestStyle) HasPalette() bool {
17210	if t != nil && t.Palette != nil {
17211		return true
17212	}
17213
17214	return false
17215}
17216
17217// SetPalette allocates a new t.Palette and returns the pointer to it.
17218func (t *TimeseriesRequestStyle) SetPalette(v string) {
17219	t.Palette = &v
17220}
17221
17222// GetNewStatus returns the NewStatus field if non-nil, zero value otherwise.
17223func (t *ToggleStatus) GetNewStatus() string {
17224	if t == nil || t.NewStatus == nil {
17225		return ""
17226	}
17227	return *t.NewStatus
17228}
17229
17230// GetNewStatusOk returns a tuple with the NewStatus field if it's non-nil, zero value otherwise
17231// and a boolean to check if the value has been set.
17232func (t *ToggleStatus) GetNewStatusOk() (string, bool) {
17233	if t == nil || t.NewStatus == nil {
17234		return "", false
17235	}
17236	return *t.NewStatus, true
17237}
17238
17239// HasNewStatus returns a boolean if a field has been set.
17240func (t *ToggleStatus) HasNewStatus() bool {
17241	if t != nil && t.NewStatus != nil {
17242		return true
17243	}
17244
17245	return false
17246}
17247
17248// SetNewStatus allocates a new t.NewStatus and returns the pointer to it.
17249func (t *ToggleStatus) SetNewStatus(v string) {
17250	t.NewStatus = &v
17251}
17252
17253// GetTime returns the Time field if non-nil, zero value otherwise.
17254func (t *ToplistDefinition) GetTime() WidgetTime {
17255	if t == nil || t.Time == nil {
17256		return WidgetTime{}
17257	}
17258	return *t.Time
17259}
17260
17261// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
17262// and a boolean to check if the value has been set.
17263func (t *ToplistDefinition) GetTimeOk() (WidgetTime, bool) {
17264	if t == nil || t.Time == nil {
17265		return WidgetTime{}, false
17266	}
17267	return *t.Time, true
17268}
17269
17270// HasTime returns a boolean if a field has been set.
17271func (t *ToplistDefinition) HasTime() bool {
17272	if t != nil && t.Time != nil {
17273		return true
17274	}
17275
17276	return false
17277}
17278
17279// SetTime allocates a new t.Time and returns the pointer to it.
17280func (t *ToplistDefinition) SetTime(v WidgetTime) {
17281	t.Time = &v
17282}
17283
17284// GetTitle returns the Title field if non-nil, zero value otherwise.
17285func (t *ToplistDefinition) GetTitle() string {
17286	if t == nil || t.Title == nil {
17287		return ""
17288	}
17289	return *t.Title
17290}
17291
17292// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
17293// and a boolean to check if the value has been set.
17294func (t *ToplistDefinition) GetTitleOk() (string, bool) {
17295	if t == nil || t.Title == nil {
17296		return "", false
17297	}
17298	return *t.Title, true
17299}
17300
17301// HasTitle returns a boolean if a field has been set.
17302func (t *ToplistDefinition) HasTitle() bool {
17303	if t != nil && t.Title != nil {
17304		return true
17305	}
17306
17307	return false
17308}
17309
17310// SetTitle allocates a new t.Title and returns the pointer to it.
17311func (t *ToplistDefinition) SetTitle(v string) {
17312	t.Title = &v
17313}
17314
17315// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
17316func (t *ToplistDefinition) GetTitleAlign() string {
17317	if t == nil || t.TitleAlign == nil {
17318		return ""
17319	}
17320	return *t.TitleAlign
17321}
17322
17323// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
17324// and a boolean to check if the value has been set.
17325func (t *ToplistDefinition) GetTitleAlignOk() (string, bool) {
17326	if t == nil || t.TitleAlign == nil {
17327		return "", false
17328	}
17329	return *t.TitleAlign, true
17330}
17331
17332// HasTitleAlign returns a boolean if a field has been set.
17333func (t *ToplistDefinition) HasTitleAlign() bool {
17334	if t != nil && t.TitleAlign != nil {
17335		return true
17336	}
17337
17338	return false
17339}
17340
17341// SetTitleAlign allocates a new t.TitleAlign and returns the pointer to it.
17342func (t *ToplistDefinition) SetTitleAlign(v string) {
17343	t.TitleAlign = &v
17344}
17345
17346// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
17347func (t *ToplistDefinition) GetTitleSize() string {
17348	if t == nil || t.TitleSize == nil {
17349		return ""
17350	}
17351	return *t.TitleSize
17352}
17353
17354// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
17355// and a boolean to check if the value has been set.
17356func (t *ToplistDefinition) GetTitleSizeOk() (string, bool) {
17357	if t == nil || t.TitleSize == nil {
17358		return "", false
17359	}
17360	return *t.TitleSize, true
17361}
17362
17363// HasTitleSize returns a boolean if a field has been set.
17364func (t *ToplistDefinition) HasTitleSize() bool {
17365	if t != nil && t.TitleSize != nil {
17366		return true
17367	}
17368
17369	return false
17370}
17371
17372// SetTitleSize allocates a new t.TitleSize and returns the pointer to it.
17373func (t *ToplistDefinition) SetTitleSize(v string) {
17374	t.TitleSize = &v
17375}
17376
17377// GetType returns the Type field if non-nil, zero value otherwise.
17378func (t *ToplistDefinition) GetType() string {
17379	if t == nil || t.Type == nil {
17380		return ""
17381	}
17382	return *t.Type
17383}
17384
17385// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
17386// and a boolean to check if the value has been set.
17387func (t *ToplistDefinition) GetTypeOk() (string, bool) {
17388	if t == nil || t.Type == nil {
17389		return "", false
17390	}
17391	return *t.Type, true
17392}
17393
17394// HasType returns a boolean if a field has been set.
17395func (t *ToplistDefinition) HasType() bool {
17396	if t != nil && t.Type != nil {
17397		return true
17398	}
17399
17400	return false
17401}
17402
17403// SetType allocates a new t.Type and returns the pointer to it.
17404func (t *ToplistDefinition) SetType(v string) {
17405	t.Type = &v
17406}
17407
17408// GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise.
17409func (t *ToplistRequest) GetApmQuery() WidgetApmOrLogQuery {
17410	if t == nil || t.ApmQuery == nil {
17411		return WidgetApmOrLogQuery{}
17412	}
17413	return *t.ApmQuery
17414}
17415
17416// GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise
17417// and a boolean to check if the value has been set.
17418func (t *ToplistRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) {
17419	if t == nil || t.ApmQuery == nil {
17420		return WidgetApmOrLogQuery{}, false
17421	}
17422	return *t.ApmQuery, true
17423}
17424
17425// HasApmQuery returns a boolean if a field has been set.
17426func (t *ToplistRequest) HasApmQuery() bool {
17427	if t != nil && t.ApmQuery != nil {
17428		return true
17429	}
17430
17431	return false
17432}
17433
17434// SetApmQuery allocates a new t.ApmQuery and returns the pointer to it.
17435func (t *ToplistRequest) SetApmQuery(v WidgetApmOrLogQuery) {
17436	t.ApmQuery = &v
17437}
17438
17439// GetLogQuery returns the LogQuery field if non-nil, zero value otherwise.
17440func (t *ToplistRequest) GetLogQuery() WidgetApmOrLogQuery {
17441	if t == nil || t.LogQuery == nil {
17442		return WidgetApmOrLogQuery{}
17443	}
17444	return *t.LogQuery
17445}
17446
17447// GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise
17448// and a boolean to check if the value has been set.
17449func (t *ToplistRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) {
17450	if t == nil || t.LogQuery == nil {
17451		return WidgetApmOrLogQuery{}, false
17452	}
17453	return *t.LogQuery, true
17454}
17455
17456// HasLogQuery returns a boolean if a field has been set.
17457func (t *ToplistRequest) HasLogQuery() bool {
17458	if t != nil && t.LogQuery != nil {
17459		return true
17460	}
17461
17462	return false
17463}
17464
17465// SetLogQuery allocates a new t.LogQuery and returns the pointer to it.
17466func (t *ToplistRequest) SetLogQuery(v WidgetApmOrLogQuery) {
17467	t.LogQuery = &v
17468}
17469
17470// GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise.
17471func (t *ToplistRequest) GetMetricQuery() string {
17472	if t == nil || t.MetricQuery == nil {
17473		return ""
17474	}
17475	return *t.MetricQuery
17476}
17477
17478// GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise
17479// and a boolean to check if the value has been set.
17480func (t *ToplistRequest) GetMetricQueryOk() (string, bool) {
17481	if t == nil || t.MetricQuery == nil {
17482		return "", false
17483	}
17484	return *t.MetricQuery, true
17485}
17486
17487// HasMetricQuery returns a boolean if a field has been set.
17488func (t *ToplistRequest) HasMetricQuery() bool {
17489	if t != nil && t.MetricQuery != nil {
17490		return true
17491	}
17492
17493	return false
17494}
17495
17496// SetMetricQuery allocates a new t.MetricQuery and returns the pointer to it.
17497func (t *ToplistRequest) SetMetricQuery(v string) {
17498	t.MetricQuery = &v
17499}
17500
17501// GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise.
17502func (t *ToplistRequest) GetProcessQuery() WidgetProcessQuery {
17503	if t == nil || t.ProcessQuery == nil {
17504		return WidgetProcessQuery{}
17505	}
17506	return *t.ProcessQuery
17507}
17508
17509// GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise
17510// and a boolean to check if the value has been set.
17511func (t *ToplistRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) {
17512	if t == nil || t.ProcessQuery == nil {
17513		return WidgetProcessQuery{}, false
17514	}
17515	return *t.ProcessQuery, true
17516}
17517
17518// HasProcessQuery returns a boolean if a field has been set.
17519func (t *ToplistRequest) HasProcessQuery() bool {
17520	if t != nil && t.ProcessQuery != nil {
17521		return true
17522	}
17523
17524	return false
17525}
17526
17527// SetProcessQuery allocates a new t.ProcessQuery and returns the pointer to it.
17528func (t *ToplistRequest) SetProcessQuery(v WidgetProcessQuery) {
17529	t.ProcessQuery = &v
17530}
17531
17532// GetStyle returns the Style field if non-nil, zero value otherwise.
17533func (t *ToplistRequest) GetStyle() WidgetRequestStyle {
17534	if t == nil || t.Style == nil {
17535		return WidgetRequestStyle{}
17536	}
17537	return *t.Style
17538}
17539
17540// GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise
17541// and a boolean to check if the value has been set.
17542func (t *ToplistRequest) GetStyleOk() (WidgetRequestStyle, bool) {
17543	if t == nil || t.Style == nil {
17544		return WidgetRequestStyle{}, false
17545	}
17546	return *t.Style, true
17547}
17548
17549// HasStyle returns a boolean if a field has been set.
17550func (t *ToplistRequest) HasStyle() bool {
17551	if t != nil && t.Style != nil {
17552		return true
17553	}
17554
17555	return false
17556}
17557
17558// SetStyle allocates a new t.Style and returns the pointer to it.
17559func (t *ToplistRequest) SetStyle(v WidgetRequestStyle) {
17560	t.Style = &v
17561}
17562
17563// GetDisplayFormat returns the DisplayFormat field if non-nil, zero value otherwise.
17564func (t *TraceServiceDefinition) GetDisplayFormat() string {
17565	if t == nil || t.DisplayFormat == nil {
17566		return ""
17567	}
17568	return *t.DisplayFormat
17569}
17570
17571// GetDisplayFormatOk returns a tuple with the DisplayFormat field if it's non-nil, zero value otherwise
17572// and a boolean to check if the value has been set.
17573func (t *TraceServiceDefinition) GetDisplayFormatOk() (string, bool) {
17574	if t == nil || t.DisplayFormat == nil {
17575		return "", false
17576	}
17577	return *t.DisplayFormat, true
17578}
17579
17580// HasDisplayFormat returns a boolean if a field has been set.
17581func (t *TraceServiceDefinition) HasDisplayFormat() bool {
17582	if t != nil && t.DisplayFormat != nil {
17583		return true
17584	}
17585
17586	return false
17587}
17588
17589// SetDisplayFormat allocates a new t.DisplayFormat and returns the pointer to it.
17590func (t *TraceServiceDefinition) SetDisplayFormat(v string) {
17591	t.DisplayFormat = &v
17592}
17593
17594// GetEnv returns the Env field if non-nil, zero value otherwise.
17595func (t *TraceServiceDefinition) GetEnv() string {
17596	if t == nil || t.Env == nil {
17597		return ""
17598	}
17599	return *t.Env
17600}
17601
17602// GetEnvOk returns a tuple with the Env field if it's non-nil, zero value otherwise
17603// and a boolean to check if the value has been set.
17604func (t *TraceServiceDefinition) GetEnvOk() (string, bool) {
17605	if t == nil || t.Env == nil {
17606		return "", false
17607	}
17608	return *t.Env, true
17609}
17610
17611// HasEnv returns a boolean if a field has been set.
17612func (t *TraceServiceDefinition) HasEnv() bool {
17613	if t != nil && t.Env != nil {
17614		return true
17615	}
17616
17617	return false
17618}
17619
17620// SetEnv allocates a new t.Env and returns the pointer to it.
17621func (t *TraceServiceDefinition) SetEnv(v string) {
17622	t.Env = &v
17623}
17624
17625// GetService returns the Service field if non-nil, zero value otherwise.
17626func (t *TraceServiceDefinition) GetService() string {
17627	if t == nil || t.Service == nil {
17628		return ""
17629	}
17630	return *t.Service
17631}
17632
17633// GetServiceOk returns a tuple with the Service field if it's non-nil, zero value otherwise
17634// and a boolean to check if the value has been set.
17635func (t *TraceServiceDefinition) GetServiceOk() (string, bool) {
17636	if t == nil || t.Service == nil {
17637		return "", false
17638	}
17639	return *t.Service, true
17640}
17641
17642// HasService returns a boolean if a field has been set.
17643func (t *TraceServiceDefinition) HasService() bool {
17644	if t != nil && t.Service != nil {
17645		return true
17646	}
17647
17648	return false
17649}
17650
17651// SetService allocates a new t.Service and returns the pointer to it.
17652func (t *TraceServiceDefinition) SetService(v string) {
17653	t.Service = &v
17654}
17655
17656// GetShowBreakdown returns the ShowBreakdown field if non-nil, zero value otherwise.
17657func (t *TraceServiceDefinition) GetShowBreakdown() bool {
17658	if t == nil || t.ShowBreakdown == nil {
17659		return false
17660	}
17661	return *t.ShowBreakdown
17662}
17663
17664// GetShowBreakdownOk returns a tuple with the ShowBreakdown field if it's non-nil, zero value otherwise
17665// and a boolean to check if the value has been set.
17666func (t *TraceServiceDefinition) GetShowBreakdownOk() (bool, bool) {
17667	if t == nil || t.ShowBreakdown == nil {
17668		return false, false
17669	}
17670	return *t.ShowBreakdown, true
17671}
17672
17673// HasShowBreakdown returns a boolean if a field has been set.
17674func (t *TraceServiceDefinition) HasShowBreakdown() bool {
17675	if t != nil && t.ShowBreakdown != nil {
17676		return true
17677	}
17678
17679	return false
17680}
17681
17682// SetShowBreakdown allocates a new t.ShowBreakdown and returns the pointer to it.
17683func (t *TraceServiceDefinition) SetShowBreakdown(v bool) {
17684	t.ShowBreakdown = &v
17685}
17686
17687// GetShowDistribution returns the ShowDistribution field if non-nil, zero value otherwise.
17688func (t *TraceServiceDefinition) GetShowDistribution() bool {
17689	if t == nil || t.ShowDistribution == nil {
17690		return false
17691	}
17692	return *t.ShowDistribution
17693}
17694
17695// GetShowDistributionOk returns a tuple with the ShowDistribution field if it's non-nil, zero value otherwise
17696// and a boolean to check if the value has been set.
17697func (t *TraceServiceDefinition) GetShowDistributionOk() (bool, bool) {
17698	if t == nil || t.ShowDistribution == nil {
17699		return false, false
17700	}
17701	return *t.ShowDistribution, true
17702}
17703
17704// HasShowDistribution returns a boolean if a field has been set.
17705func (t *TraceServiceDefinition) HasShowDistribution() bool {
17706	if t != nil && t.ShowDistribution != nil {
17707		return true
17708	}
17709
17710	return false
17711}
17712
17713// SetShowDistribution allocates a new t.ShowDistribution and returns the pointer to it.
17714func (t *TraceServiceDefinition) SetShowDistribution(v bool) {
17715	t.ShowDistribution = &v
17716}
17717
17718// GetShowErrors returns the ShowErrors field if non-nil, zero value otherwise.
17719func (t *TraceServiceDefinition) GetShowErrors() bool {
17720	if t == nil || t.ShowErrors == nil {
17721		return false
17722	}
17723	return *t.ShowErrors
17724}
17725
17726// GetShowErrorsOk returns a tuple with the ShowErrors field if it's non-nil, zero value otherwise
17727// and a boolean to check if the value has been set.
17728func (t *TraceServiceDefinition) GetShowErrorsOk() (bool, bool) {
17729	if t == nil || t.ShowErrors == nil {
17730		return false, false
17731	}
17732	return *t.ShowErrors, true
17733}
17734
17735// HasShowErrors returns a boolean if a field has been set.
17736func (t *TraceServiceDefinition) HasShowErrors() bool {
17737	if t != nil && t.ShowErrors != nil {
17738		return true
17739	}
17740
17741	return false
17742}
17743
17744// SetShowErrors allocates a new t.ShowErrors and returns the pointer to it.
17745func (t *TraceServiceDefinition) SetShowErrors(v bool) {
17746	t.ShowErrors = &v
17747}
17748
17749// GetShowHits returns the ShowHits field if non-nil, zero value otherwise.
17750func (t *TraceServiceDefinition) GetShowHits() bool {
17751	if t == nil || t.ShowHits == nil {
17752		return false
17753	}
17754	return *t.ShowHits
17755}
17756
17757// GetShowHitsOk returns a tuple with the ShowHits field if it's non-nil, zero value otherwise
17758// and a boolean to check if the value has been set.
17759func (t *TraceServiceDefinition) GetShowHitsOk() (bool, bool) {
17760	if t == nil || t.ShowHits == nil {
17761		return false, false
17762	}
17763	return *t.ShowHits, true
17764}
17765
17766// HasShowHits returns a boolean if a field has been set.
17767func (t *TraceServiceDefinition) HasShowHits() bool {
17768	if t != nil && t.ShowHits != nil {
17769		return true
17770	}
17771
17772	return false
17773}
17774
17775// SetShowHits allocates a new t.ShowHits and returns the pointer to it.
17776func (t *TraceServiceDefinition) SetShowHits(v bool) {
17777	t.ShowHits = &v
17778}
17779
17780// GetShowLatency returns the ShowLatency field if non-nil, zero value otherwise.
17781func (t *TraceServiceDefinition) GetShowLatency() bool {
17782	if t == nil || t.ShowLatency == nil {
17783		return false
17784	}
17785	return *t.ShowLatency
17786}
17787
17788// GetShowLatencyOk returns a tuple with the ShowLatency field if it's non-nil, zero value otherwise
17789// and a boolean to check if the value has been set.
17790func (t *TraceServiceDefinition) GetShowLatencyOk() (bool, bool) {
17791	if t == nil || t.ShowLatency == nil {
17792		return false, false
17793	}
17794	return *t.ShowLatency, true
17795}
17796
17797// HasShowLatency returns a boolean if a field has been set.
17798func (t *TraceServiceDefinition) HasShowLatency() bool {
17799	if t != nil && t.ShowLatency != nil {
17800		return true
17801	}
17802
17803	return false
17804}
17805
17806// SetShowLatency allocates a new t.ShowLatency and returns the pointer to it.
17807func (t *TraceServiceDefinition) SetShowLatency(v bool) {
17808	t.ShowLatency = &v
17809}
17810
17811// GetShowResourceList returns the ShowResourceList field if non-nil, zero value otherwise.
17812func (t *TraceServiceDefinition) GetShowResourceList() bool {
17813	if t == nil || t.ShowResourceList == nil {
17814		return false
17815	}
17816	return *t.ShowResourceList
17817}
17818
17819// GetShowResourceListOk returns a tuple with the ShowResourceList field if it's non-nil, zero value otherwise
17820// and a boolean to check if the value has been set.
17821func (t *TraceServiceDefinition) GetShowResourceListOk() (bool, bool) {
17822	if t == nil || t.ShowResourceList == nil {
17823		return false, false
17824	}
17825	return *t.ShowResourceList, true
17826}
17827
17828// HasShowResourceList returns a boolean if a field has been set.
17829func (t *TraceServiceDefinition) HasShowResourceList() bool {
17830	if t != nil && t.ShowResourceList != nil {
17831		return true
17832	}
17833
17834	return false
17835}
17836
17837// SetShowResourceList allocates a new t.ShowResourceList and returns the pointer to it.
17838func (t *TraceServiceDefinition) SetShowResourceList(v bool) {
17839	t.ShowResourceList = &v
17840}
17841
17842// GetSizeFormat returns the SizeFormat field if non-nil, zero value otherwise.
17843func (t *TraceServiceDefinition) GetSizeFormat() string {
17844	if t == nil || t.SizeFormat == nil {
17845		return ""
17846	}
17847	return *t.SizeFormat
17848}
17849
17850// GetSizeFormatOk returns a tuple with the SizeFormat field if it's non-nil, zero value otherwise
17851// and a boolean to check if the value has been set.
17852func (t *TraceServiceDefinition) GetSizeFormatOk() (string, bool) {
17853	if t == nil || t.SizeFormat == nil {
17854		return "", false
17855	}
17856	return *t.SizeFormat, true
17857}
17858
17859// HasSizeFormat returns a boolean if a field has been set.
17860func (t *TraceServiceDefinition) HasSizeFormat() bool {
17861	if t != nil && t.SizeFormat != nil {
17862		return true
17863	}
17864
17865	return false
17866}
17867
17868// SetSizeFormat allocates a new t.SizeFormat and returns the pointer to it.
17869func (t *TraceServiceDefinition) SetSizeFormat(v string) {
17870	t.SizeFormat = &v
17871}
17872
17873// GetSpanName returns the SpanName field if non-nil, zero value otherwise.
17874func (t *TraceServiceDefinition) GetSpanName() string {
17875	if t == nil || t.SpanName == nil {
17876		return ""
17877	}
17878	return *t.SpanName
17879}
17880
17881// GetSpanNameOk returns a tuple with the SpanName field if it's non-nil, zero value otherwise
17882// and a boolean to check if the value has been set.
17883func (t *TraceServiceDefinition) GetSpanNameOk() (string, bool) {
17884	if t == nil || t.SpanName == nil {
17885		return "", false
17886	}
17887	return *t.SpanName, true
17888}
17889
17890// HasSpanName returns a boolean if a field has been set.
17891func (t *TraceServiceDefinition) HasSpanName() bool {
17892	if t != nil && t.SpanName != nil {
17893		return true
17894	}
17895
17896	return false
17897}
17898
17899// SetSpanName allocates a new t.SpanName and returns the pointer to it.
17900func (t *TraceServiceDefinition) SetSpanName(v string) {
17901	t.SpanName = &v
17902}
17903
17904// GetTime returns the Time field if non-nil, zero value otherwise.
17905func (t *TraceServiceDefinition) GetTime() WidgetTime {
17906	if t == nil || t.Time == nil {
17907		return WidgetTime{}
17908	}
17909	return *t.Time
17910}
17911
17912// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
17913// and a boolean to check if the value has been set.
17914func (t *TraceServiceDefinition) GetTimeOk() (WidgetTime, bool) {
17915	if t == nil || t.Time == nil {
17916		return WidgetTime{}, false
17917	}
17918	return *t.Time, true
17919}
17920
17921// HasTime returns a boolean if a field has been set.
17922func (t *TraceServiceDefinition) HasTime() bool {
17923	if t != nil && t.Time != nil {
17924		return true
17925	}
17926
17927	return false
17928}
17929
17930// SetTime allocates a new t.Time and returns the pointer to it.
17931func (t *TraceServiceDefinition) SetTime(v WidgetTime) {
17932	t.Time = &v
17933}
17934
17935// GetTitle returns the Title field if non-nil, zero value otherwise.
17936func (t *TraceServiceDefinition) GetTitle() string {
17937	if t == nil || t.Title == nil {
17938		return ""
17939	}
17940	return *t.Title
17941}
17942
17943// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
17944// and a boolean to check if the value has been set.
17945func (t *TraceServiceDefinition) GetTitleOk() (string, bool) {
17946	if t == nil || t.Title == nil {
17947		return "", false
17948	}
17949	return *t.Title, true
17950}
17951
17952// HasTitle returns a boolean if a field has been set.
17953func (t *TraceServiceDefinition) HasTitle() bool {
17954	if t != nil && t.Title != nil {
17955		return true
17956	}
17957
17958	return false
17959}
17960
17961// SetTitle allocates a new t.Title and returns the pointer to it.
17962func (t *TraceServiceDefinition) SetTitle(v string) {
17963	t.Title = &v
17964}
17965
17966// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
17967func (t *TraceServiceDefinition) GetTitleAlign() string {
17968	if t == nil || t.TitleAlign == nil {
17969		return ""
17970	}
17971	return *t.TitleAlign
17972}
17973
17974// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
17975// and a boolean to check if the value has been set.
17976func (t *TraceServiceDefinition) GetTitleAlignOk() (string, bool) {
17977	if t == nil || t.TitleAlign == nil {
17978		return "", false
17979	}
17980	return *t.TitleAlign, true
17981}
17982
17983// HasTitleAlign returns a boolean if a field has been set.
17984func (t *TraceServiceDefinition) HasTitleAlign() bool {
17985	if t != nil && t.TitleAlign != nil {
17986		return true
17987	}
17988
17989	return false
17990}
17991
17992// SetTitleAlign allocates a new t.TitleAlign and returns the pointer to it.
17993func (t *TraceServiceDefinition) SetTitleAlign(v string) {
17994	t.TitleAlign = &v
17995}
17996
17997// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
17998func (t *TraceServiceDefinition) GetTitleSize() string {
17999	if t == nil || t.TitleSize == nil {
18000		return ""
18001	}
18002	return *t.TitleSize
18003}
18004
18005// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
18006// and a boolean to check if the value has been set.
18007func (t *TraceServiceDefinition) GetTitleSizeOk() (string, bool) {
18008	if t == nil || t.TitleSize == nil {
18009		return "", false
18010	}
18011	return *t.TitleSize, true
18012}
18013
18014// HasTitleSize returns a boolean if a field has been set.
18015func (t *TraceServiceDefinition) HasTitleSize() bool {
18016	if t != nil && t.TitleSize != nil {
18017		return true
18018	}
18019
18020	return false
18021}
18022
18023// SetTitleSize allocates a new t.TitleSize and returns the pointer to it.
18024func (t *TraceServiceDefinition) SetTitleSize(v string) {
18025	t.TitleSize = &v
18026}
18027
18028// GetType returns the Type field if non-nil, zero value otherwise.
18029func (t *TraceServiceDefinition) GetType() string {
18030	if t == nil || t.Type == nil {
18031		return ""
18032	}
18033	return *t.Type
18034}
18035
18036// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
18037// and a boolean to check if the value has been set.
18038func (t *TraceServiceDefinition) GetTypeOk() (string, bool) {
18039	if t == nil || t.Type == nil {
18040		return "", false
18041	}
18042	return *t.Type, true
18043}
18044
18045// HasType returns a boolean if a field has been set.
18046func (t *TraceServiceDefinition) HasType() bool {
18047	if t != nil && t.Type != nil {
18048		return true
18049	}
18050
18051	return false
18052}
18053
18054// SetType allocates a new t.Type and returns the pointer to it.
18055func (t *TraceServiceDefinition) SetType(v string) {
18056	t.Type = &v
18057}
18058
18059// GetFromTs returns the FromTs field if non-nil, zero value otherwise.
18060func (t *TriggeringValue) GetFromTs() int {
18061	if t == nil || t.FromTs == nil {
18062		return 0
18063	}
18064	return *t.FromTs
18065}
18066
18067// GetFromTsOk returns a tuple with the FromTs field if it's non-nil, zero value otherwise
18068// and a boolean to check if the value has been set.
18069func (t *TriggeringValue) GetFromTsOk() (int, bool) {
18070	if t == nil || t.FromTs == nil {
18071		return 0, false
18072	}
18073	return *t.FromTs, true
18074}
18075
18076// HasFromTs returns a boolean if a field has been set.
18077func (t *TriggeringValue) HasFromTs() bool {
18078	if t != nil && t.FromTs != nil {
18079		return true
18080	}
18081
18082	return false
18083}
18084
18085// SetFromTs allocates a new t.FromTs and returns the pointer to it.
18086func (t *TriggeringValue) SetFromTs(v int) {
18087	t.FromTs = &v
18088}
18089
18090// GetToTs returns the ToTs field if non-nil, zero value otherwise.
18091func (t *TriggeringValue) GetToTs() int {
18092	if t == nil || t.ToTs == nil {
18093		return 0
18094	}
18095	return *t.ToTs
18096}
18097
18098// GetToTsOk returns a tuple with the ToTs field if it's non-nil, zero value otherwise
18099// and a boolean to check if the value has been set.
18100func (t *TriggeringValue) GetToTsOk() (int, bool) {
18101	if t == nil || t.ToTs == nil {
18102		return 0, false
18103	}
18104	return *t.ToTs, true
18105}
18106
18107// HasToTs returns a boolean if a field has been set.
18108func (t *TriggeringValue) HasToTs() bool {
18109	if t != nil && t.ToTs != nil {
18110		return true
18111	}
18112
18113	return false
18114}
18115
18116// SetToTs allocates a new t.ToTs and returns the pointer to it.
18117func (t *TriggeringValue) SetToTs(v int) {
18118	t.ToTs = &v
18119}
18120
18121// GetValue returns the Value field if non-nil, zero value otherwise.
18122func (t *TriggeringValue) GetValue() int {
18123	if t == nil || t.Value == nil {
18124		return 0
18125	}
18126	return *t.Value
18127}
18128
18129// GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise
18130// and a boolean to check if the value has been set.
18131func (t *TriggeringValue) GetValueOk() (int, bool) {
18132	if t == nil || t.Value == nil {
18133		return 0, false
18134	}
18135	return *t.Value, true
18136}
18137
18138// HasValue returns a boolean if a field has been set.
18139func (t *TriggeringValue) HasValue() bool {
18140	if t != nil && t.Value != nil {
18141		return true
18142	}
18143
18144	return false
18145}
18146
18147// SetValue allocates a new t.Value and returns the pointer to it.
18148func (t *TriggeringValue) SetValue(v int) {
18149	t.Value = &v
18150}
18151
18152// GetAllScopes returns the AllScopes field if non-nil, zero value otherwise.
18153func (u *UnmuteMonitorScopes) GetAllScopes() bool {
18154	if u == nil || u.AllScopes == nil {
18155		return false
18156	}
18157	return *u.AllScopes
18158}
18159
18160// GetAllScopesOk returns a tuple with the AllScopes field if it's non-nil, zero value otherwise
18161// and a boolean to check if the value has been set.
18162func (u *UnmuteMonitorScopes) GetAllScopesOk() (bool, bool) {
18163	if u == nil || u.AllScopes == nil {
18164		return false, false
18165	}
18166	return *u.AllScopes, true
18167}
18168
18169// HasAllScopes returns a boolean if a field has been set.
18170func (u *UnmuteMonitorScopes) HasAllScopes() bool {
18171	if u != nil && u.AllScopes != nil {
18172		return true
18173	}
18174
18175	return false
18176}
18177
18178// SetAllScopes allocates a new u.AllScopes and returns the pointer to it.
18179func (u *UnmuteMonitorScopes) SetAllScopes(v bool) {
18180	u.AllScopes = &v
18181}
18182
18183// GetScope returns the Scope field if non-nil, zero value otherwise.
18184func (u *UnmuteMonitorScopes) GetScope() string {
18185	if u == nil || u.Scope == nil {
18186		return ""
18187	}
18188	return *u.Scope
18189}
18190
18191// GetScopeOk returns a tuple with the Scope field if it's non-nil, zero value otherwise
18192// and a boolean to check if the value has been set.
18193func (u *UnmuteMonitorScopes) GetScopeOk() (string, bool) {
18194	if u == nil || u.Scope == nil {
18195		return "", false
18196	}
18197	return *u.Scope, true
18198}
18199
18200// HasScope returns a boolean if a field has been set.
18201func (u *UnmuteMonitorScopes) HasScope() bool {
18202	if u != nil && u.Scope != nil {
18203		return true
18204	}
18205
18206	return false
18207}
18208
18209// SetScope allocates a new u.Scope and returns the pointer to it.
18210func (u *UnmuteMonitorScopes) SetScope(v string) {
18211	u.Scope = &v
18212}
18213
18214// GetAccessRole returns the AccessRole field if non-nil, zero value otherwise.
18215func (u *User) GetAccessRole() string {
18216	if u == nil || u.AccessRole == nil {
18217		return ""
18218	}
18219	return *u.AccessRole
18220}
18221
18222// GetAccessRoleOk returns a tuple with the AccessRole field if it's non-nil, zero value otherwise
18223// and a boolean to check if the value has been set.
18224func (u *User) GetAccessRoleOk() (string, bool) {
18225	if u == nil || u.AccessRole == nil {
18226		return "", false
18227	}
18228	return *u.AccessRole, true
18229}
18230
18231// HasAccessRole returns a boolean if a field has been set.
18232func (u *User) HasAccessRole() bool {
18233	if u != nil && u.AccessRole != nil {
18234		return true
18235	}
18236
18237	return false
18238}
18239
18240// SetAccessRole allocates a new u.AccessRole and returns the pointer to it.
18241func (u *User) SetAccessRole(v string) {
18242	u.AccessRole = &v
18243}
18244
18245// GetDisabled returns the Disabled field if non-nil, zero value otherwise.
18246func (u *User) GetDisabled() bool {
18247	if u == nil || u.Disabled == nil {
18248		return false
18249	}
18250	return *u.Disabled
18251}
18252
18253// GetDisabledOk returns a tuple with the Disabled field if it's non-nil, zero value otherwise
18254// and a boolean to check if the value has been set.
18255func (u *User) GetDisabledOk() (bool, bool) {
18256	if u == nil || u.Disabled == nil {
18257		return false, false
18258	}
18259	return *u.Disabled, true
18260}
18261
18262// HasDisabled returns a boolean if a field has been set.
18263func (u *User) HasDisabled() bool {
18264	if u != nil && u.Disabled != nil {
18265		return true
18266	}
18267
18268	return false
18269}
18270
18271// SetDisabled allocates a new u.Disabled and returns the pointer to it.
18272func (u *User) SetDisabled(v bool) {
18273	u.Disabled = &v
18274}
18275
18276// GetEmail returns the Email field if non-nil, zero value otherwise.
18277func (u *User) GetEmail() string {
18278	if u == nil || u.Email == nil {
18279		return ""
18280	}
18281	return *u.Email
18282}
18283
18284// GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise
18285// and a boolean to check if the value has been set.
18286func (u *User) GetEmailOk() (string, bool) {
18287	if u == nil || u.Email == nil {
18288		return "", false
18289	}
18290	return *u.Email, true
18291}
18292
18293// HasEmail returns a boolean if a field has been set.
18294func (u *User) HasEmail() bool {
18295	if u != nil && u.Email != nil {
18296		return true
18297	}
18298
18299	return false
18300}
18301
18302// SetEmail allocates a new u.Email and returns the pointer to it.
18303func (u *User) SetEmail(v string) {
18304	u.Email = &v
18305}
18306
18307// GetHandle returns the Handle field if non-nil, zero value otherwise.
18308func (u *User) GetHandle() string {
18309	if u == nil || u.Handle == nil {
18310		return ""
18311	}
18312	return *u.Handle
18313}
18314
18315// GetHandleOk returns a tuple with the Handle field if it's non-nil, zero value otherwise
18316// and a boolean to check if the value has been set.
18317func (u *User) GetHandleOk() (string, bool) {
18318	if u == nil || u.Handle == nil {
18319		return "", false
18320	}
18321	return *u.Handle, true
18322}
18323
18324// HasHandle returns a boolean if a field has been set.
18325func (u *User) HasHandle() bool {
18326	if u != nil && u.Handle != nil {
18327		return true
18328	}
18329
18330	return false
18331}
18332
18333// SetHandle allocates a new u.Handle and returns the pointer to it.
18334func (u *User) SetHandle(v string) {
18335	u.Handle = &v
18336}
18337
18338// GetIsAdmin returns the IsAdmin field if non-nil, zero value otherwise.
18339func (u *User) GetIsAdmin() bool {
18340	if u == nil || u.IsAdmin == nil {
18341		return false
18342	}
18343	return *u.IsAdmin
18344}
18345
18346// GetIsAdminOk returns a tuple with the IsAdmin field if it's non-nil, zero value otherwise
18347// and a boolean to check if the value has been set.
18348func (u *User) GetIsAdminOk() (bool, bool) {
18349	if u == nil || u.IsAdmin == nil {
18350		return false, false
18351	}
18352	return *u.IsAdmin, true
18353}
18354
18355// HasIsAdmin returns a boolean if a field has been set.
18356func (u *User) HasIsAdmin() bool {
18357	if u != nil && u.IsAdmin != nil {
18358		return true
18359	}
18360
18361	return false
18362}
18363
18364// SetIsAdmin allocates a new u.IsAdmin and returns the pointer to it.
18365func (u *User) SetIsAdmin(v bool) {
18366	u.IsAdmin = &v
18367}
18368
18369// GetName returns the Name field if non-nil, zero value otherwise.
18370func (u *User) GetName() string {
18371	if u == nil || u.Name == nil {
18372		return ""
18373	}
18374	return *u.Name
18375}
18376
18377// GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
18378// and a boolean to check if the value has been set.
18379func (u *User) GetNameOk() (string, bool) {
18380	if u == nil || u.Name == nil {
18381		return "", false
18382	}
18383	return *u.Name, true
18384}
18385
18386// HasName returns a boolean if a field has been set.
18387func (u *User) HasName() bool {
18388	if u != nil && u.Name != nil {
18389		return true
18390	}
18391
18392	return false
18393}
18394
18395// SetName allocates a new u.Name and returns the pointer to it.
18396func (u *User) SetName(v string) {
18397	u.Name = &v
18398}
18399
18400// GetRole returns the Role field if non-nil, zero value otherwise.
18401func (u *User) GetRole() string {
18402	if u == nil || u.Role == nil {
18403		return ""
18404	}
18405	return *u.Role
18406}
18407
18408// GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise
18409// and a boolean to check if the value has been set.
18410func (u *User) GetRoleOk() (string, bool) {
18411	if u == nil || u.Role == nil {
18412		return "", false
18413	}
18414	return *u.Role, true
18415}
18416
18417// HasRole returns a boolean if a field has been set.
18418func (u *User) HasRole() bool {
18419	if u != nil && u.Role != nil {
18420		return true
18421	}
18422
18423	return false
18424}
18425
18426// SetRole allocates a new u.Role and returns the pointer to it.
18427func (u *User) SetRole(v string) {
18428	u.Role = &v
18429}
18430
18431// GetVerified returns the Verified field if non-nil, zero value otherwise.
18432func (u *User) GetVerified() bool {
18433	if u == nil || u.Verified == nil {
18434		return false
18435	}
18436	return *u.Verified
18437}
18438
18439// GetVerifiedOk returns a tuple with the Verified field if it's non-nil, zero value otherwise
18440// and a boolean to check if the value has been set.
18441func (u *User) GetVerifiedOk() (bool, bool) {
18442	if u == nil || u.Verified == nil {
18443		return false, false
18444	}
18445	return *u.Verified, true
18446}
18447
18448// HasVerified returns a boolean if a field has been set.
18449func (u *User) HasVerified() bool {
18450	if u != nil && u.Verified != nil {
18451		return true
18452	}
18453
18454	return false
18455}
18456
18457// SetVerified allocates a new u.Verified and returns the pointer to it.
18458func (u *User) SetVerified(v bool) {
18459	u.Verified = &v
18460}
18461
18462// GetAlertID returns the AlertID field if non-nil, zero value otherwise.
18463func (w *Widget) GetAlertID() int {
18464	if w == nil || w.AlertID == nil {
18465		return 0
18466	}
18467	return *w.AlertID
18468}
18469
18470// GetAlertIDOk returns a tuple with the AlertID field if it's non-nil, zero value otherwise
18471// and a boolean to check if the value has been set.
18472func (w *Widget) GetAlertIDOk() (int, bool) {
18473	if w == nil || w.AlertID == nil {
18474		return 0, false
18475	}
18476	return *w.AlertID, true
18477}
18478
18479// HasAlertID returns a boolean if a field has been set.
18480func (w *Widget) HasAlertID() bool {
18481	if w != nil && w.AlertID != nil {
18482		return true
18483	}
18484
18485	return false
18486}
18487
18488// SetAlertID allocates a new w.AlertID and returns the pointer to it.
18489func (w *Widget) SetAlertID(v int) {
18490	w.AlertID = &v
18491}
18492
18493// GetAutoRefresh returns the AutoRefresh field if non-nil, zero value otherwise.
18494func (w *Widget) GetAutoRefresh() bool {
18495	if w == nil || w.AutoRefresh == nil {
18496		return false
18497	}
18498	return *w.AutoRefresh
18499}
18500
18501// GetAutoRefreshOk returns a tuple with the AutoRefresh field if it's non-nil, zero value otherwise
18502// and a boolean to check if the value has been set.
18503func (w *Widget) GetAutoRefreshOk() (bool, bool) {
18504	if w == nil || w.AutoRefresh == nil {
18505		return false, false
18506	}
18507	return *w.AutoRefresh, true
18508}
18509
18510// HasAutoRefresh returns a boolean if a field has been set.
18511func (w *Widget) HasAutoRefresh() bool {
18512	if w != nil && w.AutoRefresh != nil {
18513		return true
18514	}
18515
18516	return false
18517}
18518
18519// SetAutoRefresh allocates a new w.AutoRefresh and returns the pointer to it.
18520func (w *Widget) SetAutoRefresh(v bool) {
18521	w.AutoRefresh = &v
18522}
18523
18524// GetBgcolor returns the Bgcolor field if non-nil, zero value otherwise.
18525func (w *Widget) GetBgcolor() string {
18526	if w == nil || w.Bgcolor == nil {
18527		return ""
18528	}
18529	return *w.Bgcolor
18530}
18531
18532// GetBgcolorOk returns a tuple with the Bgcolor field if it's non-nil, zero value otherwise
18533// and a boolean to check if the value has been set.
18534func (w *Widget) GetBgcolorOk() (string, bool) {
18535	if w == nil || w.Bgcolor == nil {
18536		return "", false
18537	}
18538	return *w.Bgcolor, true
18539}
18540
18541// HasBgcolor returns a boolean if a field has been set.
18542func (w *Widget) HasBgcolor() bool {
18543	if w != nil && w.Bgcolor != nil {
18544		return true
18545	}
18546
18547	return false
18548}
18549
18550// SetBgcolor allocates a new w.Bgcolor and returns the pointer to it.
18551func (w *Widget) SetBgcolor(v string) {
18552	w.Bgcolor = &v
18553}
18554
18555// GetCheck returns the Check field if non-nil, zero value otherwise.
18556func (w *Widget) GetCheck() string {
18557	if w == nil || w.Check == nil {
18558		return ""
18559	}
18560	return *w.Check
18561}
18562
18563// GetCheckOk returns a tuple with the Check field if it's non-nil, zero value otherwise
18564// and a boolean to check if the value has been set.
18565func (w *Widget) GetCheckOk() (string, bool) {
18566	if w == nil || w.Check == nil {
18567		return "", false
18568	}
18569	return *w.Check, true
18570}
18571
18572// HasCheck returns a boolean if a field has been set.
18573func (w *Widget) HasCheck() bool {
18574	if w != nil && w.Check != nil {
18575		return true
18576	}
18577
18578	return false
18579}
18580
18581// SetCheck allocates a new w.Check and returns the pointer to it.
18582func (w *Widget) SetCheck(v string) {
18583	w.Check = &v
18584}
18585
18586// GetColor returns the Color field if non-nil, zero value otherwise.
18587func (w *Widget) GetColor() string {
18588	if w == nil || w.Color == nil {
18589		return ""
18590	}
18591	return *w.Color
18592}
18593
18594// GetColorOk returns a tuple with the Color field if it's non-nil, zero value otherwise
18595// and a boolean to check if the value has been set.
18596func (w *Widget) GetColorOk() (string, bool) {
18597	if w == nil || w.Color == nil {
18598		return "", false
18599	}
18600	return *w.Color, true
18601}
18602
18603// HasColor returns a boolean if a field has been set.
18604func (w *Widget) HasColor() bool {
18605	if w != nil && w.Color != nil {
18606		return true
18607	}
18608
18609	return false
18610}
18611
18612// SetColor allocates a new w.Color and returns the pointer to it.
18613func (w *Widget) SetColor(v string) {
18614	w.Color = &v
18615}
18616
18617// GetColorPreference returns the ColorPreference field if non-nil, zero value otherwise.
18618func (w *Widget) GetColorPreference() string {
18619	if w == nil || w.ColorPreference == nil {
18620		return ""
18621	}
18622	return *w.ColorPreference
18623}
18624
18625// GetColorPreferenceOk returns a tuple with the ColorPreference field if it's non-nil, zero value otherwise
18626// and a boolean to check if the value has been set.
18627func (w *Widget) GetColorPreferenceOk() (string, bool) {
18628	if w == nil || w.ColorPreference == nil {
18629		return "", false
18630	}
18631	return *w.ColorPreference, true
18632}
18633
18634// HasColorPreference returns a boolean if a field has been set.
18635func (w *Widget) HasColorPreference() bool {
18636	if w != nil && w.ColorPreference != nil {
18637		return true
18638	}
18639
18640	return false
18641}
18642
18643// SetColorPreference allocates a new w.ColorPreference and returns the pointer to it.
18644func (w *Widget) SetColorPreference(v string) {
18645	w.ColorPreference = &v
18646}
18647
18648// GetColumns returns the Columns field if non-nil, zero value otherwise.
18649func (w *Widget) GetColumns() string {
18650	if w == nil || w.Columns == nil {
18651		return ""
18652	}
18653	return *w.Columns
18654}
18655
18656// GetColumnsOk returns a tuple with the Columns field if it's non-nil, zero value otherwise
18657// and a boolean to check if the value has been set.
18658func (w *Widget) GetColumnsOk() (string, bool) {
18659	if w == nil || w.Columns == nil {
18660		return "", false
18661	}
18662	return *w.Columns, true
18663}
18664
18665// HasColumns returns a boolean if a field has been set.
18666func (w *Widget) HasColumns() bool {
18667	if w != nil && w.Columns != nil {
18668		return true
18669	}
18670
18671	return false
18672}
18673
18674// SetColumns allocates a new w.Columns and returns the pointer to it.
18675func (w *Widget) SetColumns(v string) {
18676	w.Columns = &v
18677}
18678
18679// GetDisplayFormat returns the DisplayFormat field if non-nil, zero value otherwise.
18680func (w *Widget) GetDisplayFormat() string {
18681	if w == nil || w.DisplayFormat == nil {
18682		return ""
18683	}
18684	return *w.DisplayFormat
18685}
18686
18687// GetDisplayFormatOk returns a tuple with the DisplayFormat field if it's non-nil, zero value otherwise
18688// and a boolean to check if the value has been set.
18689func (w *Widget) GetDisplayFormatOk() (string, bool) {
18690	if w == nil || w.DisplayFormat == nil {
18691		return "", false
18692	}
18693	return *w.DisplayFormat, true
18694}
18695
18696// HasDisplayFormat returns a boolean if a field has been set.
18697func (w *Widget) HasDisplayFormat() bool {
18698	if w != nil && w.DisplayFormat != nil {
18699		return true
18700	}
18701
18702	return false
18703}
18704
18705// SetDisplayFormat allocates a new w.DisplayFormat and returns the pointer to it.
18706func (w *Widget) SetDisplayFormat(v string) {
18707	w.DisplayFormat = &v
18708}
18709
18710// GetEnv returns the Env field if non-nil, zero value otherwise.
18711func (w *Widget) GetEnv() string {
18712	if w == nil || w.Env == nil {
18713		return ""
18714	}
18715	return *w.Env
18716}
18717
18718// GetEnvOk returns a tuple with the Env field if it's non-nil, zero value otherwise
18719// and a boolean to check if the value has been set.
18720func (w *Widget) GetEnvOk() (string, bool) {
18721	if w == nil || w.Env == nil {
18722		return "", false
18723	}
18724	return *w.Env, true
18725}
18726
18727// HasEnv returns a boolean if a field has been set.
18728func (w *Widget) HasEnv() bool {
18729	if w != nil && w.Env != nil {
18730		return true
18731	}
18732
18733	return false
18734}
18735
18736// SetEnv allocates a new w.Env and returns the pointer to it.
18737func (w *Widget) SetEnv(v string) {
18738	w.Env = &v
18739}
18740
18741// GetEventSize returns the EventSize field if non-nil, zero value otherwise.
18742func (w *Widget) GetEventSize() string {
18743	if w == nil || w.EventSize == nil {
18744		return ""
18745	}
18746	return *w.EventSize
18747}
18748
18749// GetEventSizeOk returns a tuple with the EventSize field if it's non-nil, zero value otherwise
18750// and a boolean to check if the value has been set.
18751func (w *Widget) GetEventSizeOk() (string, bool) {
18752	if w == nil || w.EventSize == nil {
18753		return "", false
18754	}
18755	return *w.EventSize, true
18756}
18757
18758// HasEventSize returns a boolean if a field has been set.
18759func (w *Widget) HasEventSize() bool {
18760	if w != nil && w.EventSize != nil {
18761		return true
18762	}
18763
18764	return false
18765}
18766
18767// SetEventSize allocates a new w.EventSize and returns the pointer to it.
18768func (w *Widget) SetEventSize(v string) {
18769	w.EventSize = &v
18770}
18771
18772// GetFontSize returns the FontSize field if non-nil, zero value otherwise.
18773func (w *Widget) GetFontSize() string {
18774	if w == nil || w.FontSize == nil {
18775		return ""
18776	}
18777	return *w.FontSize
18778}
18779
18780// GetFontSizeOk returns a tuple with the FontSize field if it's non-nil, zero value otherwise
18781// and a boolean to check if the value has been set.
18782func (w *Widget) GetFontSizeOk() (string, bool) {
18783	if w == nil || w.FontSize == nil {
18784		return "", false
18785	}
18786	return *w.FontSize, true
18787}
18788
18789// HasFontSize returns a boolean if a field has been set.
18790func (w *Widget) HasFontSize() bool {
18791	if w != nil && w.FontSize != nil {
18792		return true
18793	}
18794
18795	return false
18796}
18797
18798// SetFontSize allocates a new w.FontSize and returns the pointer to it.
18799func (w *Widget) SetFontSize(v string) {
18800	w.FontSize = &v
18801}
18802
18803// GetGroup returns the Group field if non-nil, zero value otherwise.
18804func (w *Widget) GetGroup() string {
18805	if w == nil || w.Group == nil {
18806		return ""
18807	}
18808	return *w.Group
18809}
18810
18811// GetGroupOk returns a tuple with the Group field if it's non-nil, zero value otherwise
18812// and a boolean to check if the value has been set.
18813func (w *Widget) GetGroupOk() (string, bool) {
18814	if w == nil || w.Group == nil {
18815		return "", false
18816	}
18817	return *w.Group, true
18818}
18819
18820// HasGroup returns a boolean if a field has been set.
18821func (w *Widget) HasGroup() bool {
18822	if w != nil && w.Group != nil {
18823		return true
18824	}
18825
18826	return false
18827}
18828
18829// SetGroup allocates a new w.Group and returns the pointer to it.
18830func (w *Widget) SetGroup(v string) {
18831	w.Group = &v
18832}
18833
18834// GetGrouping returns the Grouping field if non-nil, zero value otherwise.
18835func (w *Widget) GetGrouping() string {
18836	if w == nil || w.Grouping == nil {
18837		return ""
18838	}
18839	return *w.Grouping
18840}
18841
18842// GetGroupingOk returns a tuple with the Grouping field if it's non-nil, zero value otherwise
18843// and a boolean to check if the value has been set.
18844func (w *Widget) GetGroupingOk() (string, bool) {
18845	if w == nil || w.Grouping == nil {
18846		return "", false
18847	}
18848	return *w.Grouping, true
18849}
18850
18851// HasGrouping returns a boolean if a field has been set.
18852func (w *Widget) HasGrouping() bool {
18853	if w != nil && w.Grouping != nil {
18854		return true
18855	}
18856
18857	return false
18858}
18859
18860// SetGrouping allocates a new w.Grouping and returns the pointer to it.
18861func (w *Widget) SetGrouping(v string) {
18862	w.Grouping = &v
18863}
18864
18865// GetHeight returns the Height field if non-nil, zero value otherwise.
18866func (w *Widget) GetHeight() int {
18867	if w == nil || w.Height == nil {
18868		return 0
18869	}
18870	return *w.Height
18871}
18872
18873// GetHeightOk returns a tuple with the Height field if it's non-nil, zero value otherwise
18874// and a boolean to check if the value has been set.
18875func (w *Widget) GetHeightOk() (int, bool) {
18876	if w == nil || w.Height == nil {
18877		return 0, false
18878	}
18879	return *w.Height, true
18880}
18881
18882// HasHeight returns a boolean if a field has been set.
18883func (w *Widget) HasHeight() bool {
18884	if w != nil && w.Height != nil {
18885		return true
18886	}
18887
18888	return false
18889}
18890
18891// SetHeight allocates a new w.Height and returns the pointer to it.
18892func (w *Widget) SetHeight(v int) {
18893	w.Height = &v
18894}
18895
18896// GetHideZeroCounts returns the HideZeroCounts field if non-nil, zero value otherwise.
18897func (w *Widget) GetHideZeroCounts() bool {
18898	if w == nil || w.HideZeroCounts == nil {
18899		return false
18900	}
18901	return *w.HideZeroCounts
18902}
18903
18904// GetHideZeroCountsOk returns a tuple with the HideZeroCounts field if it's non-nil, zero value otherwise
18905// and a boolean to check if the value has been set.
18906func (w *Widget) GetHideZeroCountsOk() (bool, bool) {
18907	if w == nil || w.HideZeroCounts == nil {
18908		return false, false
18909	}
18910	return *w.HideZeroCounts, true
18911}
18912
18913// HasHideZeroCounts returns a boolean if a field has been set.
18914func (w *Widget) HasHideZeroCounts() bool {
18915	if w != nil && w.HideZeroCounts != nil {
18916		return true
18917	}
18918
18919	return false
18920}
18921
18922// SetHideZeroCounts allocates a new w.HideZeroCounts and returns the pointer to it.
18923func (w *Widget) SetHideZeroCounts(v bool) {
18924	w.HideZeroCounts = &v
18925}
18926
18927// GetHTML returns the HTML field if non-nil, zero value otherwise.
18928func (w *Widget) GetHTML() string {
18929	if w == nil || w.HTML == nil {
18930		return ""
18931	}
18932	return *w.HTML
18933}
18934
18935// GetHTMLOk returns a tuple with the HTML field if it's non-nil, zero value otherwise
18936// and a boolean to check if the value has been set.
18937func (w *Widget) GetHTMLOk() (string, bool) {
18938	if w == nil || w.HTML == nil {
18939		return "", false
18940	}
18941	return *w.HTML, true
18942}
18943
18944// HasHTML returns a boolean if a field has been set.
18945func (w *Widget) HasHTML() bool {
18946	if w != nil && w.HTML != nil {
18947		return true
18948	}
18949
18950	return false
18951}
18952
18953// SetHTML allocates a new w.HTML and returns the pointer to it.
18954func (w *Widget) SetHTML(v string) {
18955	w.HTML = &v
18956}
18957
18958// GetLayoutVersion returns the LayoutVersion field if non-nil, zero value otherwise.
18959func (w *Widget) GetLayoutVersion() string {
18960	if w == nil || w.LayoutVersion == nil {
18961		return ""
18962	}
18963	return *w.LayoutVersion
18964}
18965
18966// GetLayoutVersionOk returns a tuple with the LayoutVersion field if it's non-nil, zero value otherwise
18967// and a boolean to check if the value has been set.
18968func (w *Widget) GetLayoutVersionOk() (string, bool) {
18969	if w == nil || w.LayoutVersion == nil {
18970		return "", false
18971	}
18972	return *w.LayoutVersion, true
18973}
18974
18975// HasLayoutVersion returns a boolean if a field has been set.
18976func (w *Widget) HasLayoutVersion() bool {
18977	if w != nil && w.LayoutVersion != nil {
18978		return true
18979	}
18980
18981	return false
18982}
18983
18984// SetLayoutVersion allocates a new w.LayoutVersion and returns the pointer to it.
18985func (w *Widget) SetLayoutVersion(v string) {
18986	w.LayoutVersion = &v
18987}
18988
18989// GetLegend returns the Legend field if non-nil, zero value otherwise.
18990func (w *Widget) GetLegend() bool {
18991	if w == nil || w.Legend == nil {
18992		return false
18993	}
18994	return *w.Legend
18995}
18996
18997// GetLegendOk returns a tuple with the Legend field if it's non-nil, zero value otherwise
18998// and a boolean to check if the value has been set.
18999func (w *Widget) GetLegendOk() (bool, bool) {
19000	if w == nil || w.Legend == nil {
19001		return false, false
19002	}
19003	return *w.Legend, true
19004}
19005
19006// HasLegend returns a boolean if a field has been set.
19007func (w *Widget) HasLegend() bool {
19008	if w != nil && w.Legend != nil {
19009		return true
19010	}
19011
19012	return false
19013}
19014
19015// SetLegend allocates a new w.Legend and returns the pointer to it.
19016func (w *Widget) SetLegend(v bool) {
19017	w.Legend = &v
19018}
19019
19020// GetLegendSize returns the LegendSize field if non-nil, zero value otherwise.
19021func (w *Widget) GetLegendSize() string {
19022	if w == nil || w.LegendSize == nil {
19023		return ""
19024	}
19025	return *w.LegendSize
19026}
19027
19028// GetLegendSizeOk returns a tuple with the LegendSize field if it's non-nil, zero value otherwise
19029// and a boolean to check if the value has been set.
19030func (w *Widget) GetLegendSizeOk() (string, bool) {
19031	if w == nil || w.LegendSize == nil {
19032		return "", false
19033	}
19034	return *w.LegendSize, true
19035}
19036
19037// HasLegendSize returns a boolean if a field has been set.
19038func (w *Widget) HasLegendSize() bool {
19039	if w != nil && w.LegendSize != nil {
19040		return true
19041	}
19042
19043	return false
19044}
19045
19046// SetLegendSize allocates a new w.LegendSize and returns the pointer to it.
19047func (w *Widget) SetLegendSize(v string) {
19048	w.LegendSize = &v
19049}
19050
19051// GetLogset returns the Logset field if non-nil, zero value otherwise.
19052func (w *Widget) GetLogset() string {
19053	if w == nil || w.Logset == nil {
19054		return ""
19055	}
19056	return *w.Logset
19057}
19058
19059// GetLogsetOk returns a tuple with the Logset field if it's non-nil, zero value otherwise
19060// and a boolean to check if the value has been set.
19061func (w *Widget) GetLogsetOk() (string, bool) {
19062	if w == nil || w.Logset == nil {
19063		return "", false
19064	}
19065	return *w.Logset, true
19066}
19067
19068// HasLogset returns a boolean if a field has been set.
19069func (w *Widget) HasLogset() bool {
19070	if w != nil && w.Logset != nil {
19071		return true
19072	}
19073
19074	return false
19075}
19076
19077// SetLogset allocates a new w.Logset and returns the pointer to it.
19078func (w *Widget) SetLogset(v string) {
19079	w.Logset = &v
19080}
19081
19082// GetManageStatusShowTitle returns the ManageStatusShowTitle field if non-nil, zero value otherwise.
19083func (w *Widget) GetManageStatusShowTitle() bool {
19084	if w == nil || w.ManageStatusShowTitle == nil {
19085		return false
19086	}
19087	return *w.ManageStatusShowTitle
19088}
19089
19090// GetManageStatusShowTitleOk returns a tuple with the ManageStatusShowTitle field if it's non-nil, zero value otherwise
19091// and a boolean to check if the value has been set.
19092func (w *Widget) GetManageStatusShowTitleOk() (bool, bool) {
19093	if w == nil || w.ManageStatusShowTitle == nil {
19094		return false, false
19095	}
19096	return *w.ManageStatusShowTitle, true
19097}
19098
19099// HasManageStatusShowTitle returns a boolean if a field has been set.
19100func (w *Widget) HasManageStatusShowTitle() bool {
19101	if w != nil && w.ManageStatusShowTitle != nil {
19102		return true
19103	}
19104
19105	return false
19106}
19107
19108// SetManageStatusShowTitle allocates a new w.ManageStatusShowTitle and returns the pointer to it.
19109func (w *Widget) SetManageStatusShowTitle(v bool) {
19110	w.ManageStatusShowTitle = &v
19111}
19112
19113// GetManageStatusTitleAlign returns the ManageStatusTitleAlign field if non-nil, zero value otherwise.
19114func (w *Widget) GetManageStatusTitleAlign() string {
19115	if w == nil || w.ManageStatusTitleAlign == nil {
19116		return ""
19117	}
19118	return *w.ManageStatusTitleAlign
19119}
19120
19121// GetManageStatusTitleAlignOk returns a tuple with the ManageStatusTitleAlign field if it's non-nil, zero value otherwise
19122// and a boolean to check if the value has been set.
19123func (w *Widget) GetManageStatusTitleAlignOk() (string, bool) {
19124	if w == nil || w.ManageStatusTitleAlign == nil {
19125		return "", false
19126	}
19127	return *w.ManageStatusTitleAlign, true
19128}
19129
19130// HasManageStatusTitleAlign returns a boolean if a field has been set.
19131func (w *Widget) HasManageStatusTitleAlign() bool {
19132	if w != nil && w.ManageStatusTitleAlign != nil {
19133		return true
19134	}
19135
19136	return false
19137}
19138
19139// SetManageStatusTitleAlign allocates a new w.ManageStatusTitleAlign and returns the pointer to it.
19140func (w *Widget) SetManageStatusTitleAlign(v string) {
19141	w.ManageStatusTitleAlign = &v
19142}
19143
19144// GetManageStatusTitleSize returns the ManageStatusTitleSize field if non-nil, zero value otherwise.
19145func (w *Widget) GetManageStatusTitleSize() string {
19146	if w == nil || w.ManageStatusTitleSize == nil {
19147		return ""
19148	}
19149	return *w.ManageStatusTitleSize
19150}
19151
19152// GetManageStatusTitleSizeOk returns a tuple with the ManageStatusTitleSize field if it's non-nil, zero value otherwise
19153// and a boolean to check if the value has been set.
19154func (w *Widget) GetManageStatusTitleSizeOk() (string, bool) {
19155	if w == nil || w.ManageStatusTitleSize == nil {
19156		return "", false
19157	}
19158	return *w.ManageStatusTitleSize, true
19159}
19160
19161// HasManageStatusTitleSize returns a boolean if a field has been set.
19162func (w *Widget) HasManageStatusTitleSize() bool {
19163	if w != nil && w.ManageStatusTitleSize != nil {
19164		return true
19165	}
19166
19167	return false
19168}
19169
19170// SetManageStatusTitleSize allocates a new w.ManageStatusTitleSize and returns the pointer to it.
19171func (w *Widget) SetManageStatusTitleSize(v string) {
19172	w.ManageStatusTitleSize = &v
19173}
19174
19175// GetManageStatusTitleText returns the ManageStatusTitleText field if non-nil, zero value otherwise.
19176func (w *Widget) GetManageStatusTitleText() string {
19177	if w == nil || w.ManageStatusTitleText == nil {
19178		return ""
19179	}
19180	return *w.ManageStatusTitleText
19181}
19182
19183// GetManageStatusTitleTextOk returns a tuple with the ManageStatusTitleText field if it's non-nil, zero value otherwise
19184// and a boolean to check if the value has been set.
19185func (w *Widget) GetManageStatusTitleTextOk() (string, bool) {
19186	if w == nil || w.ManageStatusTitleText == nil {
19187		return "", false
19188	}
19189	return *w.ManageStatusTitleText, true
19190}
19191
19192// HasManageStatusTitleText returns a boolean if a field has been set.
19193func (w *Widget) HasManageStatusTitleText() bool {
19194	if w != nil && w.ManageStatusTitleText != nil {
19195		return true
19196	}
19197
19198	return false
19199}
19200
19201// SetManageStatusTitleText allocates a new w.ManageStatusTitleText and returns the pointer to it.
19202func (w *Widget) SetManageStatusTitleText(v string) {
19203	w.ManageStatusTitleText = &v
19204}
19205
19206// GetMargin returns the Margin field if non-nil, zero value otherwise.
19207func (w *Widget) GetMargin() string {
19208	if w == nil || w.Margin == nil {
19209		return ""
19210	}
19211	return *w.Margin
19212}
19213
19214// GetMarginOk returns a tuple with the Margin field if it's non-nil, zero value otherwise
19215// and a boolean to check if the value has been set.
19216func (w *Widget) GetMarginOk() (string, bool) {
19217	if w == nil || w.Margin == nil {
19218		return "", false
19219	}
19220	return *w.Margin, true
19221}
19222
19223// HasMargin returns a boolean if a field has been set.
19224func (w *Widget) HasMargin() bool {
19225	if w != nil && w.Margin != nil {
19226		return true
19227	}
19228
19229	return false
19230}
19231
19232// SetMargin allocates a new w.Margin and returns the pointer to it.
19233func (w *Widget) SetMargin(v string) {
19234	w.Margin = &v
19235}
19236
19237// GetMonitor returns the Monitor field if non-nil, zero value otherwise.
19238func (w *Widget) GetMonitor() ScreenboardMonitor {
19239	if w == nil || w.Monitor == nil {
19240		return ScreenboardMonitor{}
19241	}
19242	return *w.Monitor
19243}
19244
19245// GetMonitorOk returns a tuple with the Monitor field if it's non-nil, zero value otherwise
19246// and a boolean to check if the value has been set.
19247func (w *Widget) GetMonitorOk() (ScreenboardMonitor, bool) {
19248	if w == nil || w.Monitor == nil {
19249		return ScreenboardMonitor{}, false
19250	}
19251	return *w.Monitor, true
19252}
19253
19254// HasMonitor returns a boolean if a field has been set.
19255func (w *Widget) HasMonitor() bool {
19256	if w != nil && w.Monitor != nil {
19257		return true
19258	}
19259
19260	return false
19261}
19262
19263// SetMonitor allocates a new w.Monitor and returns the pointer to it.
19264func (w *Widget) SetMonitor(v ScreenboardMonitor) {
19265	w.Monitor = &v
19266}
19267
19268// GetMustShowBreakdown returns the MustShowBreakdown field if non-nil, zero value otherwise.
19269func (w *Widget) GetMustShowBreakdown() bool {
19270	if w == nil || w.MustShowBreakdown == nil {
19271		return false
19272	}
19273	return *w.MustShowBreakdown
19274}
19275
19276// GetMustShowBreakdownOk returns a tuple with the MustShowBreakdown field if it's non-nil, zero value otherwise
19277// and a boolean to check if the value has been set.
19278func (w *Widget) GetMustShowBreakdownOk() (bool, bool) {
19279	if w == nil || w.MustShowBreakdown == nil {
19280		return false, false
19281	}
19282	return *w.MustShowBreakdown, true
19283}
19284
19285// HasMustShowBreakdown returns a boolean if a field has been set.
19286func (w *Widget) HasMustShowBreakdown() bool {
19287	if w != nil && w.MustShowBreakdown != nil {
19288		return true
19289	}
19290
19291	return false
19292}
19293
19294// SetMustShowBreakdown allocates a new w.MustShowBreakdown and returns the pointer to it.
19295func (w *Widget) SetMustShowBreakdown(v bool) {
19296	w.MustShowBreakdown = &v
19297}
19298
19299// GetMustShowDistribution returns the MustShowDistribution field if non-nil, zero value otherwise.
19300func (w *Widget) GetMustShowDistribution() bool {
19301	if w == nil || w.MustShowDistribution == nil {
19302		return false
19303	}
19304	return *w.MustShowDistribution
19305}
19306
19307// GetMustShowDistributionOk returns a tuple with the MustShowDistribution field if it's non-nil, zero value otherwise
19308// and a boolean to check if the value has been set.
19309func (w *Widget) GetMustShowDistributionOk() (bool, bool) {
19310	if w == nil || w.MustShowDistribution == nil {
19311		return false, false
19312	}
19313	return *w.MustShowDistribution, true
19314}
19315
19316// HasMustShowDistribution returns a boolean if a field has been set.
19317func (w *Widget) HasMustShowDistribution() bool {
19318	if w != nil && w.MustShowDistribution != nil {
19319		return true
19320	}
19321
19322	return false
19323}
19324
19325// SetMustShowDistribution allocates a new w.MustShowDistribution and returns the pointer to it.
19326func (w *Widget) SetMustShowDistribution(v bool) {
19327	w.MustShowDistribution = &v
19328}
19329
19330// GetMustShowErrors returns the MustShowErrors field if non-nil, zero value otherwise.
19331func (w *Widget) GetMustShowErrors() bool {
19332	if w == nil || w.MustShowErrors == nil {
19333		return false
19334	}
19335	return *w.MustShowErrors
19336}
19337
19338// GetMustShowErrorsOk returns a tuple with the MustShowErrors field if it's non-nil, zero value otherwise
19339// and a boolean to check if the value has been set.
19340func (w *Widget) GetMustShowErrorsOk() (bool, bool) {
19341	if w == nil || w.MustShowErrors == nil {
19342		return false, false
19343	}
19344	return *w.MustShowErrors, true
19345}
19346
19347// HasMustShowErrors returns a boolean if a field has been set.
19348func (w *Widget) HasMustShowErrors() bool {
19349	if w != nil && w.MustShowErrors != nil {
19350		return true
19351	}
19352
19353	return false
19354}
19355
19356// SetMustShowErrors allocates a new w.MustShowErrors and returns the pointer to it.
19357func (w *Widget) SetMustShowErrors(v bool) {
19358	w.MustShowErrors = &v
19359}
19360
19361// GetMustShowHits returns the MustShowHits field if non-nil, zero value otherwise.
19362func (w *Widget) GetMustShowHits() bool {
19363	if w == nil || w.MustShowHits == nil {
19364		return false
19365	}
19366	return *w.MustShowHits
19367}
19368
19369// GetMustShowHitsOk returns a tuple with the MustShowHits field if it's non-nil, zero value otherwise
19370// and a boolean to check if the value has been set.
19371func (w *Widget) GetMustShowHitsOk() (bool, bool) {
19372	if w == nil || w.MustShowHits == nil {
19373		return false, false
19374	}
19375	return *w.MustShowHits, true
19376}
19377
19378// HasMustShowHits returns a boolean if a field has been set.
19379func (w *Widget) HasMustShowHits() bool {
19380	if w != nil && w.MustShowHits != nil {
19381		return true
19382	}
19383
19384	return false
19385}
19386
19387// SetMustShowHits allocates a new w.MustShowHits and returns the pointer to it.
19388func (w *Widget) SetMustShowHits(v bool) {
19389	w.MustShowHits = &v
19390}
19391
19392// GetMustShowLatency returns the MustShowLatency field if non-nil, zero value otherwise.
19393func (w *Widget) GetMustShowLatency() bool {
19394	if w == nil || w.MustShowLatency == nil {
19395		return false
19396	}
19397	return *w.MustShowLatency
19398}
19399
19400// GetMustShowLatencyOk returns a tuple with the MustShowLatency field if it's non-nil, zero value otherwise
19401// and a boolean to check if the value has been set.
19402func (w *Widget) GetMustShowLatencyOk() (bool, bool) {
19403	if w == nil || w.MustShowLatency == nil {
19404		return false, false
19405	}
19406	return *w.MustShowLatency, true
19407}
19408
19409// HasMustShowLatency returns a boolean if a field has been set.
19410func (w *Widget) HasMustShowLatency() bool {
19411	if w != nil && w.MustShowLatency != nil {
19412		return true
19413	}
19414
19415	return false
19416}
19417
19418// SetMustShowLatency allocates a new w.MustShowLatency and returns the pointer to it.
19419func (w *Widget) SetMustShowLatency(v bool) {
19420	w.MustShowLatency = &v
19421}
19422
19423// GetMustShowResourceList returns the MustShowResourceList field if non-nil, zero value otherwise.
19424func (w *Widget) GetMustShowResourceList() bool {
19425	if w == nil || w.MustShowResourceList == nil {
19426		return false
19427	}
19428	return *w.MustShowResourceList
19429}
19430
19431// GetMustShowResourceListOk returns a tuple with the MustShowResourceList field if it's non-nil, zero value otherwise
19432// and a boolean to check if the value has been set.
19433func (w *Widget) GetMustShowResourceListOk() (bool, bool) {
19434	if w == nil || w.MustShowResourceList == nil {
19435		return false, false
19436	}
19437	return *w.MustShowResourceList, true
19438}
19439
19440// HasMustShowResourceList returns a boolean if a field has been set.
19441func (w *Widget) HasMustShowResourceList() bool {
19442	if w != nil && w.MustShowResourceList != nil {
19443		return true
19444	}
19445
19446	return false
19447}
19448
19449// SetMustShowResourceList allocates a new w.MustShowResourceList and returns the pointer to it.
19450func (w *Widget) SetMustShowResourceList(v bool) {
19451	w.MustShowResourceList = &v
19452}
19453
19454// GetParams returns the Params field if non-nil, zero value otherwise.
19455func (w *Widget) GetParams() Params {
19456	if w == nil || w.Params == nil {
19457		return Params{}
19458	}
19459	return *w.Params
19460}
19461
19462// GetParamsOk returns a tuple with the Params field if it's non-nil, zero value otherwise
19463// and a boolean to check if the value has been set.
19464func (w *Widget) GetParamsOk() (Params, bool) {
19465	if w == nil || w.Params == nil {
19466		return Params{}, false
19467	}
19468	return *w.Params, true
19469}
19470
19471// HasParams returns a boolean if a field has been set.
19472func (w *Widget) HasParams() bool {
19473	if w != nil && w.Params != nil {
19474		return true
19475	}
19476
19477	return false
19478}
19479
19480// SetParams allocates a new w.Params and returns the pointer to it.
19481func (w *Widget) SetParams(v Params) {
19482	w.Params = &v
19483}
19484
19485// GetPrecision returns the Precision field if non-nil, zero value otherwise.
19486func (w *Widget) GetPrecision() PrecisionT {
19487	if w == nil || w.Precision == nil {
19488		return ""
19489	}
19490	return *w.Precision
19491}
19492
19493// GetPrecisionOk returns a tuple with the Precision field if it's non-nil, zero value otherwise
19494// and a boolean to check if the value has been set.
19495func (w *Widget) GetPrecisionOk() (PrecisionT, bool) {
19496	if w == nil || w.Precision == nil {
19497		return "", false
19498	}
19499	return *w.Precision, true
19500}
19501
19502// HasPrecision returns a boolean if a field has been set.
19503func (w *Widget) HasPrecision() bool {
19504	if w != nil && w.Precision != nil {
19505		return true
19506	}
19507
19508	return false
19509}
19510
19511// SetPrecision allocates a new w.Precision and returns the pointer to it.
19512func (w *Widget) SetPrecision(v PrecisionT) {
19513	w.Precision = &v
19514}
19515
19516// GetQuery returns the Query field if non-nil, zero value otherwise.
19517func (w *Widget) GetQuery() string {
19518	if w == nil || w.Query == nil {
19519		return ""
19520	}
19521	return *w.Query
19522}
19523
19524// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
19525// and a boolean to check if the value has been set.
19526func (w *Widget) GetQueryOk() (string, bool) {
19527	if w == nil || w.Query == nil {
19528		return "", false
19529	}
19530	return *w.Query, true
19531}
19532
19533// HasQuery returns a boolean if a field has been set.
19534func (w *Widget) HasQuery() bool {
19535	if w != nil && w.Query != nil {
19536		return true
19537	}
19538
19539	return false
19540}
19541
19542// SetQuery allocates a new w.Query and returns the pointer to it.
19543func (w *Widget) SetQuery(v string) {
19544	w.Query = &v
19545}
19546
19547// GetServiceName returns the ServiceName field if non-nil, zero value otherwise.
19548func (w *Widget) GetServiceName() string {
19549	if w == nil || w.ServiceName == nil {
19550		return ""
19551	}
19552	return *w.ServiceName
19553}
19554
19555// GetServiceNameOk returns a tuple with the ServiceName field if it's non-nil, zero value otherwise
19556// and a boolean to check if the value has been set.
19557func (w *Widget) GetServiceNameOk() (string, bool) {
19558	if w == nil || w.ServiceName == nil {
19559		return "", false
19560	}
19561	return *w.ServiceName, true
19562}
19563
19564// HasServiceName returns a boolean if a field has been set.
19565func (w *Widget) HasServiceName() bool {
19566	if w != nil && w.ServiceName != nil {
19567		return true
19568	}
19569
19570	return false
19571}
19572
19573// SetServiceName allocates a new w.ServiceName and returns the pointer to it.
19574func (w *Widget) SetServiceName(v string) {
19575	w.ServiceName = &v
19576}
19577
19578// GetServiceService returns the ServiceService field if non-nil, zero value otherwise.
19579func (w *Widget) GetServiceService() string {
19580	if w == nil || w.ServiceService == nil {
19581		return ""
19582	}
19583	return *w.ServiceService
19584}
19585
19586// GetServiceServiceOk returns a tuple with the ServiceService field if it's non-nil, zero value otherwise
19587// and a boolean to check if the value has been set.
19588func (w *Widget) GetServiceServiceOk() (string, bool) {
19589	if w == nil || w.ServiceService == nil {
19590		return "", false
19591	}
19592	return *w.ServiceService, true
19593}
19594
19595// HasServiceService returns a boolean if a field has been set.
19596func (w *Widget) HasServiceService() bool {
19597	if w != nil && w.ServiceService != nil {
19598		return true
19599	}
19600
19601	return false
19602}
19603
19604// SetServiceService allocates a new w.ServiceService and returns the pointer to it.
19605func (w *Widget) SetServiceService(v string) {
19606	w.ServiceService = &v
19607}
19608
19609// GetSizeVersion returns the SizeVersion field if non-nil, zero value otherwise.
19610func (w *Widget) GetSizeVersion() string {
19611	if w == nil || w.SizeVersion == nil {
19612		return ""
19613	}
19614	return *w.SizeVersion
19615}
19616
19617// GetSizeVersionOk returns a tuple with the SizeVersion field if it's non-nil, zero value otherwise
19618// and a boolean to check if the value has been set.
19619func (w *Widget) GetSizeVersionOk() (string, bool) {
19620	if w == nil || w.SizeVersion == nil {
19621		return "", false
19622	}
19623	return *w.SizeVersion, true
19624}
19625
19626// HasSizeVersion returns a boolean if a field has been set.
19627func (w *Widget) HasSizeVersion() bool {
19628	if w != nil && w.SizeVersion != nil {
19629		return true
19630	}
19631
19632	return false
19633}
19634
19635// SetSizeVersion allocates a new w.SizeVersion and returns the pointer to it.
19636func (w *Widget) SetSizeVersion(v string) {
19637	w.SizeVersion = &v
19638}
19639
19640// GetSizing returns the Sizing field if non-nil, zero value otherwise.
19641func (w *Widget) GetSizing() string {
19642	if w == nil || w.Sizing == nil {
19643		return ""
19644	}
19645	return *w.Sizing
19646}
19647
19648// GetSizingOk returns a tuple with the Sizing field if it's non-nil, zero value otherwise
19649// and a boolean to check if the value has been set.
19650func (w *Widget) GetSizingOk() (string, bool) {
19651	if w == nil || w.Sizing == nil {
19652		return "", false
19653	}
19654	return *w.Sizing, true
19655}
19656
19657// HasSizing returns a boolean if a field has been set.
19658func (w *Widget) HasSizing() bool {
19659	if w != nil && w.Sizing != nil {
19660		return true
19661	}
19662
19663	return false
19664}
19665
19666// SetSizing allocates a new w.Sizing and returns the pointer to it.
19667func (w *Widget) SetSizing(v string) {
19668	w.Sizing = &v
19669}
19670
19671// GetText returns the Text field if non-nil, zero value otherwise.
19672func (w *Widget) GetText() string {
19673	if w == nil || w.Text == nil {
19674		return ""
19675	}
19676	return *w.Text
19677}
19678
19679// GetTextOk returns a tuple with the Text field if it's non-nil, zero value otherwise
19680// and a boolean to check if the value has been set.
19681func (w *Widget) GetTextOk() (string, bool) {
19682	if w == nil || w.Text == nil {
19683		return "", false
19684	}
19685	return *w.Text, true
19686}
19687
19688// HasText returns a boolean if a field has been set.
19689func (w *Widget) HasText() bool {
19690	if w != nil && w.Text != nil {
19691		return true
19692	}
19693
19694	return false
19695}
19696
19697// SetText allocates a new w.Text and returns the pointer to it.
19698func (w *Widget) SetText(v string) {
19699	w.Text = &v
19700}
19701
19702// GetTextAlign returns the TextAlign field if non-nil, zero value otherwise.
19703func (w *Widget) GetTextAlign() string {
19704	if w == nil || w.TextAlign == nil {
19705		return ""
19706	}
19707	return *w.TextAlign
19708}
19709
19710// GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise
19711// and a boolean to check if the value has been set.
19712func (w *Widget) GetTextAlignOk() (string, bool) {
19713	if w == nil || w.TextAlign == nil {
19714		return "", false
19715	}
19716	return *w.TextAlign, true
19717}
19718
19719// HasTextAlign returns a boolean if a field has been set.
19720func (w *Widget) HasTextAlign() bool {
19721	if w != nil && w.TextAlign != nil {
19722		return true
19723	}
19724
19725	return false
19726}
19727
19728// SetTextAlign allocates a new w.TextAlign and returns the pointer to it.
19729func (w *Widget) SetTextAlign(v string) {
19730	w.TextAlign = &v
19731}
19732
19733// GetTextSize returns the TextSize field if non-nil, zero value otherwise.
19734func (w *Widget) GetTextSize() string {
19735	if w == nil || w.TextSize == nil {
19736		return ""
19737	}
19738	return *w.TextSize
19739}
19740
19741// GetTextSizeOk returns a tuple with the TextSize field if it's non-nil, zero value otherwise
19742// and a boolean to check if the value has been set.
19743func (w *Widget) GetTextSizeOk() (string, bool) {
19744	if w == nil || w.TextSize == nil {
19745		return "", false
19746	}
19747	return *w.TextSize, true
19748}
19749
19750// HasTextSize returns a boolean if a field has been set.
19751func (w *Widget) HasTextSize() bool {
19752	if w != nil && w.TextSize != nil {
19753		return true
19754	}
19755
19756	return false
19757}
19758
19759// SetTextSize allocates a new w.TextSize and returns the pointer to it.
19760func (w *Widget) SetTextSize(v string) {
19761	w.TextSize = &v
19762}
19763
19764// GetTick returns the Tick field if non-nil, zero value otherwise.
19765func (w *Widget) GetTick() bool {
19766	if w == nil || w.Tick == nil {
19767		return false
19768	}
19769	return *w.Tick
19770}
19771
19772// GetTickOk returns a tuple with the Tick field if it's non-nil, zero value otherwise
19773// and a boolean to check if the value has been set.
19774func (w *Widget) GetTickOk() (bool, bool) {
19775	if w == nil || w.Tick == nil {
19776		return false, false
19777	}
19778	return *w.Tick, true
19779}
19780
19781// HasTick returns a boolean if a field has been set.
19782func (w *Widget) HasTick() bool {
19783	if w != nil && w.Tick != nil {
19784		return true
19785	}
19786
19787	return false
19788}
19789
19790// SetTick allocates a new w.Tick and returns the pointer to it.
19791func (w *Widget) SetTick(v bool) {
19792	w.Tick = &v
19793}
19794
19795// GetTickEdge returns the TickEdge field if non-nil, zero value otherwise.
19796func (w *Widget) GetTickEdge() string {
19797	if w == nil || w.TickEdge == nil {
19798		return ""
19799	}
19800	return *w.TickEdge
19801}
19802
19803// GetTickEdgeOk returns a tuple with the TickEdge field if it's non-nil, zero value otherwise
19804// and a boolean to check if the value has been set.
19805func (w *Widget) GetTickEdgeOk() (string, bool) {
19806	if w == nil || w.TickEdge == nil {
19807		return "", false
19808	}
19809	return *w.TickEdge, true
19810}
19811
19812// HasTickEdge returns a boolean if a field has been set.
19813func (w *Widget) HasTickEdge() bool {
19814	if w != nil && w.TickEdge != nil {
19815		return true
19816	}
19817
19818	return false
19819}
19820
19821// SetTickEdge allocates a new w.TickEdge and returns the pointer to it.
19822func (w *Widget) SetTickEdge(v string) {
19823	w.TickEdge = &v
19824}
19825
19826// GetTickPos returns the TickPos field if non-nil, zero value otherwise.
19827func (w *Widget) GetTickPos() string {
19828	if w == nil || w.TickPos == nil {
19829		return ""
19830	}
19831	return *w.TickPos
19832}
19833
19834// GetTickPosOk returns a tuple with the TickPos field if it's non-nil, zero value otherwise
19835// and a boolean to check if the value has been set.
19836func (w *Widget) GetTickPosOk() (string, bool) {
19837	if w == nil || w.TickPos == nil {
19838		return "", false
19839	}
19840	return *w.TickPos, true
19841}
19842
19843// HasTickPos returns a boolean if a field has been set.
19844func (w *Widget) HasTickPos() bool {
19845	if w != nil && w.TickPos != nil {
19846		return true
19847	}
19848
19849	return false
19850}
19851
19852// SetTickPos allocates a new w.TickPos and returns the pointer to it.
19853func (w *Widget) SetTickPos(v string) {
19854	w.TickPos = &v
19855}
19856
19857// GetTileDef returns the TileDef field if non-nil, zero value otherwise.
19858func (w *Widget) GetTileDef() TileDef {
19859	if w == nil || w.TileDef == nil {
19860		return TileDef{}
19861	}
19862	return *w.TileDef
19863}
19864
19865// GetTileDefOk returns a tuple with the TileDef field if it's non-nil, zero value otherwise
19866// and a boolean to check if the value has been set.
19867func (w *Widget) GetTileDefOk() (TileDef, bool) {
19868	if w == nil || w.TileDef == nil {
19869		return TileDef{}, false
19870	}
19871	return *w.TileDef, true
19872}
19873
19874// HasTileDef returns a boolean if a field has been set.
19875func (w *Widget) HasTileDef() bool {
19876	if w != nil && w.TileDef != nil {
19877		return true
19878	}
19879
19880	return false
19881}
19882
19883// SetTileDef allocates a new w.TileDef and returns the pointer to it.
19884func (w *Widget) SetTileDef(v TileDef) {
19885	w.TileDef = &v
19886}
19887
19888// GetTime returns the Time field if non-nil, zero value otherwise.
19889func (w *Widget) GetTime() Time {
19890	if w == nil || w.Time == nil {
19891		return Time{}
19892	}
19893	return *w.Time
19894}
19895
19896// GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
19897// and a boolean to check if the value has been set.
19898func (w *Widget) GetTimeOk() (Time, bool) {
19899	if w == nil || w.Time == nil {
19900		return Time{}, false
19901	}
19902	return *w.Time, true
19903}
19904
19905// HasTime returns a boolean if a field has been set.
19906func (w *Widget) HasTime() bool {
19907	if w != nil && w.Time != nil {
19908		return true
19909	}
19910
19911	return false
19912}
19913
19914// SetTime allocates a new w.Time and returns the pointer to it.
19915func (w *Widget) SetTime(v Time) {
19916	w.Time = &v
19917}
19918
19919// GetTitle returns the Title field if non-nil, zero value otherwise.
19920func (w *Widget) GetTitle() bool {
19921	if w == nil || w.Title == nil {
19922		return false
19923	}
19924	return *w.Title
19925}
19926
19927// GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
19928// and a boolean to check if the value has been set.
19929func (w *Widget) GetTitleOk() (bool, bool) {
19930	if w == nil || w.Title == nil {
19931		return false, false
19932	}
19933	return *w.Title, true
19934}
19935
19936// HasTitle returns a boolean if a field has been set.
19937func (w *Widget) HasTitle() bool {
19938	if w != nil && w.Title != nil {
19939		return true
19940	}
19941
19942	return false
19943}
19944
19945// SetTitle allocates a new w.Title and returns the pointer to it.
19946func (w *Widget) SetTitle(v bool) {
19947	w.Title = &v
19948}
19949
19950// GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise.
19951func (w *Widget) GetTitleAlign() string {
19952	if w == nil || w.TitleAlign == nil {
19953		return ""
19954	}
19955	return *w.TitleAlign
19956}
19957
19958// GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise
19959// and a boolean to check if the value has been set.
19960func (w *Widget) GetTitleAlignOk() (string, bool) {
19961	if w == nil || w.TitleAlign == nil {
19962		return "", false
19963	}
19964	return *w.TitleAlign, true
19965}
19966
19967// HasTitleAlign returns a boolean if a field has been set.
19968func (w *Widget) HasTitleAlign() bool {
19969	if w != nil && w.TitleAlign != nil {
19970		return true
19971	}
19972
19973	return false
19974}
19975
19976// SetTitleAlign allocates a new w.TitleAlign and returns the pointer to it.
19977func (w *Widget) SetTitleAlign(v string) {
19978	w.TitleAlign = &v
19979}
19980
19981// GetTitleSize returns the TitleSize field if non-nil, zero value otherwise.
19982func (w *Widget) GetTitleSize() int {
19983	if w == nil || w.TitleSize == nil {
19984		return 0
19985	}
19986	return *w.TitleSize
19987}
19988
19989// GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise
19990// and a boolean to check if the value has been set.
19991func (w *Widget) GetTitleSizeOk() (int, bool) {
19992	if w == nil || w.TitleSize == nil {
19993		return 0, false
19994	}
19995	return *w.TitleSize, true
19996}
19997
19998// HasTitleSize returns a boolean if a field has been set.
19999func (w *Widget) HasTitleSize() bool {
20000	if w != nil && w.TitleSize != nil {
20001		return true
20002	}
20003
20004	return false
20005}
20006
20007// SetTitleSize allocates a new w.TitleSize and returns the pointer to it.
20008func (w *Widget) SetTitleSize(v int) {
20009	w.TitleSize = &v
20010}
20011
20012// GetTitleText returns the TitleText field if non-nil, zero value otherwise.
20013func (w *Widget) GetTitleText() string {
20014	if w == nil || w.TitleText == nil {
20015		return ""
20016	}
20017	return *w.TitleText
20018}
20019
20020// GetTitleTextOk returns a tuple with the TitleText field if it's non-nil, zero value otherwise
20021// and a boolean to check if the value has been set.
20022func (w *Widget) GetTitleTextOk() (string, bool) {
20023	if w == nil || w.TitleText == nil {
20024		return "", false
20025	}
20026	return *w.TitleText, true
20027}
20028
20029// HasTitleText returns a boolean if a field has been set.
20030func (w *Widget) HasTitleText() bool {
20031	if w != nil && w.TitleText != nil {
20032		return true
20033	}
20034
20035	return false
20036}
20037
20038// SetTitleText allocates a new w.TitleText and returns the pointer to it.
20039func (w *Widget) SetTitleText(v string) {
20040	w.TitleText = &v
20041}
20042
20043// GetType returns the Type field if non-nil, zero value otherwise.
20044func (w *Widget) GetType() string {
20045	if w == nil || w.Type == nil {
20046		return ""
20047	}
20048	return *w.Type
20049}
20050
20051// GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
20052// and a boolean to check if the value has been set.
20053func (w *Widget) GetTypeOk() (string, bool) {
20054	if w == nil || w.Type == nil {
20055		return "", false
20056	}
20057	return *w.Type, true
20058}
20059
20060// HasType returns a boolean if a field has been set.
20061func (w *Widget) HasType() bool {
20062	if w != nil && w.Type != nil {
20063		return true
20064	}
20065
20066	return false
20067}
20068
20069// SetType allocates a new w.Type and returns the pointer to it.
20070func (w *Widget) SetType(v string) {
20071	w.Type = &v
20072}
20073
20074// GetUnit returns the Unit field if non-nil, zero value otherwise.
20075func (w *Widget) GetUnit() string {
20076	if w == nil || w.Unit == nil {
20077		return ""
20078	}
20079	return *w.Unit
20080}
20081
20082// GetUnitOk returns a tuple with the Unit field if it's non-nil, zero value otherwise
20083// and a boolean to check if the value has been set.
20084func (w *Widget) GetUnitOk() (string, bool) {
20085	if w == nil || w.Unit == nil {
20086		return "", false
20087	}
20088	return *w.Unit, true
20089}
20090
20091// HasUnit returns a boolean if a field has been set.
20092func (w *Widget) HasUnit() bool {
20093	if w != nil && w.Unit != nil {
20094		return true
20095	}
20096
20097	return false
20098}
20099
20100// SetUnit allocates a new w.Unit and returns the pointer to it.
20101func (w *Widget) SetUnit(v string) {
20102	w.Unit = &v
20103}
20104
20105// GetURL returns the URL field if non-nil, zero value otherwise.
20106func (w *Widget) GetURL() string {
20107	if w == nil || w.URL == nil {
20108		return ""
20109	}
20110	return *w.URL
20111}
20112
20113// GetURLOk returns a tuple with the URL field if it's non-nil, zero value otherwise
20114// and a boolean to check if the value has been set.
20115func (w *Widget) GetURLOk() (string, bool) {
20116	if w == nil || w.URL == nil {
20117		return "", false
20118	}
20119	return *w.URL, true
20120}
20121
20122// HasURL returns a boolean if a field has been set.
20123func (w *Widget) HasURL() bool {
20124	if w != nil && w.URL != nil {
20125		return true
20126	}
20127
20128	return false
20129}
20130
20131// SetURL allocates a new w.URL and returns the pointer to it.
20132func (w *Widget) SetURL(v string) {
20133	w.URL = &v
20134}
20135
20136// GetVizType returns the VizType field if non-nil, zero value otherwise.
20137func (w *Widget) GetVizType() string {
20138	if w == nil || w.VizType == nil {
20139		return ""
20140	}
20141	return *w.VizType
20142}
20143
20144// GetVizTypeOk returns a tuple with the VizType field if it's non-nil, zero value otherwise
20145// and a boolean to check if the value has been set.
20146func (w *Widget) GetVizTypeOk() (string, bool) {
20147	if w == nil || w.VizType == nil {
20148		return "", false
20149	}
20150	return *w.VizType, true
20151}
20152
20153// HasVizType returns a boolean if a field has been set.
20154func (w *Widget) HasVizType() bool {
20155	if w != nil && w.VizType != nil {
20156		return true
20157	}
20158
20159	return false
20160}
20161
20162// SetVizType allocates a new w.VizType and returns the pointer to it.
20163func (w *Widget) SetVizType(v string) {
20164	w.VizType = &v
20165}
20166
20167// GetWidth returns the Width field if non-nil, zero value otherwise.
20168func (w *Widget) GetWidth() int {
20169	if w == nil || w.Width == nil {
20170		return 0
20171	}
20172	return *w.Width
20173}
20174
20175// GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise
20176// and a boolean to check if the value has been set.
20177func (w *Widget) GetWidthOk() (int, bool) {
20178	if w == nil || w.Width == nil {
20179		return 0, false
20180	}
20181	return *w.Width, true
20182}
20183
20184// HasWidth returns a boolean if a field has been set.
20185func (w *Widget) HasWidth() bool {
20186	if w != nil && w.Width != nil {
20187		return true
20188	}
20189
20190	return false
20191}
20192
20193// SetWidth allocates a new w.Width and returns the pointer to it.
20194func (w *Widget) SetWidth(v int) {
20195	w.Width = &v
20196}
20197
20198// GetX returns the X field if non-nil, zero value otherwise.
20199func (w *Widget) GetX() int {
20200	if w == nil || w.X == nil {
20201		return 0
20202	}
20203	return *w.X
20204}
20205
20206// GetXOk returns a tuple with the X field if it's non-nil, zero value otherwise
20207// and a boolean to check if the value has been set.
20208func (w *Widget) GetXOk() (int, bool) {
20209	if w == nil || w.X == nil {
20210		return 0, false
20211	}
20212	return *w.X, true
20213}
20214
20215// HasX returns a boolean if a field has been set.
20216func (w *Widget) HasX() bool {
20217	if w != nil && w.X != nil {
20218		return true
20219	}
20220
20221	return false
20222}
20223
20224// SetX allocates a new w.X and returns the pointer to it.
20225func (w *Widget) SetX(v int) {
20226	w.X = &v
20227}
20228
20229// GetY returns the Y field if non-nil, zero value otherwise.
20230func (w *Widget) GetY() int {
20231	if w == nil || w.Y == nil {
20232		return 0
20233	}
20234	return *w.Y
20235}
20236
20237// GetYOk returns a tuple with the Y field if it's non-nil, zero value otherwise
20238// and a boolean to check if the value has been set.
20239func (w *Widget) GetYOk() (int, bool) {
20240	if w == nil || w.Y == nil {
20241		return 0, false
20242	}
20243	return *w.Y, true
20244}
20245
20246// HasY returns a boolean if a field has been set.
20247func (w *Widget) HasY() bool {
20248	if w != nil && w.Y != nil {
20249		return true
20250	}
20251
20252	return false
20253}
20254
20255// SetY allocates a new w.Y and returns the pointer to it.
20256func (w *Widget) SetY(v int) {
20257	w.Y = &v
20258}
20259
20260// GetCompute returns the Compute field if non-nil, zero value otherwise.
20261func (w *WidgetApmOrLogQuery) GetCompute() ApmOrLogQueryCompute {
20262	if w == nil || w.Compute == nil {
20263		return ApmOrLogQueryCompute{}
20264	}
20265	return *w.Compute
20266}
20267
20268// GetComputeOk returns a tuple with the Compute field if it's non-nil, zero value otherwise
20269// and a boolean to check if the value has been set.
20270func (w *WidgetApmOrLogQuery) GetComputeOk() (ApmOrLogQueryCompute, bool) {
20271	if w == nil || w.Compute == nil {
20272		return ApmOrLogQueryCompute{}, false
20273	}
20274	return *w.Compute, true
20275}
20276
20277// HasCompute returns a boolean if a field has been set.
20278func (w *WidgetApmOrLogQuery) HasCompute() bool {
20279	if w != nil && w.Compute != nil {
20280		return true
20281	}
20282
20283	return false
20284}
20285
20286// SetCompute allocates a new w.Compute and returns the pointer to it.
20287func (w *WidgetApmOrLogQuery) SetCompute(v ApmOrLogQueryCompute) {
20288	w.Compute = &v
20289}
20290
20291// GetIndex returns the Index field if non-nil, zero value otherwise.
20292func (w *WidgetApmOrLogQuery) GetIndex() string {
20293	if w == nil || w.Index == nil {
20294		return ""
20295	}
20296	return *w.Index
20297}
20298
20299// GetIndexOk returns a tuple with the Index field if it's non-nil, zero value otherwise
20300// and a boolean to check if the value has been set.
20301func (w *WidgetApmOrLogQuery) GetIndexOk() (string, bool) {
20302	if w == nil || w.Index == nil {
20303		return "", false
20304	}
20305	return *w.Index, true
20306}
20307
20308// HasIndex returns a boolean if a field has been set.
20309func (w *WidgetApmOrLogQuery) HasIndex() bool {
20310	if w != nil && w.Index != nil {
20311		return true
20312	}
20313
20314	return false
20315}
20316
20317// SetIndex allocates a new w.Index and returns the pointer to it.
20318func (w *WidgetApmOrLogQuery) SetIndex(v string) {
20319	w.Index = &v
20320}
20321
20322// GetSearch returns the Search field if non-nil, zero value otherwise.
20323func (w *WidgetApmOrLogQuery) GetSearch() ApmOrLogQuerySearch {
20324	if w == nil || w.Search == nil {
20325		return ApmOrLogQuerySearch{}
20326	}
20327	return *w.Search
20328}
20329
20330// GetSearchOk returns a tuple with the Search field if it's non-nil, zero value otherwise
20331// and a boolean to check if the value has been set.
20332func (w *WidgetApmOrLogQuery) GetSearchOk() (ApmOrLogQuerySearch, bool) {
20333	if w == nil || w.Search == nil {
20334		return ApmOrLogQuerySearch{}, false
20335	}
20336	return *w.Search, true
20337}
20338
20339// HasSearch returns a boolean if a field has been set.
20340func (w *WidgetApmOrLogQuery) HasSearch() bool {
20341	if w != nil && w.Search != nil {
20342		return true
20343	}
20344
20345	return false
20346}
20347
20348// SetSearch allocates a new w.Search and returns the pointer to it.
20349func (w *WidgetApmOrLogQuery) SetSearch(v ApmOrLogQuerySearch) {
20350	w.Search = &v
20351}
20352
20353// GetIncludeZero returns the IncludeZero field if non-nil, zero value otherwise.
20354func (w *WidgetAxis) GetIncludeZero() bool {
20355	if w == nil || w.IncludeZero == nil {
20356		return false
20357	}
20358	return *w.IncludeZero
20359}
20360
20361// GetIncludeZeroOk returns a tuple with the IncludeZero field if it's non-nil, zero value otherwise
20362// and a boolean to check if the value has been set.
20363func (w *WidgetAxis) GetIncludeZeroOk() (bool, bool) {
20364	if w == nil || w.IncludeZero == nil {
20365		return false, false
20366	}
20367	return *w.IncludeZero, true
20368}
20369
20370// HasIncludeZero returns a boolean if a field has been set.
20371func (w *WidgetAxis) HasIncludeZero() bool {
20372	if w != nil && w.IncludeZero != nil {
20373		return true
20374	}
20375
20376	return false
20377}
20378
20379// SetIncludeZero allocates a new w.IncludeZero and returns the pointer to it.
20380func (w *WidgetAxis) SetIncludeZero(v bool) {
20381	w.IncludeZero = &v
20382}
20383
20384// GetLabel returns the Label field if non-nil, zero value otherwise.
20385func (w *WidgetAxis) GetLabel() string {
20386	if w == nil || w.Label == nil {
20387		return ""
20388	}
20389	return *w.Label
20390}
20391
20392// GetLabelOk returns a tuple with the Label field if it's non-nil, zero value otherwise
20393// and a boolean to check if the value has been set.
20394func (w *WidgetAxis) GetLabelOk() (string, bool) {
20395	if w == nil || w.Label == nil {
20396		return "", false
20397	}
20398	return *w.Label, true
20399}
20400
20401// HasLabel returns a boolean if a field has been set.
20402func (w *WidgetAxis) HasLabel() bool {
20403	if w != nil && w.Label != nil {
20404		return true
20405	}
20406
20407	return false
20408}
20409
20410// SetLabel allocates a new w.Label and returns the pointer to it.
20411func (w *WidgetAxis) SetLabel(v string) {
20412	w.Label = &v
20413}
20414
20415// GetMax returns the Max field if non-nil, zero value otherwise.
20416func (w *WidgetAxis) GetMax() string {
20417	if w == nil || w.Max == nil {
20418		return ""
20419	}
20420	return *w.Max
20421}
20422
20423// GetMaxOk returns a tuple with the Max field if it's non-nil, zero value otherwise
20424// and a boolean to check if the value has been set.
20425func (w *WidgetAxis) GetMaxOk() (string, bool) {
20426	if w == nil || w.Max == nil {
20427		return "", false
20428	}
20429	return *w.Max, true
20430}
20431
20432// HasMax returns a boolean if a field has been set.
20433func (w *WidgetAxis) HasMax() bool {
20434	if w != nil && w.Max != nil {
20435		return true
20436	}
20437
20438	return false
20439}
20440
20441// SetMax allocates a new w.Max and returns the pointer to it.
20442func (w *WidgetAxis) SetMax(v string) {
20443	w.Max = &v
20444}
20445
20446// GetMin returns the Min field if non-nil, zero value otherwise.
20447func (w *WidgetAxis) GetMin() string {
20448	if w == nil || w.Min == nil {
20449		return ""
20450	}
20451	return *w.Min
20452}
20453
20454// GetMinOk returns a tuple with the Min field if it's non-nil, zero value otherwise
20455// and a boolean to check if the value has been set.
20456func (w *WidgetAxis) GetMinOk() (string, bool) {
20457	if w == nil || w.Min == nil {
20458		return "", false
20459	}
20460	return *w.Min, true
20461}
20462
20463// HasMin returns a boolean if a field has been set.
20464func (w *WidgetAxis) HasMin() bool {
20465	if w != nil && w.Min != nil {
20466		return true
20467	}
20468
20469	return false
20470}
20471
20472// SetMin allocates a new w.Min and returns the pointer to it.
20473func (w *WidgetAxis) SetMin(v string) {
20474	w.Min = &v
20475}
20476
20477// GetScale returns the Scale field if non-nil, zero value otherwise.
20478func (w *WidgetAxis) GetScale() string {
20479	if w == nil || w.Scale == nil {
20480		return ""
20481	}
20482	return *w.Scale
20483}
20484
20485// GetScaleOk returns a tuple with the Scale field if it's non-nil, zero value otherwise
20486// and a boolean to check if the value has been set.
20487func (w *WidgetAxis) GetScaleOk() (string, bool) {
20488	if w == nil || w.Scale == nil {
20489		return "", false
20490	}
20491	return *w.Scale, true
20492}
20493
20494// HasScale returns a boolean if a field has been set.
20495func (w *WidgetAxis) HasScale() bool {
20496	if w != nil && w.Scale != nil {
20497		return true
20498	}
20499
20500	return false
20501}
20502
20503// SetScale allocates a new w.Scale and returns the pointer to it.
20504func (w *WidgetAxis) SetScale(v string) {
20505	w.Scale = &v
20506}
20507
20508// GetComparator returns the Comparator field if non-nil, zero value otherwise.
20509func (w *WidgetConditionalFormat) GetComparator() string {
20510	if w == nil || w.Comparator == nil {
20511		return ""
20512	}
20513	return *w.Comparator
20514}
20515
20516// GetComparatorOk returns a tuple with the Comparator field if it's non-nil, zero value otherwise
20517// and a boolean to check if the value has been set.
20518func (w *WidgetConditionalFormat) GetComparatorOk() (string, bool) {
20519	if w == nil || w.Comparator == nil {
20520		return "", false
20521	}
20522	return *w.Comparator, true
20523}
20524
20525// HasComparator returns a boolean if a field has been set.
20526func (w *WidgetConditionalFormat) HasComparator() bool {
20527	if w != nil && w.Comparator != nil {
20528		return true
20529	}
20530
20531	return false
20532}
20533
20534// SetComparator allocates a new w.Comparator and returns the pointer to it.
20535func (w *WidgetConditionalFormat) SetComparator(v string) {
20536	w.Comparator = &v
20537}
20538
20539// GetCustomBgColor returns the CustomBgColor field if non-nil, zero value otherwise.
20540func (w *WidgetConditionalFormat) GetCustomBgColor() string {
20541	if w == nil || w.CustomBgColor == nil {
20542		return ""
20543	}
20544	return *w.CustomBgColor
20545}
20546
20547// GetCustomBgColorOk returns a tuple with the CustomBgColor field if it's non-nil, zero value otherwise
20548// and a boolean to check if the value has been set.
20549func (w *WidgetConditionalFormat) GetCustomBgColorOk() (string, bool) {
20550	if w == nil || w.CustomBgColor == nil {
20551		return "", false
20552	}
20553	return *w.CustomBgColor, true
20554}
20555
20556// HasCustomBgColor returns a boolean if a field has been set.
20557func (w *WidgetConditionalFormat) HasCustomBgColor() bool {
20558	if w != nil && w.CustomBgColor != nil {
20559		return true
20560	}
20561
20562	return false
20563}
20564
20565// SetCustomBgColor allocates a new w.CustomBgColor and returns the pointer to it.
20566func (w *WidgetConditionalFormat) SetCustomBgColor(v string) {
20567	w.CustomBgColor = &v
20568}
20569
20570// GetCustomFgColor returns the CustomFgColor field if non-nil, zero value otherwise.
20571func (w *WidgetConditionalFormat) GetCustomFgColor() string {
20572	if w == nil || w.CustomFgColor == nil {
20573		return ""
20574	}
20575	return *w.CustomFgColor
20576}
20577
20578// GetCustomFgColorOk returns a tuple with the CustomFgColor field if it's non-nil, zero value otherwise
20579// and a boolean to check if the value has been set.
20580func (w *WidgetConditionalFormat) GetCustomFgColorOk() (string, bool) {
20581	if w == nil || w.CustomFgColor == nil {
20582		return "", false
20583	}
20584	return *w.CustomFgColor, true
20585}
20586
20587// HasCustomFgColor returns a boolean if a field has been set.
20588func (w *WidgetConditionalFormat) HasCustomFgColor() bool {
20589	if w != nil && w.CustomFgColor != nil {
20590		return true
20591	}
20592
20593	return false
20594}
20595
20596// SetCustomFgColor allocates a new w.CustomFgColor and returns the pointer to it.
20597func (w *WidgetConditionalFormat) SetCustomFgColor(v string) {
20598	w.CustomFgColor = &v
20599}
20600
20601// GetHideValue returns the HideValue field if non-nil, zero value otherwise.
20602func (w *WidgetConditionalFormat) GetHideValue() bool {
20603	if w == nil || w.HideValue == nil {
20604		return false
20605	}
20606	return *w.HideValue
20607}
20608
20609// GetHideValueOk returns a tuple with the HideValue field if it's non-nil, zero value otherwise
20610// and a boolean to check if the value has been set.
20611func (w *WidgetConditionalFormat) GetHideValueOk() (bool, bool) {
20612	if w == nil || w.HideValue == nil {
20613		return false, false
20614	}
20615	return *w.HideValue, true
20616}
20617
20618// HasHideValue returns a boolean if a field has been set.
20619func (w *WidgetConditionalFormat) HasHideValue() bool {
20620	if w != nil && w.HideValue != nil {
20621		return true
20622	}
20623
20624	return false
20625}
20626
20627// SetHideValue allocates a new w.HideValue and returns the pointer to it.
20628func (w *WidgetConditionalFormat) SetHideValue(v bool) {
20629	w.HideValue = &v
20630}
20631
20632// GetImageUrl returns the ImageUrl field if non-nil, zero value otherwise.
20633func (w *WidgetConditionalFormat) GetImageUrl() string {
20634	if w == nil || w.ImageUrl == nil {
20635		return ""
20636	}
20637	return *w.ImageUrl
20638}
20639
20640// GetImageUrlOk returns a tuple with the ImageUrl field if it's non-nil, zero value otherwise
20641// and a boolean to check if the value has been set.
20642func (w *WidgetConditionalFormat) GetImageUrlOk() (string, bool) {
20643	if w == nil || w.ImageUrl == nil {
20644		return "", false
20645	}
20646	return *w.ImageUrl, true
20647}
20648
20649// HasImageUrl returns a boolean if a field has been set.
20650func (w *WidgetConditionalFormat) HasImageUrl() bool {
20651	if w != nil && w.ImageUrl != nil {
20652		return true
20653	}
20654
20655	return false
20656}
20657
20658// SetImageUrl allocates a new w.ImageUrl and returns the pointer to it.
20659func (w *WidgetConditionalFormat) SetImageUrl(v string) {
20660	w.ImageUrl = &v
20661}
20662
20663// GetPalette returns the Palette field if non-nil, zero value otherwise.
20664func (w *WidgetConditionalFormat) GetPalette() string {
20665	if w == nil || w.Palette == nil {
20666		return ""
20667	}
20668	return *w.Palette
20669}
20670
20671// GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise
20672// and a boolean to check if the value has been set.
20673func (w *WidgetConditionalFormat) GetPaletteOk() (string, bool) {
20674	if w == nil || w.Palette == nil {
20675		return "", false
20676	}
20677	return *w.Palette, true
20678}
20679
20680// HasPalette returns a boolean if a field has been set.
20681func (w *WidgetConditionalFormat) HasPalette() bool {
20682	if w != nil && w.Palette != nil {
20683		return true
20684	}
20685
20686	return false
20687}
20688
20689// SetPalette allocates a new w.Palette and returns the pointer to it.
20690func (w *WidgetConditionalFormat) SetPalette(v string) {
20691	w.Palette = &v
20692}
20693
20694// GetTimeframe returns the Timeframe field if non-nil, zero value otherwise.
20695func (w *WidgetConditionalFormat) GetTimeframe() string {
20696	if w == nil || w.Timeframe == nil {
20697		return ""
20698	}
20699	return *w.Timeframe
20700}
20701
20702// GetTimeframeOk returns a tuple with the Timeframe field if it's non-nil, zero value otherwise
20703// and a boolean to check if the value has been set.
20704func (w *WidgetConditionalFormat) GetTimeframeOk() (string, bool) {
20705	if w == nil || w.Timeframe == nil {
20706		return "", false
20707	}
20708	return *w.Timeframe, true
20709}
20710
20711// HasTimeframe returns a boolean if a field has been set.
20712func (w *WidgetConditionalFormat) HasTimeframe() bool {
20713	if w != nil && w.Timeframe != nil {
20714		return true
20715	}
20716
20717	return false
20718}
20719
20720// SetTimeframe allocates a new w.Timeframe and returns the pointer to it.
20721func (w *WidgetConditionalFormat) SetTimeframe(v string) {
20722	w.Timeframe = &v
20723}
20724
20725// GetValue returns the Value field if non-nil, zero value otherwise.
20726func (w *WidgetConditionalFormat) GetValue() float64 {
20727	if w == nil || w.Value == nil {
20728		return 0
20729	}
20730	return *w.Value
20731}
20732
20733// GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise
20734// and a boolean to check if the value has been set.
20735func (w *WidgetConditionalFormat) GetValueOk() (float64, bool) {
20736	if w == nil || w.Value == nil {
20737		return 0, false
20738	}
20739	return *w.Value, true
20740}
20741
20742// HasValue returns a boolean if a field has been set.
20743func (w *WidgetConditionalFormat) HasValue() bool {
20744	if w != nil && w.Value != nil {
20745		return true
20746	}
20747
20748	return false
20749}
20750
20751// SetValue allocates a new w.Value and returns the pointer to it.
20752func (w *WidgetConditionalFormat) SetValue(v float64) {
20753	w.Value = &v
20754}
20755
20756// GetQuery returns the Query field if non-nil, zero value otherwise.
20757func (w *WidgetEvent) GetQuery() string {
20758	if w == nil || w.Query == nil {
20759		return ""
20760	}
20761	return *w.Query
20762}
20763
20764// GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise
20765// and a boolean to check if the value has been set.
20766func (w *WidgetEvent) GetQueryOk() (string, bool) {
20767	if w == nil || w.Query == nil {
20768		return "", false
20769	}
20770	return *w.Query, true
20771}
20772
20773// HasQuery returns a boolean if a field has been set.
20774func (w *WidgetEvent) HasQuery() bool {
20775	if w != nil && w.Query != nil {
20776		return true
20777	}
20778
20779	return false
20780}
20781
20782// SetQuery allocates a new w.Query and returns the pointer to it.
20783func (w *WidgetEvent) SetQuery(v string) {
20784	w.Query = &v
20785}
20786
20787// GetHeight returns the Height field if non-nil, zero value otherwise.
20788func (w *WidgetLayout) GetHeight() float64 {
20789	if w == nil || w.Height == nil {
20790		return 0
20791	}
20792	return *w.Height
20793}
20794
20795// GetHeightOk returns a tuple with the Height field if it's non-nil, zero value otherwise
20796// and a boolean to check if the value has been set.
20797func (w *WidgetLayout) GetHeightOk() (float64, bool) {
20798	if w == nil || w.Height == nil {
20799		return 0, false
20800	}
20801	return *w.Height, true
20802}
20803
20804// HasHeight returns a boolean if a field has been set.
20805func (w *WidgetLayout) HasHeight() bool {
20806	if w != nil && w.Height != nil {
20807		return true
20808	}
20809
20810	return false
20811}
20812
20813// SetHeight allocates a new w.Height and returns the pointer to it.
20814func (w *WidgetLayout) SetHeight(v float64) {
20815	w.Height = &v
20816}
20817
20818// GetWidth returns the Width field if non-nil, zero value otherwise.
20819func (w *WidgetLayout) GetWidth() float64 {
20820	if w == nil || w.Width == nil {
20821		return 0
20822	}
20823	return *w.Width
20824}
20825
20826// GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise
20827// and a boolean to check if the value has been set.
20828func (w *WidgetLayout) GetWidthOk() (float64, bool) {
20829	if w == nil || w.Width == nil {
20830		return 0, false
20831	}
20832	return *w.Width, true
20833}
20834
20835// HasWidth returns a boolean if a field has been set.
20836func (w *WidgetLayout) HasWidth() bool {
20837	if w != nil && w.Width != nil {
20838		return true
20839	}
20840
20841	return false
20842}
20843
20844// SetWidth allocates a new w.Width and returns the pointer to it.
20845func (w *WidgetLayout) SetWidth(v float64) {
20846	w.Width = &v
20847}
20848
20849// GetX returns the X field if non-nil, zero value otherwise.
20850func (w *WidgetLayout) GetX() float64 {
20851	if w == nil || w.X == nil {
20852		return 0
20853	}
20854	return *w.X
20855}
20856
20857// GetXOk returns a tuple with the X field if it's non-nil, zero value otherwise
20858// and a boolean to check if the value has been set.
20859func (w *WidgetLayout) GetXOk() (float64, bool) {
20860	if w == nil || w.X == nil {
20861		return 0, false
20862	}
20863	return *w.X, true
20864}
20865
20866// HasX returns a boolean if a field has been set.
20867func (w *WidgetLayout) HasX() bool {
20868	if w != nil && w.X != nil {
20869		return true
20870	}
20871
20872	return false
20873}
20874
20875// SetX allocates a new w.X and returns the pointer to it.
20876func (w *WidgetLayout) SetX(v float64) {
20877	w.X = &v
20878}
20879
20880// GetY returns the Y field if non-nil, zero value otherwise.
20881func (w *WidgetLayout) GetY() float64 {
20882	if w == nil || w.Y == nil {
20883		return 0
20884	}
20885	return *w.Y
20886}
20887
20888// GetYOk returns a tuple with the Y field if it's non-nil, zero value otherwise
20889// and a boolean to check if the value has been set.
20890func (w *WidgetLayout) GetYOk() (float64, bool) {
20891	if w == nil || w.Y == nil {
20892		return 0, false
20893	}
20894	return *w.Y, true
20895}
20896
20897// HasY returns a boolean if a field has been set.
20898func (w *WidgetLayout) HasY() bool {
20899	if w != nil && w.Y != nil {
20900		return true
20901	}
20902
20903	return false
20904}
20905
20906// SetY allocates a new w.Y and returns the pointer to it.
20907func (w *WidgetLayout) SetY(v float64) {
20908	w.Y = &v
20909}
20910
20911// GetDisplayType returns the DisplayType field if non-nil, zero value otherwise.
20912func (w *WidgetMarker) GetDisplayType() string {
20913	if w == nil || w.DisplayType == nil {
20914		return ""
20915	}
20916	return *w.DisplayType
20917}
20918
20919// GetDisplayTypeOk returns a tuple with the DisplayType field if it's non-nil, zero value otherwise
20920// and a boolean to check if the value has been set.
20921func (w *WidgetMarker) GetDisplayTypeOk() (string, bool) {
20922	if w == nil || w.DisplayType == nil {
20923		return "", false
20924	}
20925	return *w.DisplayType, true
20926}
20927
20928// HasDisplayType returns a boolean if a field has been set.
20929func (w *WidgetMarker) HasDisplayType() bool {
20930	if w != nil && w.DisplayType != nil {
20931		return true
20932	}
20933
20934	return false
20935}
20936
20937// SetDisplayType allocates a new w.DisplayType and returns the pointer to it.
20938func (w *WidgetMarker) SetDisplayType(v string) {
20939	w.DisplayType = &v
20940}
20941
20942// GetLabel returns the Label field if non-nil, zero value otherwise.
20943func (w *WidgetMarker) GetLabel() string {
20944	if w == nil || w.Label == nil {
20945		return ""
20946	}
20947	return *w.Label
20948}
20949
20950// GetLabelOk returns a tuple with the Label field if it's non-nil, zero value otherwise
20951// and a boolean to check if the value has been set.
20952func (w *WidgetMarker) GetLabelOk() (string, bool) {
20953	if w == nil || w.Label == nil {
20954		return "", false
20955	}
20956	return *w.Label, true
20957}
20958
20959// HasLabel returns a boolean if a field has been set.
20960func (w *WidgetMarker) HasLabel() bool {
20961	if w != nil && w.Label != nil {
20962		return true
20963	}
20964
20965	return false
20966}
20967
20968// SetLabel allocates a new w.Label and returns the pointer to it.
20969func (w *WidgetMarker) SetLabel(v string) {
20970	w.Label = &v
20971}
20972
20973// GetValue returns the Value field if non-nil, zero value otherwise.
20974func (w *WidgetMarker) GetValue() string {
20975	if w == nil || w.Value == nil {
20976		return ""
20977	}
20978	return *w.Value
20979}
20980
20981// GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise
20982// and a boolean to check if the value has been set.
20983func (w *WidgetMarker) GetValueOk() (string, bool) {
20984	if w == nil || w.Value == nil {
20985		return "", false
20986	}
20987	return *w.Value, true
20988}
20989
20990// HasValue returns a boolean if a field has been set.
20991func (w *WidgetMarker) HasValue() bool {
20992	if w != nil && w.Value != nil {
20993		return true
20994	}
20995
20996	return false
20997}
20998
20999// SetValue allocates a new w.Value and returns the pointer to it.
21000func (w *WidgetMarker) SetValue(v string) {
21001	w.Value = &v
21002}
21003
21004// GetAliasName returns the AliasName field if non-nil, zero value otherwise.
21005func (w *WidgetMetadata) GetAliasName() string {
21006	if w == nil || w.AliasName == nil {
21007		return ""
21008	}
21009	return *w.AliasName
21010}
21011
21012// GetAliasNameOk returns a tuple with the AliasName field if it's non-nil, zero value otherwise
21013// and a boolean to check if the value has been set.
21014func (w *WidgetMetadata) GetAliasNameOk() (string, bool) {
21015	if w == nil || w.AliasName == nil {
21016		return "", false
21017	}
21018	return *w.AliasName, true
21019}
21020
21021// HasAliasName returns a boolean if a field has been set.
21022func (w *WidgetMetadata) HasAliasName() bool {
21023	if w != nil && w.AliasName != nil {
21024		return true
21025	}
21026
21027	return false
21028}
21029
21030// SetAliasName allocates a new w.AliasName and returns the pointer to it.
21031func (w *WidgetMetadata) SetAliasName(v string) {
21032	w.AliasName = &v
21033}
21034
21035// GetExpression returns the Expression field if non-nil, zero value otherwise.
21036func (w *WidgetMetadata) GetExpression() string {
21037	if w == nil || w.Expression == nil {
21038		return ""
21039	}
21040	return *w.Expression
21041}
21042
21043// GetExpressionOk returns a tuple with the Expression field if it's non-nil, zero value otherwise
21044// and a boolean to check if the value has been set.
21045func (w *WidgetMetadata) GetExpressionOk() (string, bool) {
21046	if w == nil || w.Expression == nil {
21047		return "", false
21048	}
21049	return *w.Expression, true
21050}
21051
21052// HasExpression returns a boolean if a field has been set.
21053func (w *WidgetMetadata) HasExpression() bool {
21054	if w != nil && w.Expression != nil {
21055		return true
21056	}
21057
21058	return false
21059}
21060
21061// SetExpression allocates a new w.Expression and returns the pointer to it.
21062func (w *WidgetMetadata) SetExpression(v string) {
21063	w.Expression = &v
21064}
21065
21066// GetLimit returns the Limit field if non-nil, zero value otherwise.
21067func (w *WidgetProcessQuery) GetLimit() int {
21068	if w == nil || w.Limit == nil {
21069		return 0
21070	}
21071	return *w.Limit
21072}
21073
21074// GetLimitOk returns a tuple with the Limit field if it's non-nil, zero value otherwise
21075// and a boolean to check if the value has been set.
21076func (w *WidgetProcessQuery) GetLimitOk() (int, bool) {
21077	if w == nil || w.Limit == nil {
21078		return 0, false
21079	}
21080	return *w.Limit, true
21081}
21082
21083// HasLimit returns a boolean if a field has been set.
21084func (w *WidgetProcessQuery) HasLimit() bool {
21085	if w != nil && w.Limit != nil {
21086		return true
21087	}
21088
21089	return false
21090}
21091
21092// SetLimit allocates a new w.Limit and returns the pointer to it.
21093func (w *WidgetProcessQuery) SetLimit(v int) {
21094	w.Limit = &v
21095}
21096
21097// GetMetric returns the Metric field if non-nil, zero value otherwise.
21098func (w *WidgetProcessQuery) GetMetric() string {
21099	if w == nil || w.Metric == nil {
21100		return ""
21101	}
21102	return *w.Metric
21103}
21104
21105// GetMetricOk returns a tuple with the Metric field if it's non-nil, zero value otherwise
21106// and a boolean to check if the value has been set.
21107func (w *WidgetProcessQuery) GetMetricOk() (string, bool) {
21108	if w == nil || w.Metric == nil {
21109		return "", false
21110	}
21111	return *w.Metric, true
21112}
21113
21114// HasMetric returns a boolean if a field has been set.
21115func (w *WidgetProcessQuery) HasMetric() bool {
21116	if w != nil && w.Metric != nil {
21117		return true
21118	}
21119
21120	return false
21121}
21122
21123// SetMetric allocates a new w.Metric and returns the pointer to it.
21124func (w *WidgetProcessQuery) SetMetric(v string) {
21125	w.Metric = &v
21126}
21127
21128// GetSearchBy returns the SearchBy field if non-nil, zero value otherwise.
21129func (w *WidgetProcessQuery) GetSearchBy() string {
21130	if w == nil || w.SearchBy == nil {
21131		return ""
21132	}
21133	return *w.SearchBy
21134}
21135
21136// GetSearchByOk returns a tuple with the SearchBy field if it's non-nil, zero value otherwise
21137// and a boolean to check if the value has been set.
21138func (w *WidgetProcessQuery) GetSearchByOk() (string, bool) {
21139	if w == nil || w.SearchBy == nil {
21140		return "", false
21141	}
21142	return *w.SearchBy, true
21143}
21144
21145// HasSearchBy returns a boolean if a field has been set.
21146func (w *WidgetProcessQuery) HasSearchBy() bool {
21147	if w != nil && w.SearchBy != nil {
21148		return true
21149	}
21150
21151	return false
21152}
21153
21154// SetSearchBy allocates a new w.SearchBy and returns the pointer to it.
21155func (w *WidgetProcessQuery) SetSearchBy(v string) {
21156	w.SearchBy = &v
21157}
21158
21159// GetPalette returns the Palette field if non-nil, zero value otherwise.
21160func (w *WidgetRequestStyle) GetPalette() string {
21161	if w == nil || w.Palette == nil {
21162		return ""
21163	}
21164	return *w.Palette
21165}
21166
21167// GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise
21168// and a boolean to check if the value has been set.
21169func (w *WidgetRequestStyle) GetPaletteOk() (string, bool) {
21170	if w == nil || w.Palette == nil {
21171		return "", false
21172	}
21173	return *w.Palette, true
21174}
21175
21176// HasPalette returns a boolean if a field has been set.
21177func (w *WidgetRequestStyle) HasPalette() bool {
21178	if w != nil && w.Palette != nil {
21179		return true
21180	}
21181
21182	return false
21183}
21184
21185// SetPalette allocates a new w.Palette and returns the pointer to it.
21186func (w *WidgetRequestStyle) SetPalette(v string) {
21187	w.Palette = &v
21188}
21189
21190// GetLiveSpan returns the LiveSpan field if non-nil, zero value otherwise.
21191func (w *WidgetTime) GetLiveSpan() string {
21192	if w == nil || w.LiveSpan == nil {
21193		return ""
21194	}
21195	return *w.LiveSpan
21196}
21197
21198// GetLiveSpanOk returns a tuple with the LiveSpan field if it's non-nil, zero value otherwise
21199// and a boolean to check if the value has been set.
21200func (w *WidgetTime) GetLiveSpanOk() (string, bool) {
21201	if w == nil || w.LiveSpan == nil {
21202		return "", false
21203	}
21204	return *w.LiveSpan, true
21205}
21206
21207// HasLiveSpan returns a boolean if a field has been set.
21208func (w *WidgetTime) HasLiveSpan() bool {
21209	if w != nil && w.LiveSpan != nil {
21210		return true
21211	}
21212
21213	return false
21214}
21215
21216// SetLiveSpan allocates a new w.LiveSpan and returns the pointer to it.
21217func (w *WidgetTime) SetLiveSpan(v string) {
21218	w.LiveSpan = &v
21219}
21220
21221// GetIncludeUnits returns the IncludeUnits field if non-nil, zero value otherwise.
21222func (y *Yaxis) GetIncludeUnits() bool {
21223	if y == nil || y.IncludeUnits == nil {
21224		return false
21225	}
21226	return *y.IncludeUnits
21227}
21228
21229// GetIncludeUnitsOk returns a tuple with the IncludeUnits field if it's non-nil, zero value otherwise
21230// and a boolean to check if the value has been set.
21231func (y *Yaxis) GetIncludeUnitsOk() (bool, bool) {
21232	if y == nil || y.IncludeUnits == nil {
21233		return false, false
21234	}
21235	return *y.IncludeUnits, true
21236}
21237
21238// HasIncludeUnits returns a boolean if a field has been set.
21239func (y *Yaxis) HasIncludeUnits() bool {
21240	if y != nil && y.IncludeUnits != nil {
21241		return true
21242	}
21243
21244	return false
21245}
21246
21247// SetIncludeUnits allocates a new y.IncludeUnits and returns the pointer to it.
21248func (y *Yaxis) SetIncludeUnits(v bool) {
21249	y.IncludeUnits = &v
21250}
21251
21252// GetIncludeZero returns the IncludeZero field if non-nil, zero value otherwise.
21253func (y *Yaxis) GetIncludeZero() bool {
21254	if y == nil || y.IncludeZero == nil {
21255		return false
21256	}
21257	return *y.IncludeZero
21258}
21259
21260// GetIncludeZeroOk returns a tuple with the IncludeZero field if it's non-nil, zero value otherwise
21261// and a boolean to check if the value has been set.
21262func (y *Yaxis) GetIncludeZeroOk() (bool, bool) {
21263	if y == nil || y.IncludeZero == nil {
21264		return false, false
21265	}
21266	return *y.IncludeZero, true
21267}
21268
21269// HasIncludeZero returns a boolean if a field has been set.
21270func (y *Yaxis) HasIncludeZero() bool {
21271	if y != nil && y.IncludeZero != nil {
21272		return true
21273	}
21274
21275	return false
21276}
21277
21278// SetIncludeZero allocates a new y.IncludeZero and returns the pointer to it.
21279func (y *Yaxis) SetIncludeZero(v bool) {
21280	y.IncludeZero = &v
21281}
21282
21283// GetMax returns the Max field if non-nil, zero value otherwise.
21284func (y *Yaxis) GetMax() float64 {
21285	if y == nil || y.Max == nil {
21286		return 0
21287	}
21288	return *y.Max
21289}
21290
21291// GetMaxOk returns a tuple with the Max field if it's non-nil, zero value otherwise
21292// and a boolean to check if the value has been set.
21293func (y *Yaxis) GetMaxOk() (float64, bool) {
21294	if y == nil || y.Max == nil {
21295		return 0, false
21296	}
21297	return *y.Max, true
21298}
21299
21300// HasMax returns a boolean if a field has been set.
21301func (y *Yaxis) HasMax() bool {
21302	if y != nil && y.Max != nil {
21303		return true
21304	}
21305
21306	return false
21307}
21308
21309// SetMax allocates a new y.Max and returns the pointer to it.
21310func (y *Yaxis) SetMax(v float64) {
21311	y.Max = &v
21312}
21313
21314// GetMin returns the Min field if non-nil, zero value otherwise.
21315func (y *Yaxis) GetMin() float64 {
21316	if y == nil || y.Min == nil {
21317		return 0
21318	}
21319	return *y.Min
21320}
21321
21322// GetMinOk returns a tuple with the Min field if it's non-nil, zero value otherwise
21323// and a boolean to check if the value has been set.
21324func (y *Yaxis) GetMinOk() (float64, bool) {
21325	if y == nil || y.Min == nil {
21326		return 0, false
21327	}
21328	return *y.Min, true
21329}
21330
21331// HasMin returns a boolean if a field has been set.
21332func (y *Yaxis) HasMin() bool {
21333	if y != nil && y.Min != nil {
21334		return true
21335	}
21336
21337	return false
21338}
21339
21340// SetMin allocates a new y.Min and returns the pointer to it.
21341func (y *Yaxis) SetMin(v float64) {
21342	y.Min = &v
21343}
21344
21345// GetScale returns the Scale field if non-nil, zero value otherwise.
21346func (y *Yaxis) GetScale() string {
21347	if y == nil || y.Scale == nil {
21348		return ""
21349	}
21350	return *y.Scale
21351}
21352
21353// GetScaleOk returns a tuple with the Scale field if it's non-nil, zero value otherwise
21354// and a boolean to check if the value has been set.
21355func (y *Yaxis) GetScaleOk() (string, bool) {
21356	if y == nil || y.Scale == nil {
21357		return "", false
21358	}
21359	return *y.Scale, true
21360}
21361
21362// HasScale returns a boolean if a field has been set.
21363func (y *Yaxis) HasScale() bool {
21364	if y != nil && y.Scale != nil {
21365		return true
21366	}
21367
21368	return false
21369}
21370
21371// SetScale allocates a new y.Scale and returns the pointer to it.
21372func (y *Yaxis) SetScale(v string) {
21373	y.Scale = &v
21374}
21375