/* THIS FILE IS AUTOMATICALLY GENERATED BY create-accessors; DO NOT EDIT. * Datadog API for Go * * Please see the included LICENSE file for licensing information. * * Copyright 2019 by authors and contributors. */ package datadog import ( "encoding/json" "time" ) // GetCreator returns the Creator field if non-nil, zero value otherwise. func (a *Alert) GetCreator() int { if a == nil || a.Creator == nil { return 0 } return *a.Creator } // GetCreatorOk returns a tuple with the Creator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *Alert) GetCreatorOk() (int, bool) { if a == nil || a.Creator == nil { return 0, false } return *a.Creator, true } // HasCreator returns a boolean if a field has been set. func (a *Alert) HasCreator() bool { if a != nil && a.Creator != nil { return true } return false } // SetCreator allocates a new a.Creator and returns the pointer to it. func (a *Alert) SetCreator(v int) { a.Creator = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (a *Alert) GetId() int { if a == nil || a.Id == nil { return 0 } return *a.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *Alert) GetIdOk() (int, bool) { if a == nil || a.Id == nil { return 0, false } return *a.Id, true } // HasId returns a boolean if a field has been set. func (a *Alert) HasId() bool { if a != nil && a.Id != nil { return true } return false } // SetId allocates a new a.Id and returns the pointer to it. func (a *Alert) SetId(v int) { a.Id = &v } // GetMessage returns the Message field if non-nil, zero value otherwise. func (a *Alert) GetMessage() string { if a == nil || a.Message == nil { return "" } return *a.Message } // GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *Alert) GetMessageOk() (string, bool) { if a == nil || a.Message == nil { return "", false } return *a.Message, true } // HasMessage returns a boolean if a field has been set. func (a *Alert) HasMessage() bool { if a != nil && a.Message != nil { return true } return false } // SetMessage allocates a new a.Message and returns the pointer to it. func (a *Alert) SetMessage(v string) { a.Message = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (a *Alert) GetName() string { if a == nil || a.Name == nil { return "" } return *a.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *Alert) GetNameOk() (string, bool) { if a == nil || a.Name == nil { return "", false } return *a.Name, true } // HasName returns a boolean if a field has been set. func (a *Alert) HasName() bool { if a != nil && a.Name != nil { return true } return false } // SetName allocates a new a.Name and returns the pointer to it. func (a *Alert) SetName(v string) { a.Name = &v } // GetNotifyNoData returns the NotifyNoData field if non-nil, zero value otherwise. func (a *Alert) GetNotifyNoData() bool { if a == nil || a.NotifyNoData == nil { return false } return *a.NotifyNoData } // GetNotifyNoDataOk returns a tuple with the NotifyNoData field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *Alert) GetNotifyNoDataOk() (bool, bool) { if a == nil || a.NotifyNoData == nil { return false, false } return *a.NotifyNoData, true } // HasNotifyNoData returns a boolean if a field has been set. func (a *Alert) HasNotifyNoData() bool { if a != nil && a.NotifyNoData != nil { return true } return false } // SetNotifyNoData allocates a new a.NotifyNoData and returns the pointer to it. func (a *Alert) SetNotifyNoData(v bool) { a.NotifyNoData = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (a *Alert) GetQuery() string { if a == nil || a.Query == nil { return "" } return *a.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *Alert) GetQueryOk() (string, bool) { if a == nil || a.Query == nil { return "", false } return *a.Query, true } // HasQuery returns a boolean if a field has been set. func (a *Alert) HasQuery() bool { if a != nil && a.Query != nil { return true } return false } // SetQuery allocates a new a.Query and returns the pointer to it. func (a *Alert) SetQuery(v string) { a.Query = &v } // GetSilenced returns the Silenced field if non-nil, zero value otherwise. func (a *Alert) GetSilenced() bool { if a == nil || a.Silenced == nil { return false } return *a.Silenced } // GetSilencedOk returns a tuple with the Silenced field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *Alert) GetSilencedOk() (bool, bool) { if a == nil || a.Silenced == nil { return false, false } return *a.Silenced, true } // HasSilenced returns a boolean if a field has been set. func (a *Alert) HasSilenced() bool { if a != nil && a.Silenced != nil { return true } return false } // SetSilenced allocates a new a.Silenced and returns the pointer to it. func (a *Alert) SetSilenced(v bool) { a.Silenced = &v } // GetState returns the State field if non-nil, zero value otherwise. func (a *Alert) GetState() string { if a == nil || a.State == nil { return "" } return *a.State } // GetStateOk returns a tuple with the State field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *Alert) GetStateOk() (string, bool) { if a == nil || a.State == nil { return "", false } return *a.State, true } // HasState returns a boolean if a field has been set. func (a *Alert) HasState() bool { if a != nil && a.State != nil { return true } return false } // SetState allocates a new a.State and returns the pointer to it. func (a *Alert) SetState(v string) { a.State = &v } // GetAlertId returns the AlertId field if non-nil, zero value otherwise. func (a *AlertGraphDefinition) GetAlertId() string { if a == nil || a.AlertId == nil { return "" } return *a.AlertId } // GetAlertIdOk returns a tuple with the AlertId field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertGraphDefinition) GetAlertIdOk() (string, bool) { if a == nil || a.AlertId == nil { return "", false } return *a.AlertId, true } // HasAlertId returns a boolean if a field has been set. func (a *AlertGraphDefinition) HasAlertId() bool { if a != nil && a.AlertId != nil { return true } return false } // SetAlertId allocates a new a.AlertId and returns the pointer to it. func (a *AlertGraphDefinition) SetAlertId(v string) { a.AlertId = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (a *AlertGraphDefinition) GetTime() WidgetTime { if a == nil || a.Time == nil { return WidgetTime{} } return *a.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertGraphDefinition) GetTimeOk() (WidgetTime, bool) { if a == nil || a.Time == nil { return WidgetTime{}, false } return *a.Time, true } // HasTime returns a boolean if a field has been set. func (a *AlertGraphDefinition) HasTime() bool { if a != nil && a.Time != nil { return true } return false } // SetTime allocates a new a.Time and returns the pointer to it. func (a *AlertGraphDefinition) SetTime(v WidgetTime) { a.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (a *AlertGraphDefinition) GetTitle() string { if a == nil || a.Title == nil { return "" } return *a.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertGraphDefinition) GetTitleOk() (string, bool) { if a == nil || a.Title == nil { return "", false } return *a.Title, true } // HasTitle returns a boolean if a field has been set. func (a *AlertGraphDefinition) HasTitle() bool { if a != nil && a.Title != nil { return true } return false } // SetTitle allocates a new a.Title and returns the pointer to it. func (a *AlertGraphDefinition) SetTitle(v string) { a.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (a *AlertGraphDefinition) GetTitleAlign() string { if a == nil || a.TitleAlign == nil { return "" } return *a.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertGraphDefinition) GetTitleAlignOk() (string, bool) { if a == nil || a.TitleAlign == nil { return "", false } return *a.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (a *AlertGraphDefinition) HasTitleAlign() bool { if a != nil && a.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new a.TitleAlign and returns the pointer to it. func (a *AlertGraphDefinition) SetTitleAlign(v string) { a.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (a *AlertGraphDefinition) GetTitleSize() string { if a == nil || a.TitleSize == nil { return "" } return *a.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertGraphDefinition) GetTitleSizeOk() (string, bool) { if a == nil || a.TitleSize == nil { return "", false } return *a.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (a *AlertGraphDefinition) HasTitleSize() bool { if a != nil && a.TitleSize != nil { return true } return false } // SetTitleSize allocates a new a.TitleSize and returns the pointer to it. func (a *AlertGraphDefinition) SetTitleSize(v string) { a.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (a *AlertGraphDefinition) GetType() string { if a == nil || a.Type == nil { return "" } return *a.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertGraphDefinition) GetTypeOk() (string, bool) { if a == nil || a.Type == nil { return "", false } return *a.Type, true } // HasType returns a boolean if a field has been set. func (a *AlertGraphDefinition) HasType() bool { if a != nil && a.Type != nil { return true } return false } // SetType allocates a new a.Type and returns the pointer to it. func (a *AlertGraphDefinition) SetType(v string) { a.Type = &v } // GetVizType returns the VizType field if non-nil, zero value otherwise. func (a *AlertGraphDefinition) GetVizType() string { if a == nil || a.VizType == nil { return "" } return *a.VizType } // GetVizTypeOk returns a tuple with the VizType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertGraphDefinition) GetVizTypeOk() (string, bool) { if a == nil || a.VizType == nil { return "", false } return *a.VizType, true } // HasVizType returns a boolean if a field has been set. func (a *AlertGraphDefinition) HasVizType() bool { if a != nil && a.VizType != nil { return true } return false } // SetVizType allocates a new a.VizType and returns the pointer to it. func (a *AlertGraphDefinition) SetVizType(v string) { a.VizType = &v } // GetAlertId returns the AlertId field if non-nil, zero value otherwise. func (a *AlertValueDefinition) GetAlertId() string { if a == nil || a.AlertId == nil { return "" } return *a.AlertId } // GetAlertIdOk returns a tuple with the AlertId field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertValueDefinition) GetAlertIdOk() (string, bool) { if a == nil || a.AlertId == nil { return "", false } return *a.AlertId, true } // HasAlertId returns a boolean if a field has been set. func (a *AlertValueDefinition) HasAlertId() bool { if a != nil && a.AlertId != nil { return true } return false } // SetAlertId allocates a new a.AlertId and returns the pointer to it. func (a *AlertValueDefinition) SetAlertId(v string) { a.AlertId = &v } // GetPrecision returns the Precision field if non-nil, zero value otherwise. func (a *AlertValueDefinition) GetPrecision() int { if a == nil || a.Precision == nil { return 0 } return *a.Precision } // GetPrecisionOk returns a tuple with the Precision field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertValueDefinition) GetPrecisionOk() (int, bool) { if a == nil || a.Precision == nil { return 0, false } return *a.Precision, true } // HasPrecision returns a boolean if a field has been set. func (a *AlertValueDefinition) HasPrecision() bool { if a != nil && a.Precision != nil { return true } return false } // SetPrecision allocates a new a.Precision and returns the pointer to it. func (a *AlertValueDefinition) SetPrecision(v int) { a.Precision = &v } // GetTextAlign returns the TextAlign field if non-nil, zero value otherwise. func (a *AlertValueDefinition) GetTextAlign() string { if a == nil || a.TextAlign == nil { return "" } return *a.TextAlign } // GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertValueDefinition) GetTextAlignOk() (string, bool) { if a == nil || a.TextAlign == nil { return "", false } return *a.TextAlign, true } // HasTextAlign returns a boolean if a field has been set. func (a *AlertValueDefinition) HasTextAlign() bool { if a != nil && a.TextAlign != nil { return true } return false } // SetTextAlign allocates a new a.TextAlign and returns the pointer to it. func (a *AlertValueDefinition) SetTextAlign(v string) { a.TextAlign = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (a *AlertValueDefinition) GetTitle() string { if a == nil || a.Title == nil { return "" } return *a.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertValueDefinition) GetTitleOk() (string, bool) { if a == nil || a.Title == nil { return "", false } return *a.Title, true } // HasTitle returns a boolean if a field has been set. func (a *AlertValueDefinition) HasTitle() bool { if a != nil && a.Title != nil { return true } return false } // SetTitle allocates a new a.Title and returns the pointer to it. func (a *AlertValueDefinition) SetTitle(v string) { a.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (a *AlertValueDefinition) GetTitleAlign() string { if a == nil || a.TitleAlign == nil { return "" } return *a.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertValueDefinition) GetTitleAlignOk() (string, bool) { if a == nil || a.TitleAlign == nil { return "", false } return *a.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (a *AlertValueDefinition) HasTitleAlign() bool { if a != nil && a.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new a.TitleAlign and returns the pointer to it. func (a *AlertValueDefinition) SetTitleAlign(v string) { a.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (a *AlertValueDefinition) GetTitleSize() string { if a == nil || a.TitleSize == nil { return "" } return *a.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertValueDefinition) GetTitleSizeOk() (string, bool) { if a == nil || a.TitleSize == nil { return "", false } return *a.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (a *AlertValueDefinition) HasTitleSize() bool { if a != nil && a.TitleSize != nil { return true } return false } // SetTitleSize allocates a new a.TitleSize and returns the pointer to it. func (a *AlertValueDefinition) SetTitleSize(v string) { a.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (a *AlertValueDefinition) GetType() string { if a == nil || a.Type == nil { return "" } return *a.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertValueDefinition) GetTypeOk() (string, bool) { if a == nil || a.Type == nil { return "", false } return *a.Type, true } // HasType returns a boolean if a field has been set. func (a *AlertValueDefinition) HasType() bool { if a != nil && a.Type != nil { return true } return false } // SetType allocates a new a.Type and returns the pointer to it. func (a *AlertValueDefinition) SetType(v string) { a.Type = &v } // GetUnit returns the Unit field if non-nil, zero value otherwise. func (a *AlertValueDefinition) GetUnit() string { if a == nil || a.Unit == nil { return "" } return *a.Unit } // GetUnitOk returns a tuple with the Unit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *AlertValueDefinition) GetUnitOk() (string, bool) { if a == nil || a.Unit == nil { return "", false } return *a.Unit, true } // HasUnit returns a boolean if a field has been set. func (a *AlertValueDefinition) HasUnit() bool { if a != nil && a.Unit != nil { return true } return false } // SetUnit allocates a new a.Unit and returns the pointer to it. func (a *AlertValueDefinition) SetUnit(v string) { a.Unit = &v } // GetCreated returns the Created field if non-nil, zero value otherwise. func (a *APIKey) GetCreated() time.Time { if a == nil || a.Created == nil { return time.Time{} } return *a.Created } // GetCreatedOk returns a tuple with the Created field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *APIKey) GetCreatedOk() (time.Time, bool) { if a == nil || a.Created == nil { return time.Time{}, false } return *a.Created, true } // HasCreated returns a boolean if a field has been set. func (a *APIKey) HasCreated() bool { if a != nil && a.Created != nil { return true } return false } // SetCreated allocates a new a.Created and returns the pointer to it. func (a *APIKey) SetCreated(v time.Time) { a.Created = &v } // GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise. func (a *APIKey) GetCreatedBy() string { if a == nil || a.CreatedBy == nil { return "" } return *a.CreatedBy } // GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *APIKey) GetCreatedByOk() (string, bool) { if a == nil || a.CreatedBy == nil { return "", false } return *a.CreatedBy, true } // HasCreatedBy returns a boolean if a field has been set. func (a *APIKey) HasCreatedBy() bool { if a != nil && a.CreatedBy != nil { return true } return false } // SetCreatedBy allocates a new a.CreatedBy and returns the pointer to it. func (a *APIKey) SetCreatedBy(v string) { a.CreatedBy = &v } // GetKey returns the Key field if non-nil, zero value otherwise. func (a *APIKey) GetKey() string { if a == nil || a.Key == nil { return "" } return *a.Key } // GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *APIKey) GetKeyOk() (string, bool) { if a == nil || a.Key == nil { return "", false } return *a.Key, true } // HasKey returns a boolean if a field has been set. func (a *APIKey) HasKey() bool { if a != nil && a.Key != nil { return true } return false } // SetKey allocates a new a.Key and returns the pointer to it. func (a *APIKey) SetKey(v string) { a.Key = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (a *APIKey) GetName() string { if a == nil || a.Name == nil { return "" } return *a.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *APIKey) GetNameOk() (string, bool) { if a == nil || a.Name == nil { return "", false } return *a.Name, true } // HasName returns a boolean if a field has been set. func (a *APIKey) HasName() bool { if a != nil && a.Name != nil { return true } return false } // SetName allocates a new a.Name and returns the pointer to it. func (a *APIKey) SetName(v string) { a.Name = &v } // GetAggregation returns the Aggregation field if non-nil, zero value otherwise. func (a *ApmOrLogQueryCompute) GetAggregation() string { if a == nil || a.Aggregation == nil { return "" } return *a.Aggregation } // GetAggregationOk returns a tuple with the Aggregation field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *ApmOrLogQueryCompute) GetAggregationOk() (string, bool) { if a == nil || a.Aggregation == nil { return "", false } return *a.Aggregation, true } // HasAggregation returns a boolean if a field has been set. func (a *ApmOrLogQueryCompute) HasAggregation() bool { if a != nil && a.Aggregation != nil { return true } return false } // SetAggregation allocates a new a.Aggregation and returns the pointer to it. func (a *ApmOrLogQueryCompute) SetAggregation(v string) { a.Aggregation = &v } // GetFacet returns the Facet field if non-nil, zero value otherwise. func (a *ApmOrLogQueryCompute) GetFacet() string { if a == nil || a.Facet == nil { return "" } return *a.Facet } // GetFacetOk returns a tuple with the Facet field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *ApmOrLogQueryCompute) GetFacetOk() (string, bool) { if a == nil || a.Facet == nil { return "", false } return *a.Facet, true } // HasFacet returns a boolean if a field has been set. func (a *ApmOrLogQueryCompute) HasFacet() bool { if a != nil && a.Facet != nil { return true } return false } // SetFacet allocates a new a.Facet and returns the pointer to it. func (a *ApmOrLogQueryCompute) SetFacet(v string) { a.Facet = &v } // GetInterval returns the Interval field if non-nil, zero value otherwise. func (a *ApmOrLogQueryCompute) GetInterval() int { if a == nil || a.Interval == nil { return 0 } return *a.Interval } // GetIntervalOk returns a tuple with the Interval field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *ApmOrLogQueryCompute) GetIntervalOk() (int, bool) { if a == nil || a.Interval == nil { return 0, false } return *a.Interval, true } // HasInterval returns a boolean if a field has been set. func (a *ApmOrLogQueryCompute) HasInterval() bool { if a != nil && a.Interval != nil { return true } return false } // SetInterval allocates a new a.Interval and returns the pointer to it. func (a *ApmOrLogQueryCompute) SetInterval(v int) { a.Interval = &v } // GetFacet returns the Facet field if non-nil, zero value otherwise. func (a *ApmOrLogQueryGroupBy) GetFacet() string { if a == nil || a.Facet == nil { return "" } return *a.Facet } // GetFacetOk returns a tuple with the Facet field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *ApmOrLogQueryGroupBy) GetFacetOk() (string, bool) { if a == nil || a.Facet == nil { return "", false } return *a.Facet, true } // HasFacet returns a boolean if a field has been set. func (a *ApmOrLogQueryGroupBy) HasFacet() bool { if a != nil && a.Facet != nil { return true } return false } // SetFacet allocates a new a.Facet and returns the pointer to it. func (a *ApmOrLogQueryGroupBy) SetFacet(v string) { a.Facet = &v } // GetLimit returns the Limit field if non-nil, zero value otherwise. func (a *ApmOrLogQueryGroupBy) GetLimit() int { if a == nil || a.Limit == nil { return 0 } return *a.Limit } // GetLimitOk returns a tuple with the Limit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *ApmOrLogQueryGroupBy) GetLimitOk() (int, bool) { if a == nil || a.Limit == nil { return 0, false } return *a.Limit, true } // HasLimit returns a boolean if a field has been set. func (a *ApmOrLogQueryGroupBy) HasLimit() bool { if a != nil && a.Limit != nil { return true } return false } // SetLimit allocates a new a.Limit and returns the pointer to it. func (a *ApmOrLogQueryGroupBy) SetLimit(v int) { a.Limit = &v } // GetSort returns the Sort field if non-nil, zero value otherwise. func (a *ApmOrLogQueryGroupBy) GetSort() ApmOrLogQueryGroupBySort { if a == nil || a.Sort == nil { return ApmOrLogQueryGroupBySort{} } return *a.Sort } // GetSortOk returns a tuple with the Sort field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *ApmOrLogQueryGroupBy) GetSortOk() (ApmOrLogQueryGroupBySort, bool) { if a == nil || a.Sort == nil { return ApmOrLogQueryGroupBySort{}, false } return *a.Sort, true } // HasSort returns a boolean if a field has been set. func (a *ApmOrLogQueryGroupBy) HasSort() bool { if a != nil && a.Sort != nil { return true } return false } // SetSort allocates a new a.Sort and returns the pointer to it. func (a *ApmOrLogQueryGroupBy) SetSort(v ApmOrLogQueryGroupBySort) { a.Sort = &v } // GetAggregation returns the Aggregation field if non-nil, zero value otherwise. func (a *ApmOrLogQueryGroupBySort) GetAggregation() string { if a == nil || a.Aggregation == nil { return "" } return *a.Aggregation } // GetAggregationOk returns a tuple with the Aggregation field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *ApmOrLogQueryGroupBySort) GetAggregationOk() (string, bool) { if a == nil || a.Aggregation == nil { return "", false } return *a.Aggregation, true } // HasAggregation returns a boolean if a field has been set. func (a *ApmOrLogQueryGroupBySort) HasAggregation() bool { if a != nil && a.Aggregation != nil { return true } return false } // SetAggregation allocates a new a.Aggregation and returns the pointer to it. func (a *ApmOrLogQueryGroupBySort) SetAggregation(v string) { a.Aggregation = &v } // GetFacet returns the Facet field if non-nil, zero value otherwise. func (a *ApmOrLogQueryGroupBySort) GetFacet() string { if a == nil || a.Facet == nil { return "" } return *a.Facet } // GetFacetOk returns a tuple with the Facet field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *ApmOrLogQueryGroupBySort) GetFacetOk() (string, bool) { if a == nil || a.Facet == nil { return "", false } return *a.Facet, true } // HasFacet returns a boolean if a field has been set. func (a *ApmOrLogQueryGroupBySort) HasFacet() bool { if a != nil && a.Facet != nil { return true } return false } // SetFacet allocates a new a.Facet and returns the pointer to it. func (a *ApmOrLogQueryGroupBySort) SetFacet(v string) { a.Facet = &v } // GetOrder returns the Order field if non-nil, zero value otherwise. func (a *ApmOrLogQueryGroupBySort) GetOrder() string { if a == nil || a.Order == nil { return "" } return *a.Order } // GetOrderOk returns a tuple with the Order field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *ApmOrLogQueryGroupBySort) GetOrderOk() (string, bool) { if a == nil || a.Order == nil { return "", false } return *a.Order, true } // HasOrder returns a boolean if a field has been set. func (a *ApmOrLogQueryGroupBySort) HasOrder() bool { if a != nil && a.Order != nil { return true } return false } // SetOrder allocates a new a.Order and returns the pointer to it. func (a *ApmOrLogQueryGroupBySort) SetOrder(v string) { a.Order = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (a *ApmOrLogQuerySearch) GetQuery() string { if a == nil || a.Query == nil { return "" } return *a.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (a *ApmOrLogQuerySearch) GetQueryOk() (string, bool) { if a == nil || a.Query == nil { return "", false } return *a.Query, true } // HasQuery returns a boolean if a field has been set. func (a *ApmOrLogQuerySearch) HasQuery() bool { if a != nil && a.Query != nil { return true } return false } // SetQuery allocates a new a.Query and returns the pointer to it. func (a *ApmOrLogQuerySearch) SetQuery(v string) { a.Query = &v } // GetAuthorHandle returns the AuthorHandle field if non-nil, zero value otherwise. func (b *Board) GetAuthorHandle() string { if b == nil || b.AuthorHandle == nil { return "" } return *b.AuthorHandle } // GetAuthorHandleOk returns a tuple with the AuthorHandle field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *Board) GetAuthorHandleOk() (string, bool) { if b == nil || b.AuthorHandle == nil { return "", false } return *b.AuthorHandle, true } // HasAuthorHandle returns a boolean if a field has been set. func (b *Board) HasAuthorHandle() bool { if b != nil && b.AuthorHandle != nil { return true } return false } // SetAuthorHandle allocates a new b.AuthorHandle and returns the pointer to it. func (b *Board) SetAuthorHandle(v string) { b.AuthorHandle = &v } // GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise. func (b *Board) GetCreatedAt() string { if b == nil || b.CreatedAt == nil { return "" } return *b.CreatedAt } // GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *Board) GetCreatedAtOk() (string, bool) { if b == nil || b.CreatedAt == nil { return "", false } return *b.CreatedAt, true } // HasCreatedAt returns a boolean if a field has been set. func (b *Board) HasCreatedAt() bool { if b != nil && b.CreatedAt != nil { return true } return false } // SetCreatedAt allocates a new b.CreatedAt and returns the pointer to it. func (b *Board) SetCreatedAt(v string) { b.CreatedAt = &v } // GetDescription returns the Description field if non-nil, zero value otherwise. func (b *Board) GetDescription() string { if b == nil || b.Description == nil { return "" } return *b.Description } // GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *Board) GetDescriptionOk() (string, bool) { if b == nil || b.Description == nil { return "", false } return *b.Description, true } // HasDescription returns a boolean if a field has been set. func (b *Board) HasDescription() bool { if b != nil && b.Description != nil { return true } return false } // SetDescription allocates a new b.Description and returns the pointer to it. func (b *Board) SetDescription(v string) { b.Description = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (b *Board) GetId() string { if b == nil || b.Id == nil { return "" } return *b.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *Board) GetIdOk() (string, bool) { if b == nil || b.Id == nil { return "", false } return *b.Id, true } // HasId returns a boolean if a field has been set. func (b *Board) HasId() bool { if b != nil && b.Id != nil { return true } return false } // SetId allocates a new b.Id and returns the pointer to it. func (b *Board) SetId(v string) { b.Id = &v } // GetIsReadOnly returns the IsReadOnly field if non-nil, zero value otherwise. func (b *Board) GetIsReadOnly() bool { if b == nil || b.IsReadOnly == nil { return false } return *b.IsReadOnly } // GetIsReadOnlyOk returns a tuple with the IsReadOnly field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *Board) GetIsReadOnlyOk() (bool, bool) { if b == nil || b.IsReadOnly == nil { return false, false } return *b.IsReadOnly, true } // HasIsReadOnly returns a boolean if a field has been set. func (b *Board) HasIsReadOnly() bool { if b != nil && b.IsReadOnly != nil { return true } return false } // SetIsReadOnly allocates a new b.IsReadOnly and returns the pointer to it. func (b *Board) SetIsReadOnly(v bool) { b.IsReadOnly = &v } // GetLayoutType returns the LayoutType field if non-nil, zero value otherwise. func (b *Board) GetLayoutType() string { if b == nil || b.LayoutType == nil { return "" } return *b.LayoutType } // GetLayoutTypeOk returns a tuple with the LayoutType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *Board) GetLayoutTypeOk() (string, bool) { if b == nil || b.LayoutType == nil { return "", false } return *b.LayoutType, true } // HasLayoutType returns a boolean if a field has been set. func (b *Board) HasLayoutType() bool { if b != nil && b.LayoutType != nil { return true } return false } // SetLayoutType allocates a new b.LayoutType and returns the pointer to it. func (b *Board) SetLayoutType(v string) { b.LayoutType = &v } // GetModifiedAt returns the ModifiedAt field if non-nil, zero value otherwise. func (b *Board) GetModifiedAt() string { if b == nil || b.ModifiedAt == nil { return "" } return *b.ModifiedAt } // GetModifiedAtOk returns a tuple with the ModifiedAt field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *Board) GetModifiedAtOk() (string, bool) { if b == nil || b.ModifiedAt == nil { return "", false } return *b.ModifiedAt, true } // HasModifiedAt returns a boolean if a field has been set. func (b *Board) HasModifiedAt() bool { if b != nil && b.ModifiedAt != nil { return true } return false } // SetModifiedAt allocates a new b.ModifiedAt and returns the pointer to it. func (b *Board) SetModifiedAt(v string) { b.ModifiedAt = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (b *Board) GetTitle() string { if b == nil || b.Title == nil { return "" } return *b.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *Board) GetTitleOk() (string, bool) { if b == nil || b.Title == nil { return "", false } return *b.Title, true } // HasTitle returns a boolean if a field has been set. func (b *Board) HasTitle() bool { if b != nil && b.Title != nil { return true } return false } // SetTitle allocates a new b.Title and returns the pointer to it. func (b *Board) SetTitle(v string) { b.Title = &v } // GetUrl returns the Url field if non-nil, zero value otherwise. func (b *Board) GetUrl() string { if b == nil || b.Url == nil { return "" } return *b.Url } // GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *Board) GetUrlOk() (string, bool) { if b == nil || b.Url == nil { return "", false } return *b.Url, true } // HasUrl returns a boolean if a field has been set. func (b *Board) HasUrl() bool { if b != nil && b.Url != nil { return true } return false } // SetUrl allocates a new b.Url and returns the pointer to it. func (b *Board) SetUrl(v string) { b.Url = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (b *BoardWidget) GetId() int { if b == nil || b.Id == nil { return 0 } return *b.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *BoardWidget) GetIdOk() (int, bool) { if b == nil || b.Id == nil { return 0, false } return *b.Id, true } // HasId returns a boolean if a field has been set. func (b *BoardWidget) HasId() bool { if b != nil && b.Id != nil { return true } return false } // SetId allocates a new b.Id and returns the pointer to it. func (b *BoardWidget) SetId(v int) { b.Id = &v } // GetLayout returns the Layout field if non-nil, zero value otherwise. func (b *BoardWidget) GetLayout() WidgetLayout { if b == nil || b.Layout == nil { return WidgetLayout{} } return *b.Layout } // GetLayoutOk returns a tuple with the Layout field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (b *BoardWidget) GetLayoutOk() (WidgetLayout, bool) { if b == nil || b.Layout == nil { return WidgetLayout{}, false } return *b.Layout, true } // HasLayout returns a boolean if a field has been set. func (b *BoardWidget) HasLayout() bool { if b != nil && b.Layout != nil { return true } return false } // SetLayout allocates a new b.Layout and returns the pointer to it. func (b *BoardWidget) SetLayout(v WidgetLayout) { b.Layout = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (c *ChangeDefinition) GetTime() WidgetTime { if c == nil || c.Time == nil { return WidgetTime{} } return *c.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeDefinition) GetTimeOk() (WidgetTime, bool) { if c == nil || c.Time == nil { return WidgetTime{}, false } return *c.Time, true } // HasTime returns a boolean if a field has been set. func (c *ChangeDefinition) HasTime() bool { if c != nil && c.Time != nil { return true } return false } // SetTime allocates a new c.Time and returns the pointer to it. func (c *ChangeDefinition) SetTime(v WidgetTime) { c.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (c *ChangeDefinition) GetTitle() string { if c == nil || c.Title == nil { return "" } return *c.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeDefinition) GetTitleOk() (string, bool) { if c == nil || c.Title == nil { return "", false } return *c.Title, true } // HasTitle returns a boolean if a field has been set. func (c *ChangeDefinition) HasTitle() bool { if c != nil && c.Title != nil { return true } return false } // SetTitle allocates a new c.Title and returns the pointer to it. func (c *ChangeDefinition) SetTitle(v string) { c.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (c *ChangeDefinition) GetTitleAlign() string { if c == nil || c.TitleAlign == nil { return "" } return *c.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeDefinition) GetTitleAlignOk() (string, bool) { if c == nil || c.TitleAlign == nil { return "", false } return *c.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (c *ChangeDefinition) HasTitleAlign() bool { if c != nil && c.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new c.TitleAlign and returns the pointer to it. func (c *ChangeDefinition) SetTitleAlign(v string) { c.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (c *ChangeDefinition) GetTitleSize() string { if c == nil || c.TitleSize == nil { return "" } return *c.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeDefinition) GetTitleSizeOk() (string, bool) { if c == nil || c.TitleSize == nil { return "", false } return *c.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (c *ChangeDefinition) HasTitleSize() bool { if c != nil && c.TitleSize != nil { return true } return false } // SetTitleSize allocates a new c.TitleSize and returns the pointer to it. func (c *ChangeDefinition) SetTitleSize(v string) { c.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (c *ChangeDefinition) GetType() string { if c == nil || c.Type == nil { return "" } return *c.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeDefinition) GetTypeOk() (string, bool) { if c == nil || c.Type == nil { return "", false } return *c.Type, true } // HasType returns a boolean if a field has been set. func (c *ChangeDefinition) HasType() bool { if c != nil && c.Type != nil { return true } return false } // SetType allocates a new c.Type and returns the pointer to it. func (c *ChangeDefinition) SetType(v string) { c.Type = &v } // GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise. func (c *ChangeRequest) GetApmQuery() WidgetApmOrLogQuery { if c == nil || c.ApmQuery == nil { return WidgetApmOrLogQuery{} } return *c.ApmQuery } // GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) { if c == nil || c.ApmQuery == nil { return WidgetApmOrLogQuery{}, false } return *c.ApmQuery, true } // HasApmQuery returns a boolean if a field has been set. func (c *ChangeRequest) HasApmQuery() bool { if c != nil && c.ApmQuery != nil { return true } return false } // SetApmQuery allocates a new c.ApmQuery and returns the pointer to it. func (c *ChangeRequest) SetApmQuery(v WidgetApmOrLogQuery) { c.ApmQuery = &v } // GetChangeType returns the ChangeType field if non-nil, zero value otherwise. func (c *ChangeRequest) GetChangeType() string { if c == nil || c.ChangeType == nil { return "" } return *c.ChangeType } // GetChangeTypeOk returns a tuple with the ChangeType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeRequest) GetChangeTypeOk() (string, bool) { if c == nil || c.ChangeType == nil { return "", false } return *c.ChangeType, true } // HasChangeType returns a boolean if a field has been set. func (c *ChangeRequest) HasChangeType() bool { if c != nil && c.ChangeType != nil { return true } return false } // SetChangeType allocates a new c.ChangeType and returns the pointer to it. func (c *ChangeRequest) SetChangeType(v string) { c.ChangeType = &v } // GetCompareTo returns the CompareTo field if non-nil, zero value otherwise. func (c *ChangeRequest) GetCompareTo() string { if c == nil || c.CompareTo == nil { return "" } return *c.CompareTo } // GetCompareToOk returns a tuple with the CompareTo field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeRequest) GetCompareToOk() (string, bool) { if c == nil || c.CompareTo == nil { return "", false } return *c.CompareTo, true } // HasCompareTo returns a boolean if a field has been set. func (c *ChangeRequest) HasCompareTo() bool { if c != nil && c.CompareTo != nil { return true } return false } // SetCompareTo allocates a new c.CompareTo and returns the pointer to it. func (c *ChangeRequest) SetCompareTo(v string) { c.CompareTo = &v } // GetIncreaseGood returns the IncreaseGood field if non-nil, zero value otherwise. func (c *ChangeRequest) GetIncreaseGood() bool { if c == nil || c.IncreaseGood == nil { return false } return *c.IncreaseGood } // GetIncreaseGoodOk returns a tuple with the IncreaseGood field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeRequest) GetIncreaseGoodOk() (bool, bool) { if c == nil || c.IncreaseGood == nil { return false, false } return *c.IncreaseGood, true } // HasIncreaseGood returns a boolean if a field has been set. func (c *ChangeRequest) HasIncreaseGood() bool { if c != nil && c.IncreaseGood != nil { return true } return false } // SetIncreaseGood allocates a new c.IncreaseGood and returns the pointer to it. func (c *ChangeRequest) SetIncreaseGood(v bool) { c.IncreaseGood = &v } // GetLogQuery returns the LogQuery field if non-nil, zero value otherwise. func (c *ChangeRequest) GetLogQuery() WidgetApmOrLogQuery { if c == nil || c.LogQuery == nil { return WidgetApmOrLogQuery{} } return *c.LogQuery } // GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) { if c == nil || c.LogQuery == nil { return WidgetApmOrLogQuery{}, false } return *c.LogQuery, true } // HasLogQuery returns a boolean if a field has been set. func (c *ChangeRequest) HasLogQuery() bool { if c != nil && c.LogQuery != nil { return true } return false } // SetLogQuery allocates a new c.LogQuery and returns the pointer to it. func (c *ChangeRequest) SetLogQuery(v WidgetApmOrLogQuery) { c.LogQuery = &v } // GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise. func (c *ChangeRequest) GetMetricQuery() string { if c == nil || c.MetricQuery == nil { return "" } return *c.MetricQuery } // GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeRequest) GetMetricQueryOk() (string, bool) { if c == nil || c.MetricQuery == nil { return "", false } return *c.MetricQuery, true } // HasMetricQuery returns a boolean if a field has been set. func (c *ChangeRequest) HasMetricQuery() bool { if c != nil && c.MetricQuery != nil { return true } return false } // SetMetricQuery allocates a new c.MetricQuery and returns the pointer to it. func (c *ChangeRequest) SetMetricQuery(v string) { c.MetricQuery = &v } // GetOrderBy returns the OrderBy field if non-nil, zero value otherwise. func (c *ChangeRequest) GetOrderBy() string { if c == nil || c.OrderBy == nil { return "" } return *c.OrderBy } // GetOrderByOk returns a tuple with the OrderBy field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeRequest) GetOrderByOk() (string, bool) { if c == nil || c.OrderBy == nil { return "", false } return *c.OrderBy, true } // HasOrderBy returns a boolean if a field has been set. func (c *ChangeRequest) HasOrderBy() bool { if c != nil && c.OrderBy != nil { return true } return false } // SetOrderBy allocates a new c.OrderBy and returns the pointer to it. func (c *ChangeRequest) SetOrderBy(v string) { c.OrderBy = &v } // GetOrderDir returns the OrderDir field if non-nil, zero value otherwise. func (c *ChangeRequest) GetOrderDir() string { if c == nil || c.OrderDir == nil { return "" } return *c.OrderDir } // GetOrderDirOk returns a tuple with the OrderDir field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeRequest) GetOrderDirOk() (string, bool) { if c == nil || c.OrderDir == nil { return "", false } return *c.OrderDir, true } // HasOrderDir returns a boolean if a field has been set. func (c *ChangeRequest) HasOrderDir() bool { if c != nil && c.OrderDir != nil { return true } return false } // SetOrderDir allocates a new c.OrderDir and returns the pointer to it. func (c *ChangeRequest) SetOrderDir(v string) { c.OrderDir = &v } // GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise. func (c *ChangeRequest) GetProcessQuery() WidgetProcessQuery { if c == nil || c.ProcessQuery == nil { return WidgetProcessQuery{} } return *c.ProcessQuery } // GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) { if c == nil || c.ProcessQuery == nil { return WidgetProcessQuery{}, false } return *c.ProcessQuery, true } // HasProcessQuery returns a boolean if a field has been set. func (c *ChangeRequest) HasProcessQuery() bool { if c != nil && c.ProcessQuery != nil { return true } return false } // SetProcessQuery allocates a new c.ProcessQuery and returns the pointer to it. func (c *ChangeRequest) SetProcessQuery(v WidgetProcessQuery) { c.ProcessQuery = &v } // GetShowPresent returns the ShowPresent field if non-nil, zero value otherwise. func (c *ChangeRequest) GetShowPresent() bool { if c == nil || c.ShowPresent == nil { return false } return *c.ShowPresent } // GetShowPresentOk returns a tuple with the ShowPresent field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChangeRequest) GetShowPresentOk() (bool, bool) { if c == nil || c.ShowPresent == nil { return false, false } return *c.ShowPresent, true } // HasShowPresent returns a boolean if a field has been set. func (c *ChangeRequest) HasShowPresent() bool { if c != nil && c.ShowPresent != nil { return true } return false } // SetShowPresent allocates a new c.ShowPresent and returns the pointer to it. func (c *ChangeRequest) SetShowPresent(v bool) { c.ShowPresent = &v } // GetAccount returns the Account field if non-nil, zero value otherwise. func (c *ChannelSlackRequest) GetAccount() string { if c == nil || c.Account == nil { return "" } return *c.Account } // GetAccountOk returns a tuple with the Account field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChannelSlackRequest) GetAccountOk() (string, bool) { if c == nil || c.Account == nil { return "", false } return *c.Account, true } // HasAccount returns a boolean if a field has been set. func (c *ChannelSlackRequest) HasAccount() bool { if c != nil && c.Account != nil { return true } return false } // SetAccount allocates a new c.Account and returns the pointer to it. func (c *ChannelSlackRequest) SetAccount(v string) { c.Account = &v } // GetChannelName returns the ChannelName field if non-nil, zero value otherwise. func (c *ChannelSlackRequest) GetChannelName() string { if c == nil || c.ChannelName == nil { return "" } return *c.ChannelName } // GetChannelNameOk returns a tuple with the ChannelName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChannelSlackRequest) GetChannelNameOk() (string, bool) { if c == nil || c.ChannelName == nil { return "", false } return *c.ChannelName, true } // HasChannelName returns a boolean if a field has been set. func (c *ChannelSlackRequest) HasChannelName() bool { if c != nil && c.ChannelName != nil { return true } return false } // SetChannelName allocates a new c.ChannelName and returns the pointer to it. func (c *ChannelSlackRequest) SetChannelName(v string) { c.ChannelName = &v } // GetTransferAllUserComments returns the TransferAllUserComments field if non-nil, zero value otherwise. func (c *ChannelSlackRequest) GetTransferAllUserComments() bool { if c == nil || c.TransferAllUserComments == nil { return false } return *c.TransferAllUserComments } // GetTransferAllUserCommentsOk returns a tuple with the TransferAllUserComments field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ChannelSlackRequest) GetTransferAllUserCommentsOk() (bool, bool) { if c == nil || c.TransferAllUserComments == nil { return false, false } return *c.TransferAllUserComments, true } // HasTransferAllUserComments returns a boolean if a field has been set. func (c *ChannelSlackRequest) HasTransferAllUserComments() bool { if c != nil && c.TransferAllUserComments != nil { return true } return false } // SetTransferAllUserComments allocates a new c.TransferAllUserComments and returns the pointer to it. func (c *ChannelSlackRequest) SetTransferAllUserComments(v bool) { c.TransferAllUserComments = &v } // GetCheck returns the Check field if non-nil, zero value otherwise. func (c *Check) GetCheck() string { if c == nil || c.Check == nil { return "" } return *c.Check } // GetCheckOk returns a tuple with the Check field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Check) GetCheckOk() (string, bool) { if c == nil || c.Check == nil { return "", false } return *c.Check, true } // HasCheck returns a boolean if a field has been set. func (c *Check) HasCheck() bool { if c != nil && c.Check != nil { return true } return false } // SetCheck allocates a new c.Check and returns the pointer to it. func (c *Check) SetCheck(v string) { c.Check = &v } // GetHostName returns the HostName field if non-nil, zero value otherwise. func (c *Check) GetHostName() string { if c == nil || c.HostName == nil { return "" } return *c.HostName } // GetHostNameOk returns a tuple with the HostName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Check) GetHostNameOk() (string, bool) { if c == nil || c.HostName == nil { return "", false } return *c.HostName, true } // HasHostName returns a boolean if a field has been set. func (c *Check) HasHostName() bool { if c != nil && c.HostName != nil { return true } return false } // SetHostName allocates a new c.HostName and returns the pointer to it. func (c *Check) SetHostName(v string) { c.HostName = &v } // GetMessage returns the Message field if non-nil, zero value otherwise. func (c *Check) GetMessage() string { if c == nil || c.Message == nil { return "" } return *c.Message } // GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Check) GetMessageOk() (string, bool) { if c == nil || c.Message == nil { return "", false } return *c.Message, true } // HasMessage returns a boolean if a field has been set. func (c *Check) HasMessage() bool { if c != nil && c.Message != nil { return true } return false } // SetMessage allocates a new c.Message and returns the pointer to it. func (c *Check) SetMessage(v string) { c.Message = &v } // GetStatus returns the Status field if non-nil, zero value otherwise. func (c *Check) GetStatus() Status { if c == nil || c.Status == nil { return 0 } return *c.Status } // GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Check) GetStatusOk() (Status, bool) { if c == nil || c.Status == nil { return 0, false } return *c.Status, true } // HasStatus returns a boolean if a field has been set. func (c *Check) HasStatus() bool { if c != nil && c.Status != nil { return true } return false } // SetStatus allocates a new c.Status and returns the pointer to it. func (c *Check) SetStatus(v Status) { c.Status = &v } // GetTimestamp returns the Timestamp field if non-nil, zero value otherwise. func (c *Check) GetTimestamp() string { if c == nil || c.Timestamp == nil { return "" } return *c.Timestamp } // GetTimestampOk returns a tuple with the Timestamp field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Check) GetTimestampOk() (string, bool) { if c == nil || c.Timestamp == nil { return "", false } return *c.Timestamp, true } // HasTimestamp returns a boolean if a field has been set. func (c *Check) HasTimestamp() bool { if c != nil && c.Timestamp != nil { return true } return false } // SetTimestamp allocates a new c.Timestamp and returns the pointer to it. func (c *Check) SetTimestamp(v string) { c.Timestamp = &v } // GetCheck returns the Check field if non-nil, zero value otherwise. func (c *CheckStatusDefinition) GetCheck() string { if c == nil || c.Check == nil { return "" } return *c.Check } // GetCheckOk returns a tuple with the Check field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CheckStatusDefinition) GetCheckOk() (string, bool) { if c == nil || c.Check == nil { return "", false } return *c.Check, true } // HasCheck returns a boolean if a field has been set. func (c *CheckStatusDefinition) HasCheck() bool { if c != nil && c.Check != nil { return true } return false } // SetCheck allocates a new c.Check and returns the pointer to it. func (c *CheckStatusDefinition) SetCheck(v string) { c.Check = &v } // GetGroup returns the Group field if non-nil, zero value otherwise. func (c *CheckStatusDefinition) GetGroup() string { if c == nil || c.Group == nil { return "" } return *c.Group } // GetGroupOk returns a tuple with the Group field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CheckStatusDefinition) GetGroupOk() (string, bool) { if c == nil || c.Group == nil { return "", false } return *c.Group, true } // HasGroup returns a boolean if a field has been set. func (c *CheckStatusDefinition) HasGroup() bool { if c != nil && c.Group != nil { return true } return false } // SetGroup allocates a new c.Group and returns the pointer to it. func (c *CheckStatusDefinition) SetGroup(v string) { c.Group = &v } // GetGrouping returns the Grouping field if non-nil, zero value otherwise. func (c *CheckStatusDefinition) GetGrouping() string { if c == nil || c.Grouping == nil { return "" } return *c.Grouping } // GetGroupingOk returns a tuple with the Grouping field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CheckStatusDefinition) GetGroupingOk() (string, bool) { if c == nil || c.Grouping == nil { return "", false } return *c.Grouping, true } // HasGrouping returns a boolean if a field has been set. func (c *CheckStatusDefinition) HasGrouping() bool { if c != nil && c.Grouping != nil { return true } return false } // SetGrouping allocates a new c.Grouping and returns the pointer to it. func (c *CheckStatusDefinition) SetGrouping(v string) { c.Grouping = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (c *CheckStatusDefinition) GetTime() WidgetTime { if c == nil || c.Time == nil { return WidgetTime{} } return *c.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CheckStatusDefinition) GetTimeOk() (WidgetTime, bool) { if c == nil || c.Time == nil { return WidgetTime{}, false } return *c.Time, true } // HasTime returns a boolean if a field has been set. func (c *CheckStatusDefinition) HasTime() bool { if c != nil && c.Time != nil { return true } return false } // SetTime allocates a new c.Time and returns the pointer to it. func (c *CheckStatusDefinition) SetTime(v WidgetTime) { c.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (c *CheckStatusDefinition) GetTitle() string { if c == nil || c.Title == nil { return "" } return *c.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CheckStatusDefinition) GetTitleOk() (string, bool) { if c == nil || c.Title == nil { return "", false } return *c.Title, true } // HasTitle returns a boolean if a field has been set. func (c *CheckStatusDefinition) HasTitle() bool { if c != nil && c.Title != nil { return true } return false } // SetTitle allocates a new c.Title and returns the pointer to it. func (c *CheckStatusDefinition) SetTitle(v string) { c.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (c *CheckStatusDefinition) GetTitleAlign() string { if c == nil || c.TitleAlign == nil { return "" } return *c.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CheckStatusDefinition) GetTitleAlignOk() (string, bool) { if c == nil || c.TitleAlign == nil { return "", false } return *c.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (c *CheckStatusDefinition) HasTitleAlign() bool { if c != nil && c.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new c.TitleAlign and returns the pointer to it. func (c *CheckStatusDefinition) SetTitleAlign(v string) { c.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (c *CheckStatusDefinition) GetTitleSize() string { if c == nil || c.TitleSize == nil { return "" } return *c.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CheckStatusDefinition) GetTitleSizeOk() (string, bool) { if c == nil || c.TitleSize == nil { return "", false } return *c.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (c *CheckStatusDefinition) HasTitleSize() bool { if c != nil && c.TitleSize != nil { return true } return false } // SetTitleSize allocates a new c.TitleSize and returns the pointer to it. func (c *CheckStatusDefinition) SetTitleSize(v string) { c.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (c *CheckStatusDefinition) GetType() string { if c == nil || c.Type == nil { return "" } return *c.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CheckStatusDefinition) GetTypeOk() (string, bool) { if c == nil || c.Type == nil { return "", false } return *c.Type, true } // HasType returns a boolean if a field has been set. func (c *CheckStatusDefinition) HasType() bool { if c != nil && c.Type != nil { return true } return false } // SetType allocates a new c.Type and returns the pointer to it. func (c *CheckStatusDefinition) SetType(v string) { c.Type = &v } // GetHandle returns the Handle field if non-nil, zero value otherwise. func (c *Comment) GetHandle() string { if c == nil || c.Handle == nil { return "" } return *c.Handle } // GetHandleOk returns a tuple with the Handle field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Comment) GetHandleOk() (string, bool) { if c == nil || c.Handle == nil { return "", false } return *c.Handle, true } // HasHandle returns a boolean if a field has been set. func (c *Comment) HasHandle() bool { if c != nil && c.Handle != nil { return true } return false } // SetHandle allocates a new c.Handle and returns the pointer to it. func (c *Comment) SetHandle(v string) { c.Handle = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (c *Comment) GetId() int { if c == nil || c.Id == nil { return 0 } return *c.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Comment) GetIdOk() (int, bool) { if c == nil || c.Id == nil { return 0, false } return *c.Id, true } // HasId returns a boolean if a field has been set. func (c *Comment) HasId() bool { if c != nil && c.Id != nil { return true } return false } // SetId allocates a new c.Id and returns the pointer to it. func (c *Comment) SetId(v int) { c.Id = &v } // GetMessage returns the Message field if non-nil, zero value otherwise. func (c *Comment) GetMessage() string { if c == nil || c.Message == nil { return "" } return *c.Message } // GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Comment) GetMessageOk() (string, bool) { if c == nil || c.Message == nil { return "", false } return *c.Message, true } // HasMessage returns a boolean if a field has been set. func (c *Comment) HasMessage() bool { if c != nil && c.Message != nil { return true } return false } // SetMessage allocates a new c.Message and returns the pointer to it. func (c *Comment) SetMessage(v string) { c.Message = &v } // GetRelatedId returns the RelatedId field if non-nil, zero value otherwise. func (c *Comment) GetRelatedId() int { if c == nil || c.RelatedId == nil { return 0 } return *c.RelatedId } // GetRelatedIdOk returns a tuple with the RelatedId field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Comment) GetRelatedIdOk() (int, bool) { if c == nil || c.RelatedId == nil { return 0, false } return *c.RelatedId, true } // HasRelatedId returns a boolean if a field has been set. func (c *Comment) HasRelatedId() bool { if c != nil && c.RelatedId != nil { return true } return false } // SetRelatedId allocates a new c.RelatedId and returns the pointer to it. func (c *Comment) SetRelatedId(v int) { c.RelatedId = &v } // GetResource returns the Resource field if non-nil, zero value otherwise. func (c *Comment) GetResource() string { if c == nil || c.Resource == nil { return "" } return *c.Resource } // GetResourceOk returns a tuple with the Resource field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Comment) GetResourceOk() (string, bool) { if c == nil || c.Resource == nil { return "", false } return *c.Resource, true } // HasResource returns a boolean if a field has been set. func (c *Comment) HasResource() bool { if c != nil && c.Resource != nil { return true } return false } // SetResource allocates a new c.Resource and returns the pointer to it. func (c *Comment) SetResource(v string) { c.Resource = &v } // GetUrl returns the Url field if non-nil, zero value otherwise. func (c *Comment) GetUrl() string { if c == nil || c.Url == nil { return "" } return *c.Url } // GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Comment) GetUrlOk() (string, bool) { if c == nil || c.Url == nil { return "", false } return *c.Url, true } // HasUrl returns a boolean if a field has been set. func (c *Comment) HasUrl() bool { if c != nil && c.Url != nil { return true } return false } // SetUrl allocates a new c.Url and returns the pointer to it. func (c *Comment) SetUrl(v string) { c.Url = &v } // GetColor returns the Color field if non-nil, zero value otherwise. func (c *ConditionalFormat) GetColor() string { if c == nil || c.Color == nil { return "" } return *c.Color } // GetColorOk returns a tuple with the Color field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ConditionalFormat) GetColorOk() (string, bool) { if c == nil || c.Color == nil { return "", false } return *c.Color, true } // HasColor returns a boolean if a field has been set. func (c *ConditionalFormat) HasColor() bool { if c != nil && c.Color != nil { return true } return false } // SetColor allocates a new c.Color and returns the pointer to it. func (c *ConditionalFormat) SetColor(v string) { c.Color = &v } // GetComparator returns the Comparator field if non-nil, zero value otherwise. func (c *ConditionalFormat) GetComparator() string { if c == nil || c.Comparator == nil { return "" } return *c.Comparator } // GetComparatorOk returns a tuple with the Comparator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ConditionalFormat) GetComparatorOk() (string, bool) { if c == nil || c.Comparator == nil { return "", false } return *c.Comparator, true } // HasComparator returns a boolean if a field has been set. func (c *ConditionalFormat) HasComparator() bool { if c != nil && c.Comparator != nil { return true } return false } // SetComparator allocates a new c.Comparator and returns the pointer to it. func (c *ConditionalFormat) SetComparator(v string) { c.Comparator = &v } // GetCustomBgColor returns the CustomBgColor field if non-nil, zero value otherwise. func (c *ConditionalFormat) GetCustomBgColor() string { if c == nil || c.CustomBgColor == nil { return "" } return *c.CustomBgColor } // GetCustomBgColorOk returns a tuple with the CustomBgColor field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ConditionalFormat) GetCustomBgColorOk() (string, bool) { if c == nil || c.CustomBgColor == nil { return "", false } return *c.CustomBgColor, true } // HasCustomBgColor returns a boolean if a field has been set. func (c *ConditionalFormat) HasCustomBgColor() bool { if c != nil && c.CustomBgColor != nil { return true } return false } // SetCustomBgColor allocates a new c.CustomBgColor and returns the pointer to it. func (c *ConditionalFormat) SetCustomBgColor(v string) { c.CustomBgColor = &v } // GetImageURL returns the ImageURL field if non-nil, zero value otherwise. func (c *ConditionalFormat) GetImageURL() string { if c == nil || c.ImageURL == nil { return "" } return *c.ImageURL } // GetImageURLOk returns a tuple with the ImageURL field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ConditionalFormat) GetImageURLOk() (string, bool) { if c == nil || c.ImageURL == nil { return "", false } return *c.ImageURL, true } // HasImageURL returns a boolean if a field has been set. func (c *ConditionalFormat) HasImageURL() bool { if c != nil && c.ImageURL != nil { return true } return false } // SetImageURL allocates a new c.ImageURL and returns the pointer to it. func (c *ConditionalFormat) SetImageURL(v string) { c.ImageURL = &v } // GetInvert returns the Invert field if non-nil, zero value otherwise. func (c *ConditionalFormat) GetInvert() bool { if c == nil || c.Invert == nil { return false } return *c.Invert } // GetInvertOk returns a tuple with the Invert field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ConditionalFormat) GetInvertOk() (bool, bool) { if c == nil || c.Invert == nil { return false, false } return *c.Invert, true } // HasInvert returns a boolean if a field has been set. func (c *ConditionalFormat) HasInvert() bool { if c != nil && c.Invert != nil { return true } return false } // SetInvert allocates a new c.Invert and returns the pointer to it. func (c *ConditionalFormat) SetInvert(v bool) { c.Invert = &v } // GetPalette returns the Palette field if non-nil, zero value otherwise. func (c *ConditionalFormat) GetPalette() string { if c == nil || c.Palette == nil { return "" } return *c.Palette } // GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ConditionalFormat) GetPaletteOk() (string, bool) { if c == nil || c.Palette == nil { return "", false } return *c.Palette, true } // HasPalette returns a boolean if a field has been set. func (c *ConditionalFormat) HasPalette() bool { if c != nil && c.Palette != nil { return true } return false } // SetPalette allocates a new c.Palette and returns the pointer to it. func (c *ConditionalFormat) SetPalette(v string) { c.Palette = &v } // GetValue returns the Value field if non-nil, zero value otherwise. func (c *ConditionalFormat) GetValue() string { if c == nil || c.Value == nil { return "" } return *c.Value } // GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *ConditionalFormat) GetValueOk() (string, bool) { if c == nil || c.Value == nil { return "", false } return *c.Value, true } // HasValue returns a boolean if a field has been set. func (c *ConditionalFormat) HasValue() bool { if c != nil && c.Value != nil { return true } return false } // SetValue allocates a new c.Value and returns the pointer to it. func (c *ConditionalFormat) SetValue(v string) { c.Value = &v } // GetAccessRole returns the AccessRole field if non-nil, zero value otherwise. func (c *CreatedBy) GetAccessRole() string { if c == nil || c.AccessRole == nil { return "" } return *c.AccessRole } // GetAccessRoleOk returns a tuple with the AccessRole field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CreatedBy) GetAccessRoleOk() (string, bool) { if c == nil || c.AccessRole == nil { return "", false } return *c.AccessRole, true } // HasAccessRole returns a boolean if a field has been set. func (c *CreatedBy) HasAccessRole() bool { if c != nil && c.AccessRole != nil { return true } return false } // SetAccessRole allocates a new c.AccessRole and returns the pointer to it. func (c *CreatedBy) SetAccessRole(v string) { c.AccessRole = &v } // GetDisabled returns the Disabled field if non-nil, zero value otherwise. func (c *CreatedBy) GetDisabled() bool { if c == nil || c.Disabled == nil { return false } return *c.Disabled } // GetDisabledOk returns a tuple with the Disabled field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CreatedBy) GetDisabledOk() (bool, bool) { if c == nil || c.Disabled == nil { return false, false } return *c.Disabled, true } // HasDisabled returns a boolean if a field has been set. func (c *CreatedBy) HasDisabled() bool { if c != nil && c.Disabled != nil { return true } return false } // SetDisabled allocates a new c.Disabled and returns the pointer to it. func (c *CreatedBy) SetDisabled(v bool) { c.Disabled = &v } // GetEmail returns the Email field if non-nil, zero value otherwise. func (c *CreatedBy) GetEmail() string { if c == nil || c.Email == nil { return "" } return *c.Email } // GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CreatedBy) GetEmailOk() (string, bool) { if c == nil || c.Email == nil { return "", false } return *c.Email, true } // HasEmail returns a boolean if a field has been set. func (c *CreatedBy) HasEmail() bool { if c != nil && c.Email != nil { return true } return false } // SetEmail allocates a new c.Email and returns the pointer to it. func (c *CreatedBy) SetEmail(v string) { c.Email = &v } // GetHandle returns the Handle field if non-nil, zero value otherwise. func (c *CreatedBy) GetHandle() string { if c == nil || c.Handle == nil { return "" } return *c.Handle } // GetHandleOk returns a tuple with the Handle field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CreatedBy) GetHandleOk() (string, bool) { if c == nil || c.Handle == nil { return "", false } return *c.Handle, true } // HasHandle returns a boolean if a field has been set. func (c *CreatedBy) HasHandle() bool { if c != nil && c.Handle != nil { return true } return false } // SetHandle allocates a new c.Handle and returns the pointer to it. func (c *CreatedBy) SetHandle(v string) { c.Handle = &v } // GetIcon returns the Icon field if non-nil, zero value otherwise. func (c *CreatedBy) GetIcon() string { if c == nil || c.Icon == nil { return "" } return *c.Icon } // GetIconOk returns a tuple with the Icon field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CreatedBy) GetIconOk() (string, bool) { if c == nil || c.Icon == nil { return "", false } return *c.Icon, true } // HasIcon returns a boolean if a field has been set. func (c *CreatedBy) HasIcon() bool { if c != nil && c.Icon != nil { return true } return false } // SetIcon allocates a new c.Icon and returns the pointer to it. func (c *CreatedBy) SetIcon(v string) { c.Icon = &v } // GetIsAdmin returns the IsAdmin field if non-nil, zero value otherwise. func (c *CreatedBy) GetIsAdmin() bool { if c == nil || c.IsAdmin == nil { return false } return *c.IsAdmin } // GetIsAdminOk returns a tuple with the IsAdmin field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CreatedBy) GetIsAdminOk() (bool, bool) { if c == nil || c.IsAdmin == nil { return false, false } return *c.IsAdmin, true } // HasIsAdmin returns a boolean if a field has been set. func (c *CreatedBy) HasIsAdmin() bool { if c != nil && c.IsAdmin != nil { return true } return false } // SetIsAdmin allocates a new c.IsAdmin and returns the pointer to it. func (c *CreatedBy) SetIsAdmin(v bool) { c.IsAdmin = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (c *CreatedBy) GetName() string { if c == nil || c.Name == nil { return "" } return *c.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CreatedBy) GetNameOk() (string, bool) { if c == nil || c.Name == nil { return "", false } return *c.Name, true } // HasName returns a boolean if a field has been set. func (c *CreatedBy) HasName() bool { if c != nil && c.Name != nil { return true } return false } // SetName allocates a new c.Name and returns the pointer to it. func (c *CreatedBy) SetName(v string) { c.Name = &v } // GetRole returns the Role field if non-nil, zero value otherwise. func (c *CreatedBy) GetRole() string { if c == nil || c.Role == nil { return "" } return *c.Role } // GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CreatedBy) GetRoleOk() (string, bool) { if c == nil || c.Role == nil { return "", false } return *c.Role, true } // HasRole returns a boolean if a field has been set. func (c *CreatedBy) HasRole() bool { if c != nil && c.Role != nil { return true } return false } // SetRole allocates a new c.Role and returns the pointer to it. func (c *CreatedBy) SetRole(v string) { c.Role = &v } // GetVerified returns the Verified field if non-nil, zero value otherwise. func (c *CreatedBy) GetVerified() bool { if c == nil || c.Verified == nil { return false } return *c.Verified } // GetVerifiedOk returns a tuple with the Verified field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *CreatedBy) GetVerifiedOk() (bool, bool) { if c == nil || c.Verified == nil { return false, false } return *c.Verified, true } // HasVerified returns a boolean if a field has been set. func (c *CreatedBy) HasVerified() bool { if c != nil && c.Verified != nil { return true } return false } // SetVerified allocates a new c.Verified and returns the pointer to it. func (c *CreatedBy) SetVerified(v bool) { c.Verified = &v } // GetEmail returns the Email field if non-nil, zero value otherwise. func (c *Creator) GetEmail() string { if c == nil || c.Email == nil { return "" } return *c.Email } // GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Creator) GetEmailOk() (string, bool) { if c == nil || c.Email == nil { return "", false } return *c.Email, true } // HasEmail returns a boolean if a field has been set. func (c *Creator) HasEmail() bool { if c != nil && c.Email != nil { return true } return false } // SetEmail allocates a new c.Email and returns the pointer to it. func (c *Creator) SetEmail(v string) { c.Email = &v } // GetHandle returns the Handle field if non-nil, zero value otherwise. func (c *Creator) GetHandle() string { if c == nil || c.Handle == nil { return "" } return *c.Handle } // GetHandleOk returns a tuple with the Handle field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Creator) GetHandleOk() (string, bool) { if c == nil || c.Handle == nil { return "", false } return *c.Handle, true } // HasHandle returns a boolean if a field has been set. func (c *Creator) HasHandle() bool { if c != nil && c.Handle != nil { return true } return false } // SetHandle allocates a new c.Handle and returns the pointer to it. func (c *Creator) SetHandle(v string) { c.Handle = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (c *Creator) GetId() int { if c == nil || c.Id == nil { return 0 } return *c.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Creator) GetIdOk() (int, bool) { if c == nil || c.Id == nil { return 0, false } return *c.Id, true } // HasId returns a boolean if a field has been set. func (c *Creator) HasId() bool { if c != nil && c.Id != nil { return true } return false } // SetId allocates a new c.Id and returns the pointer to it. func (c *Creator) SetId(v int) { c.Id = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (c *Creator) GetName() string { if c == nil || c.Name == nil { return "" } return *c.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (c *Creator) GetNameOk() (string, bool) { if c == nil || c.Name == nil { return "", false } return *c.Name, true } // HasName returns a boolean if a field has been set. func (c *Creator) HasName() bool { if c != nil && c.Name != nil { return true } return false } // SetName allocates a new c.Name and returns the pointer to it. func (c *Creator) SetName(v string) { c.Name = &v } // GetDescription returns the Description field if non-nil, zero value otherwise. func (d *Dashboard) GetDescription() string { if d == nil || d.Description == nil { return "" } return *d.Description } // GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Dashboard) GetDescriptionOk() (string, bool) { if d == nil || d.Description == nil { return "", false } return *d.Description, true } // HasDescription returns a boolean if a field has been set. func (d *Dashboard) HasDescription() bool { if d != nil && d.Description != nil { return true } return false } // SetDescription allocates a new d.Description and returns the pointer to it. func (d *Dashboard) SetDescription(v string) { d.Description = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (d *Dashboard) GetId() int { if d == nil || d.Id == nil { return 0 } return *d.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Dashboard) GetIdOk() (int, bool) { if d == nil || d.Id == nil { return 0, false } return *d.Id, true } // HasId returns a boolean if a field has been set. func (d *Dashboard) HasId() bool { if d != nil && d.Id != nil { return true } return false } // SetId allocates a new d.Id and returns the pointer to it. func (d *Dashboard) SetId(v int) { d.Id = &v } // GetNewId returns the NewId field if non-nil, zero value otherwise. func (d *Dashboard) GetNewId() string { if d == nil || d.NewId == nil { return "" } return *d.NewId } // GetNewIdOk returns a tuple with the NewId field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Dashboard) GetNewIdOk() (string, bool) { if d == nil || d.NewId == nil { return "", false } return *d.NewId, true } // HasNewId returns a boolean if a field has been set. func (d *Dashboard) HasNewId() bool { if d != nil && d.NewId != nil { return true } return false } // SetNewId allocates a new d.NewId and returns the pointer to it. func (d *Dashboard) SetNewId(v string) { d.NewId = &v } // GetReadOnly returns the ReadOnly field if non-nil, zero value otherwise. func (d *Dashboard) GetReadOnly() bool { if d == nil || d.ReadOnly == nil { return false } return *d.ReadOnly } // GetReadOnlyOk returns a tuple with the ReadOnly field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Dashboard) GetReadOnlyOk() (bool, bool) { if d == nil || d.ReadOnly == nil { return false, false } return *d.ReadOnly, true } // HasReadOnly returns a boolean if a field has been set. func (d *Dashboard) HasReadOnly() bool { if d != nil && d.ReadOnly != nil { return true } return false } // SetReadOnly allocates a new d.ReadOnly and returns the pointer to it. func (d *Dashboard) SetReadOnly(v bool) { d.ReadOnly = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (d *Dashboard) GetTitle() string { if d == nil || d.Title == nil { return "" } return *d.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Dashboard) GetTitleOk() (string, bool) { if d == nil || d.Title == nil { return "", false } return *d.Title, true } // HasTitle returns a boolean if a field has been set. func (d *Dashboard) HasTitle() bool { if d != nil && d.Title != nil { return true } return false } // SetTitle allocates a new d.Title and returns the pointer to it. func (d *Dashboard) SetTitle(v string) { d.Title = &v } // GetComparator returns the Comparator field if non-nil, zero value otherwise. func (d *DashboardConditionalFormat) GetComparator() string { if d == nil || d.Comparator == nil { return "" } return *d.Comparator } // GetComparatorOk returns a tuple with the Comparator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardConditionalFormat) GetComparatorOk() (string, bool) { if d == nil || d.Comparator == nil { return "", false } return *d.Comparator, true } // HasComparator returns a boolean if a field has been set. func (d *DashboardConditionalFormat) HasComparator() bool { if d != nil && d.Comparator != nil { return true } return false } // SetComparator allocates a new d.Comparator and returns the pointer to it. func (d *DashboardConditionalFormat) SetComparator(v string) { d.Comparator = &v } // GetCustomBgColor returns the CustomBgColor field if non-nil, zero value otherwise. func (d *DashboardConditionalFormat) GetCustomBgColor() string { if d == nil || d.CustomBgColor == nil { return "" } return *d.CustomBgColor } // GetCustomBgColorOk returns a tuple with the CustomBgColor field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardConditionalFormat) GetCustomBgColorOk() (string, bool) { if d == nil || d.CustomBgColor == nil { return "", false } return *d.CustomBgColor, true } // HasCustomBgColor returns a boolean if a field has been set. func (d *DashboardConditionalFormat) HasCustomBgColor() bool { if d != nil && d.CustomBgColor != nil { return true } return false } // SetCustomBgColor allocates a new d.CustomBgColor and returns the pointer to it. func (d *DashboardConditionalFormat) SetCustomBgColor(v string) { d.CustomBgColor = &v } // GetCustomFgColor returns the CustomFgColor field if non-nil, zero value otherwise. func (d *DashboardConditionalFormat) GetCustomFgColor() string { if d == nil || d.CustomFgColor == nil { return "" } return *d.CustomFgColor } // GetCustomFgColorOk returns a tuple with the CustomFgColor field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardConditionalFormat) GetCustomFgColorOk() (string, bool) { if d == nil || d.CustomFgColor == nil { return "", false } return *d.CustomFgColor, true } // HasCustomFgColor returns a boolean if a field has been set. func (d *DashboardConditionalFormat) HasCustomFgColor() bool { if d != nil && d.CustomFgColor != nil { return true } return false } // SetCustomFgColor allocates a new d.CustomFgColor and returns the pointer to it. func (d *DashboardConditionalFormat) SetCustomFgColor(v string) { d.CustomFgColor = &v } // GetCustomImageUrl returns the CustomImageUrl field if non-nil, zero value otherwise. func (d *DashboardConditionalFormat) GetCustomImageUrl() string { if d == nil || d.CustomImageUrl == nil { return "" } return *d.CustomImageUrl } // GetCustomImageUrlOk returns a tuple with the CustomImageUrl field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardConditionalFormat) GetCustomImageUrlOk() (string, bool) { if d == nil || d.CustomImageUrl == nil { return "", false } return *d.CustomImageUrl, true } // HasCustomImageUrl returns a boolean if a field has been set. func (d *DashboardConditionalFormat) HasCustomImageUrl() bool { if d != nil && d.CustomImageUrl != nil { return true } return false } // SetCustomImageUrl allocates a new d.CustomImageUrl and returns the pointer to it. func (d *DashboardConditionalFormat) SetCustomImageUrl(v string) { d.CustomImageUrl = &v } // GetInverted returns the Inverted field if non-nil, zero value otherwise. func (d *DashboardConditionalFormat) GetInverted() bool { if d == nil || d.Inverted == nil { return false } return *d.Inverted } // GetInvertedOk returns a tuple with the Inverted field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardConditionalFormat) GetInvertedOk() (bool, bool) { if d == nil || d.Inverted == nil { return false, false } return *d.Inverted, true } // HasInverted returns a boolean if a field has been set. func (d *DashboardConditionalFormat) HasInverted() bool { if d != nil && d.Inverted != nil { return true } return false } // SetInverted allocates a new d.Inverted and returns the pointer to it. func (d *DashboardConditionalFormat) SetInverted(v bool) { d.Inverted = &v } // GetPalette returns the Palette field if non-nil, zero value otherwise. func (d *DashboardConditionalFormat) GetPalette() string { if d == nil || d.Palette == nil { return "" } return *d.Palette } // GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardConditionalFormat) GetPaletteOk() (string, bool) { if d == nil || d.Palette == nil { return "", false } return *d.Palette, true } // HasPalette returns a boolean if a field has been set. func (d *DashboardConditionalFormat) HasPalette() bool { if d != nil && d.Palette != nil { return true } return false } // SetPalette allocates a new d.Palette and returns the pointer to it. func (d *DashboardConditionalFormat) SetPalette(v string) { d.Palette = &v } // GetValue returns the Value field if non-nil, zero value otherwise. func (d *DashboardConditionalFormat) GetValue() json.Number { if d == nil || d.Value == nil { return "" } return *d.Value } // GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardConditionalFormat) GetValueOk() (json.Number, bool) { if d == nil || d.Value == nil { return "", false } return *d.Value, true } // HasValue returns a boolean if a field has been set. func (d *DashboardConditionalFormat) HasValue() bool { if d != nil && d.Value != nil { return true } return false } // SetValue allocates a new d.Value and returns the pointer to it. func (d *DashboardConditionalFormat) SetValue(v json.Number) { d.Value = &v } // GetDashboardCount returns the DashboardCount field if non-nil, zero value otherwise. func (d *DashboardList) GetDashboardCount() int { if d == nil || d.DashboardCount == nil { return 0 } return *d.DashboardCount } // GetDashboardCountOk returns a tuple with the DashboardCount field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardList) GetDashboardCountOk() (int, bool) { if d == nil || d.DashboardCount == nil { return 0, false } return *d.DashboardCount, true } // HasDashboardCount returns a boolean if a field has been set. func (d *DashboardList) HasDashboardCount() bool { if d != nil && d.DashboardCount != nil { return true } return false } // SetDashboardCount allocates a new d.DashboardCount and returns the pointer to it. func (d *DashboardList) SetDashboardCount(v int) { d.DashboardCount = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (d *DashboardList) GetId() int { if d == nil || d.Id == nil { return 0 } return *d.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardList) GetIdOk() (int, bool) { if d == nil || d.Id == nil { return 0, false } return *d.Id, true } // HasId returns a boolean if a field has been set. func (d *DashboardList) HasId() bool { if d != nil && d.Id != nil { return true } return false } // SetId allocates a new d.Id and returns the pointer to it. func (d *DashboardList) SetId(v int) { d.Id = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (d *DashboardList) GetName() string { if d == nil || d.Name == nil { return "" } return *d.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardList) GetNameOk() (string, bool) { if d == nil || d.Name == nil { return "", false } return *d.Name, true } // HasName returns a boolean if a field has been set. func (d *DashboardList) HasName() bool { if d != nil && d.Name != nil { return true } return false } // SetName allocates a new d.Name and returns the pointer to it. func (d *DashboardList) SetName(v string) { d.Name = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (d *DashboardListItem) GetId() int { if d == nil || d.Id == nil { return 0 } return *d.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardListItem) GetIdOk() (int, bool) { if d == nil || d.Id == nil { return 0, false } return *d.Id, true } // HasId returns a boolean if a field has been set. func (d *DashboardListItem) HasId() bool { if d != nil && d.Id != nil { return true } return false } // SetId allocates a new d.Id and returns the pointer to it. func (d *DashboardListItem) SetId(v int) { d.Id = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (d *DashboardListItem) GetType() string { if d == nil || d.Type == nil { return "" } return *d.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardListItem) GetTypeOk() (string, bool) { if d == nil || d.Type == nil { return "", false } return *d.Type, true } // HasType returns a boolean if a field has been set. func (d *DashboardListItem) HasType() bool { if d != nil && d.Type != nil { return true } return false } // SetType allocates a new d.Type and returns the pointer to it. func (d *DashboardListItem) SetType(v string) { d.Type = &v } // GetCreated returns the Created field if non-nil, zero value otherwise. func (d *DashboardLite) GetCreated() string { if d == nil || d.Created == nil { return "" } return *d.Created } // GetCreatedOk returns a tuple with the Created field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardLite) GetCreatedOk() (string, bool) { if d == nil || d.Created == nil { return "", false } return *d.Created, true } // HasCreated returns a boolean if a field has been set. func (d *DashboardLite) HasCreated() bool { if d != nil && d.Created != nil { return true } return false } // SetCreated allocates a new d.Created and returns the pointer to it. func (d *DashboardLite) SetCreated(v string) { d.Created = &v } // GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise. func (d *DashboardLite) GetCreatedBy() CreatedBy { if d == nil || d.CreatedBy == nil { return CreatedBy{} } return *d.CreatedBy } // GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardLite) GetCreatedByOk() (CreatedBy, bool) { if d == nil || d.CreatedBy == nil { return CreatedBy{}, false } return *d.CreatedBy, true } // HasCreatedBy returns a boolean if a field has been set. func (d *DashboardLite) HasCreatedBy() bool { if d != nil && d.CreatedBy != nil { return true } return false } // SetCreatedBy allocates a new d.CreatedBy and returns the pointer to it. func (d *DashboardLite) SetCreatedBy(v CreatedBy) { d.CreatedBy = &v } // GetDescription returns the Description field if non-nil, zero value otherwise. func (d *DashboardLite) GetDescription() string { if d == nil || d.Description == nil { return "" } return *d.Description } // GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardLite) GetDescriptionOk() (string, bool) { if d == nil || d.Description == nil { return "", false } return *d.Description, true } // HasDescription returns a boolean if a field has been set. func (d *DashboardLite) HasDescription() bool { if d != nil && d.Description != nil { return true } return false } // SetDescription allocates a new d.Description and returns the pointer to it. func (d *DashboardLite) SetDescription(v string) { d.Description = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (d *DashboardLite) GetId() int { if d == nil || d.Id == nil { return 0 } return *d.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardLite) GetIdOk() (int, bool) { if d == nil || d.Id == nil { return 0, false } return *d.Id, true } // HasId returns a boolean if a field has been set. func (d *DashboardLite) HasId() bool { if d != nil && d.Id != nil { return true } return false } // SetId allocates a new d.Id and returns the pointer to it. func (d *DashboardLite) SetId(v int) { d.Id = &v } // GetModified returns the Modified field if non-nil, zero value otherwise. func (d *DashboardLite) GetModified() string { if d == nil || d.Modified == nil { return "" } return *d.Modified } // GetModifiedOk returns a tuple with the Modified field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardLite) GetModifiedOk() (string, bool) { if d == nil || d.Modified == nil { return "", false } return *d.Modified, true } // HasModified returns a boolean if a field has been set. func (d *DashboardLite) HasModified() bool { if d != nil && d.Modified != nil { return true } return false } // SetModified allocates a new d.Modified and returns the pointer to it. func (d *DashboardLite) SetModified(v string) { d.Modified = &v } // GetReadOnly returns the ReadOnly field if non-nil, zero value otherwise. func (d *DashboardLite) GetReadOnly() bool { if d == nil || d.ReadOnly == nil { return false } return *d.ReadOnly } // GetReadOnlyOk returns a tuple with the ReadOnly field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardLite) GetReadOnlyOk() (bool, bool) { if d == nil || d.ReadOnly == nil { return false, false } return *d.ReadOnly, true } // HasReadOnly returns a boolean if a field has been set. func (d *DashboardLite) HasReadOnly() bool { if d != nil && d.ReadOnly != nil { return true } return false } // SetReadOnly allocates a new d.ReadOnly and returns the pointer to it. func (d *DashboardLite) SetReadOnly(v bool) { d.ReadOnly = &v } // GetResource returns the Resource field if non-nil, zero value otherwise. func (d *DashboardLite) GetResource() string { if d == nil || d.Resource == nil { return "" } return *d.Resource } // GetResourceOk returns a tuple with the Resource field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardLite) GetResourceOk() (string, bool) { if d == nil || d.Resource == nil { return "", false } return *d.Resource, true } // HasResource returns a boolean if a field has been set. func (d *DashboardLite) HasResource() bool { if d != nil && d.Resource != nil { return true } return false } // SetResource allocates a new d.Resource and returns the pointer to it. func (d *DashboardLite) SetResource(v string) { d.Resource = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (d *DashboardLite) GetTitle() string { if d == nil || d.Title == nil { return "" } return *d.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DashboardLite) GetTitleOk() (string, bool) { if d == nil || d.Title == nil { return "", false } return *d.Title, true } // HasTitle returns a boolean if a field has been set. func (d *DashboardLite) HasTitle() bool { if d != nil && d.Title != nil { return true } return false } // SetTitle allocates a new d.Title and returns the pointer to it. func (d *DashboardLite) SetTitle(v string) { d.Title = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (d *DistributionDefinition) GetTime() WidgetTime { if d == nil || d.Time == nil { return WidgetTime{} } return *d.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DistributionDefinition) GetTimeOk() (WidgetTime, bool) { if d == nil || d.Time == nil { return WidgetTime{}, false } return *d.Time, true } // HasTime returns a boolean if a field has been set. func (d *DistributionDefinition) HasTime() bool { if d != nil && d.Time != nil { return true } return false } // SetTime allocates a new d.Time and returns the pointer to it. func (d *DistributionDefinition) SetTime(v WidgetTime) { d.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (d *DistributionDefinition) GetTitle() string { if d == nil || d.Title == nil { return "" } return *d.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DistributionDefinition) GetTitleOk() (string, bool) { if d == nil || d.Title == nil { return "", false } return *d.Title, true } // HasTitle returns a boolean if a field has been set. func (d *DistributionDefinition) HasTitle() bool { if d != nil && d.Title != nil { return true } return false } // SetTitle allocates a new d.Title and returns the pointer to it. func (d *DistributionDefinition) SetTitle(v string) { d.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (d *DistributionDefinition) GetTitleAlign() string { if d == nil || d.TitleAlign == nil { return "" } return *d.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DistributionDefinition) GetTitleAlignOk() (string, bool) { if d == nil || d.TitleAlign == nil { return "", false } return *d.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (d *DistributionDefinition) HasTitleAlign() bool { if d != nil && d.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new d.TitleAlign and returns the pointer to it. func (d *DistributionDefinition) SetTitleAlign(v string) { d.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (d *DistributionDefinition) GetTitleSize() string { if d == nil || d.TitleSize == nil { return "" } return *d.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DistributionDefinition) GetTitleSizeOk() (string, bool) { if d == nil || d.TitleSize == nil { return "", false } return *d.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (d *DistributionDefinition) HasTitleSize() bool { if d != nil && d.TitleSize != nil { return true } return false } // SetTitleSize allocates a new d.TitleSize and returns the pointer to it. func (d *DistributionDefinition) SetTitleSize(v string) { d.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (d *DistributionDefinition) GetType() string { if d == nil || d.Type == nil { return "" } return *d.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DistributionDefinition) GetTypeOk() (string, bool) { if d == nil || d.Type == nil { return "", false } return *d.Type, true } // HasType returns a boolean if a field has been set. func (d *DistributionDefinition) HasType() bool { if d != nil && d.Type != nil { return true } return false } // SetType allocates a new d.Type and returns the pointer to it. func (d *DistributionDefinition) SetType(v string) { d.Type = &v } // GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise. func (d *DistributionRequest) GetApmQuery() WidgetApmOrLogQuery { if d == nil || d.ApmQuery == nil { return WidgetApmOrLogQuery{} } return *d.ApmQuery } // GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DistributionRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) { if d == nil || d.ApmQuery == nil { return WidgetApmOrLogQuery{}, false } return *d.ApmQuery, true } // HasApmQuery returns a boolean if a field has been set. func (d *DistributionRequest) HasApmQuery() bool { if d != nil && d.ApmQuery != nil { return true } return false } // SetApmQuery allocates a new d.ApmQuery and returns the pointer to it. func (d *DistributionRequest) SetApmQuery(v WidgetApmOrLogQuery) { d.ApmQuery = &v } // GetLogQuery returns the LogQuery field if non-nil, zero value otherwise. func (d *DistributionRequest) GetLogQuery() WidgetApmOrLogQuery { if d == nil || d.LogQuery == nil { return WidgetApmOrLogQuery{} } return *d.LogQuery } // GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DistributionRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) { if d == nil || d.LogQuery == nil { return WidgetApmOrLogQuery{}, false } return *d.LogQuery, true } // HasLogQuery returns a boolean if a field has been set. func (d *DistributionRequest) HasLogQuery() bool { if d != nil && d.LogQuery != nil { return true } return false } // SetLogQuery allocates a new d.LogQuery and returns the pointer to it. func (d *DistributionRequest) SetLogQuery(v WidgetApmOrLogQuery) { d.LogQuery = &v } // GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise. func (d *DistributionRequest) GetMetricQuery() string { if d == nil || d.MetricQuery == nil { return "" } return *d.MetricQuery } // GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DistributionRequest) GetMetricQueryOk() (string, bool) { if d == nil || d.MetricQuery == nil { return "", false } return *d.MetricQuery, true } // HasMetricQuery returns a boolean if a field has been set. func (d *DistributionRequest) HasMetricQuery() bool { if d != nil && d.MetricQuery != nil { return true } return false } // SetMetricQuery allocates a new d.MetricQuery and returns the pointer to it. func (d *DistributionRequest) SetMetricQuery(v string) { d.MetricQuery = &v } // GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise. func (d *DistributionRequest) GetProcessQuery() WidgetProcessQuery { if d == nil || d.ProcessQuery == nil { return WidgetProcessQuery{} } return *d.ProcessQuery } // GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DistributionRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) { if d == nil || d.ProcessQuery == nil { return WidgetProcessQuery{}, false } return *d.ProcessQuery, true } // HasProcessQuery returns a boolean if a field has been set. func (d *DistributionRequest) HasProcessQuery() bool { if d != nil && d.ProcessQuery != nil { return true } return false } // SetProcessQuery allocates a new d.ProcessQuery and returns the pointer to it. func (d *DistributionRequest) SetProcessQuery(v WidgetProcessQuery) { d.ProcessQuery = &v } // GetStyle returns the Style field if non-nil, zero value otherwise. func (d *DistributionRequest) GetStyle() WidgetRequestStyle { if d == nil || d.Style == nil { return WidgetRequestStyle{} } return *d.Style } // GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *DistributionRequest) GetStyleOk() (WidgetRequestStyle, bool) { if d == nil || d.Style == nil { return WidgetRequestStyle{}, false } return *d.Style, true } // HasStyle returns a boolean if a field has been set. func (d *DistributionRequest) HasStyle() bool { if d != nil && d.Style != nil { return true } return false } // SetStyle allocates a new d.Style and returns the pointer to it. func (d *DistributionRequest) SetStyle(v WidgetRequestStyle) { d.Style = &v } // GetActive returns the Active field if non-nil, zero value otherwise. func (d *Downtime) GetActive() bool { if d == nil || d.Active == nil { return false } return *d.Active } // GetActiveOk returns a tuple with the Active field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetActiveOk() (bool, bool) { if d == nil || d.Active == nil { return false, false } return *d.Active, true } // HasActive returns a boolean if a field has been set. func (d *Downtime) HasActive() bool { if d != nil && d.Active != nil { return true } return false } // SetActive allocates a new d.Active and returns the pointer to it. func (d *Downtime) SetActive(v bool) { d.Active = &v } // GetCanceled returns the Canceled field if non-nil, zero value otherwise. func (d *Downtime) GetCanceled() int { if d == nil || d.Canceled == nil { return 0 } return *d.Canceled } // GetCanceledOk returns a tuple with the Canceled field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetCanceledOk() (int, bool) { if d == nil || d.Canceled == nil { return 0, false } return *d.Canceled, true } // HasCanceled returns a boolean if a field has been set. func (d *Downtime) HasCanceled() bool { if d != nil && d.Canceled != nil { return true } return false } // SetCanceled allocates a new d.Canceled and returns the pointer to it. func (d *Downtime) SetCanceled(v int) { d.Canceled = &v } // GetCreatorID returns the CreatorID field if non-nil, zero value otherwise. func (d *Downtime) GetCreatorID() int { if d == nil || d.CreatorID == nil { return 0 } return *d.CreatorID } // GetCreatorIDOk returns a tuple with the CreatorID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetCreatorIDOk() (int, bool) { if d == nil || d.CreatorID == nil { return 0, false } return *d.CreatorID, true } // HasCreatorID returns a boolean if a field has been set. func (d *Downtime) HasCreatorID() bool { if d != nil && d.CreatorID != nil { return true } return false } // SetCreatorID allocates a new d.CreatorID and returns the pointer to it. func (d *Downtime) SetCreatorID(v int) { d.CreatorID = &v } // GetDisabled returns the Disabled field if non-nil, zero value otherwise. func (d *Downtime) GetDisabled() bool { if d == nil || d.Disabled == nil { return false } return *d.Disabled } // GetDisabledOk returns a tuple with the Disabled field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetDisabledOk() (bool, bool) { if d == nil || d.Disabled == nil { return false, false } return *d.Disabled, true } // HasDisabled returns a boolean if a field has been set. func (d *Downtime) HasDisabled() bool { if d != nil && d.Disabled != nil { return true } return false } // SetDisabled allocates a new d.Disabled and returns the pointer to it. func (d *Downtime) SetDisabled(v bool) { d.Disabled = &v } // GetEnd returns the End field if non-nil, zero value otherwise. func (d *Downtime) GetEnd() int { if d == nil || d.End == nil { return 0 } return *d.End } // GetEndOk returns a tuple with the End field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetEndOk() (int, bool) { if d == nil || d.End == nil { return 0, false } return *d.End, true } // HasEnd returns a boolean if a field has been set. func (d *Downtime) HasEnd() bool { if d != nil && d.End != nil { return true } return false } // SetEnd allocates a new d.End and returns the pointer to it. func (d *Downtime) SetEnd(v int) { d.End = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (d *Downtime) GetId() int { if d == nil || d.Id == nil { return 0 } return *d.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetIdOk() (int, bool) { if d == nil || d.Id == nil { return 0, false } return *d.Id, true } // HasId returns a boolean if a field has been set. func (d *Downtime) HasId() bool { if d != nil && d.Id != nil { return true } return false } // SetId allocates a new d.Id and returns the pointer to it. func (d *Downtime) SetId(v int) { d.Id = &v } // GetMessage returns the Message field if non-nil, zero value otherwise. func (d *Downtime) GetMessage() string { if d == nil || d.Message == nil { return "" } return *d.Message } // GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetMessageOk() (string, bool) { if d == nil || d.Message == nil { return "", false } return *d.Message, true } // HasMessage returns a boolean if a field has been set. func (d *Downtime) HasMessage() bool { if d != nil && d.Message != nil { return true } return false } // SetMessage allocates a new d.Message and returns the pointer to it. func (d *Downtime) SetMessage(v string) { d.Message = &v } // GetMonitorId returns the MonitorId field if non-nil, zero value otherwise. func (d *Downtime) GetMonitorId() int { if d == nil || d.MonitorId == nil { return 0 } return *d.MonitorId } // GetMonitorIdOk returns a tuple with the MonitorId field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetMonitorIdOk() (int, bool) { if d == nil || d.MonitorId == nil { return 0, false } return *d.MonitorId, true } // HasMonitorId returns a boolean if a field has been set. func (d *Downtime) HasMonitorId() bool { if d != nil && d.MonitorId != nil { return true } return false } // SetMonitorId allocates a new d.MonitorId and returns the pointer to it. func (d *Downtime) SetMonitorId(v int) { d.MonitorId = &v } // GetParentId returns the ParentId field if non-nil, zero value otherwise. func (d *Downtime) GetParentId() int { if d == nil || d.ParentId == nil { return 0 } return *d.ParentId } // GetParentIdOk returns a tuple with the ParentId field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetParentIdOk() (int, bool) { if d == nil || d.ParentId == nil { return 0, false } return *d.ParentId, true } // HasParentId returns a boolean if a field has been set. func (d *Downtime) HasParentId() bool { if d != nil && d.ParentId != nil { return true } return false } // SetParentId allocates a new d.ParentId and returns the pointer to it. func (d *Downtime) SetParentId(v int) { d.ParentId = &v } // GetRecurrence returns the Recurrence field if non-nil, zero value otherwise. func (d *Downtime) GetRecurrence() Recurrence { if d == nil || d.Recurrence == nil { return Recurrence{} } return *d.Recurrence } // GetRecurrenceOk returns a tuple with the Recurrence field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetRecurrenceOk() (Recurrence, bool) { if d == nil || d.Recurrence == nil { return Recurrence{}, false } return *d.Recurrence, true } // HasRecurrence returns a boolean if a field has been set. func (d *Downtime) HasRecurrence() bool { if d != nil && d.Recurrence != nil { return true } return false } // SetRecurrence allocates a new d.Recurrence and returns the pointer to it. func (d *Downtime) SetRecurrence(v Recurrence) { d.Recurrence = &v } // GetStart returns the Start field if non-nil, zero value otherwise. func (d *Downtime) GetStart() int { if d == nil || d.Start == nil { return 0 } return *d.Start } // GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetStartOk() (int, bool) { if d == nil || d.Start == nil { return 0, false } return *d.Start, true } // HasStart returns a boolean if a field has been set. func (d *Downtime) HasStart() bool { if d != nil && d.Start != nil { return true } return false } // SetStart allocates a new d.Start and returns the pointer to it. func (d *Downtime) SetStart(v int) { d.Start = &v } // GetTimezone returns the Timezone field if non-nil, zero value otherwise. func (d *Downtime) GetTimezone() string { if d == nil || d.Timezone == nil { return "" } return *d.Timezone } // GetTimezoneOk returns a tuple with the Timezone field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetTimezoneOk() (string, bool) { if d == nil || d.Timezone == nil { return "", false } return *d.Timezone, true } // HasTimezone returns a boolean if a field has been set. func (d *Downtime) HasTimezone() bool { if d != nil && d.Timezone != nil { return true } return false } // SetTimezone allocates a new d.Timezone and returns the pointer to it. func (d *Downtime) SetTimezone(v string) { d.Timezone = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (d *Downtime) GetType() int { if d == nil || d.Type == nil { return 0 } return *d.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetTypeOk() (int, bool) { if d == nil || d.Type == nil { return 0, false } return *d.Type, true } // HasType returns a boolean if a field has been set. func (d *Downtime) HasType() bool { if d != nil && d.Type != nil { return true } return false } // SetType allocates a new d.Type and returns the pointer to it. func (d *Downtime) SetType(v int) { d.Type = &v } // GetUpdaterID returns the UpdaterID field if non-nil, zero value otherwise. func (d *Downtime) GetUpdaterID() int { if d == nil || d.UpdaterID == nil { return 0 } return *d.UpdaterID } // GetUpdaterIDOk returns a tuple with the UpdaterID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (d *Downtime) GetUpdaterIDOk() (int, bool) { if d == nil || d.UpdaterID == nil { return 0, false } return *d.UpdaterID, true } // HasUpdaterID returns a boolean if a field has been set. func (d *Downtime) HasUpdaterID() bool { if d != nil && d.UpdaterID != nil { return true } return false } // SetUpdaterID allocates a new d.UpdaterID and returns the pointer to it. func (d *Downtime) SetUpdaterID(v int) { d.UpdaterID = &v } // GetAggregation returns the Aggregation field if non-nil, zero value otherwise. func (e *Event) GetAggregation() string { if e == nil || e.Aggregation == nil { return "" } return *e.Aggregation } // GetAggregationOk returns a tuple with the Aggregation field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetAggregationOk() (string, bool) { if e == nil || e.Aggregation == nil { return "", false } return *e.Aggregation, true } // HasAggregation returns a boolean if a field has been set. func (e *Event) HasAggregation() bool { if e != nil && e.Aggregation != nil { return true } return false } // SetAggregation allocates a new e.Aggregation and returns the pointer to it. func (e *Event) SetAggregation(v string) { e.Aggregation = &v } // GetAlertType returns the AlertType field if non-nil, zero value otherwise. func (e *Event) GetAlertType() string { if e == nil || e.AlertType == nil { return "" } return *e.AlertType } // GetAlertTypeOk returns a tuple with the AlertType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetAlertTypeOk() (string, bool) { if e == nil || e.AlertType == nil { return "", false } return *e.AlertType, true } // HasAlertType returns a boolean if a field has been set. func (e *Event) HasAlertType() bool { if e != nil && e.AlertType != nil { return true } return false } // SetAlertType allocates a new e.AlertType and returns the pointer to it. func (e *Event) SetAlertType(v string) { e.AlertType = &v } // GetEventType returns the EventType field if non-nil, zero value otherwise. func (e *Event) GetEventType() string { if e == nil || e.EventType == nil { return "" } return *e.EventType } // GetEventTypeOk returns a tuple with the EventType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetEventTypeOk() (string, bool) { if e == nil || e.EventType == nil { return "", false } return *e.EventType, true } // HasEventType returns a boolean if a field has been set. func (e *Event) HasEventType() bool { if e != nil && e.EventType != nil { return true } return false } // SetEventType allocates a new e.EventType and returns the pointer to it. func (e *Event) SetEventType(v string) { e.EventType = &v } // GetHost returns the Host field if non-nil, zero value otherwise. func (e *Event) GetHost() string { if e == nil || e.Host == nil { return "" } return *e.Host } // GetHostOk returns a tuple with the Host field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetHostOk() (string, bool) { if e == nil || e.Host == nil { return "", false } return *e.Host, true } // HasHost returns a boolean if a field has been set. func (e *Event) HasHost() bool { if e != nil && e.Host != nil { return true } return false } // SetHost allocates a new e.Host and returns the pointer to it. func (e *Event) SetHost(v string) { e.Host = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (e *Event) GetId() int { if e == nil || e.Id == nil { return 0 } return *e.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetIdOk() (int, bool) { if e == nil || e.Id == nil { return 0, false } return *e.Id, true } // HasId returns a boolean if a field has been set. func (e *Event) HasId() bool { if e != nil && e.Id != nil { return true } return false } // SetId allocates a new e.Id and returns the pointer to it. func (e *Event) SetId(v int) { e.Id = &v } // GetPriority returns the Priority field if non-nil, zero value otherwise. func (e *Event) GetPriority() string { if e == nil || e.Priority == nil { return "" } return *e.Priority } // GetPriorityOk returns a tuple with the Priority field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetPriorityOk() (string, bool) { if e == nil || e.Priority == nil { return "", false } return *e.Priority, true } // HasPriority returns a boolean if a field has been set. func (e *Event) HasPriority() bool { if e != nil && e.Priority != nil { return true } return false } // SetPriority allocates a new e.Priority and returns the pointer to it. func (e *Event) SetPriority(v string) { e.Priority = &v } // GetResource returns the Resource field if non-nil, zero value otherwise. func (e *Event) GetResource() string { if e == nil || e.Resource == nil { return "" } return *e.Resource } // GetResourceOk returns a tuple with the Resource field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetResourceOk() (string, bool) { if e == nil || e.Resource == nil { return "", false } return *e.Resource, true } // HasResource returns a boolean if a field has been set. func (e *Event) HasResource() bool { if e != nil && e.Resource != nil { return true } return false } // SetResource allocates a new e.Resource and returns the pointer to it. func (e *Event) SetResource(v string) { e.Resource = &v } // GetSourceType returns the SourceType field if non-nil, zero value otherwise. func (e *Event) GetSourceType() string { if e == nil || e.SourceType == nil { return "" } return *e.SourceType } // GetSourceTypeOk returns a tuple with the SourceType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetSourceTypeOk() (string, bool) { if e == nil || e.SourceType == nil { return "", false } return *e.SourceType, true } // HasSourceType returns a boolean if a field has been set. func (e *Event) HasSourceType() bool { if e != nil && e.SourceType != nil { return true } return false } // SetSourceType allocates a new e.SourceType and returns the pointer to it. func (e *Event) SetSourceType(v string) { e.SourceType = &v } // GetText returns the Text field if non-nil, zero value otherwise. func (e *Event) GetText() string { if e == nil || e.Text == nil { return "" } return *e.Text } // GetTextOk returns a tuple with the Text field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetTextOk() (string, bool) { if e == nil || e.Text == nil { return "", false } return *e.Text, true } // HasText returns a boolean if a field has been set. func (e *Event) HasText() bool { if e != nil && e.Text != nil { return true } return false } // SetText allocates a new e.Text and returns the pointer to it. func (e *Event) SetText(v string) { e.Text = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (e *Event) GetTime() int { if e == nil || e.Time == nil { return 0 } return *e.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetTimeOk() (int, bool) { if e == nil || e.Time == nil { return 0, false } return *e.Time, true } // HasTime returns a boolean if a field has been set. func (e *Event) HasTime() bool { if e != nil && e.Time != nil { return true } return false } // SetTime allocates a new e.Time and returns the pointer to it. func (e *Event) SetTime(v int) { e.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (e *Event) GetTitle() string { if e == nil || e.Title == nil { return "" } return *e.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetTitleOk() (string, bool) { if e == nil || e.Title == nil { return "", false } return *e.Title, true } // HasTitle returns a boolean if a field has been set. func (e *Event) HasTitle() bool { if e != nil && e.Title != nil { return true } return false } // SetTitle allocates a new e.Title and returns the pointer to it. func (e *Event) SetTitle(v string) { e.Title = &v } // GetUrl returns the Url field if non-nil, zero value otherwise. func (e *Event) GetUrl() string { if e == nil || e.Url == nil { return "" } return *e.Url } // GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *Event) GetUrlOk() (string, bool) { if e == nil || e.Url == nil { return "", false } return *e.Url, true } // HasUrl returns a boolean if a field has been set. func (e *Event) HasUrl() bool { if e != nil && e.Url != nil { return true } return false } // SetUrl allocates a new e.Url and returns the pointer to it. func (e *Event) SetUrl(v string) { e.Url = &v } // GetEventSize returns the EventSize field if non-nil, zero value otherwise. func (e *EventStreamDefinition) GetEventSize() string { if e == nil || e.EventSize == nil { return "" } return *e.EventSize } // GetEventSizeOk returns a tuple with the EventSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventStreamDefinition) GetEventSizeOk() (string, bool) { if e == nil || e.EventSize == nil { return "", false } return *e.EventSize, true } // HasEventSize returns a boolean if a field has been set. func (e *EventStreamDefinition) HasEventSize() bool { if e != nil && e.EventSize != nil { return true } return false } // SetEventSize allocates a new e.EventSize and returns the pointer to it. func (e *EventStreamDefinition) SetEventSize(v string) { e.EventSize = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (e *EventStreamDefinition) GetQuery() string { if e == nil || e.Query == nil { return "" } return *e.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventStreamDefinition) GetQueryOk() (string, bool) { if e == nil || e.Query == nil { return "", false } return *e.Query, true } // HasQuery returns a boolean if a field has been set. func (e *EventStreamDefinition) HasQuery() bool { if e != nil && e.Query != nil { return true } return false } // SetQuery allocates a new e.Query and returns the pointer to it. func (e *EventStreamDefinition) SetQuery(v string) { e.Query = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (e *EventStreamDefinition) GetTime() WidgetTime { if e == nil || e.Time == nil { return WidgetTime{} } return *e.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventStreamDefinition) GetTimeOk() (WidgetTime, bool) { if e == nil || e.Time == nil { return WidgetTime{}, false } return *e.Time, true } // HasTime returns a boolean if a field has been set. func (e *EventStreamDefinition) HasTime() bool { if e != nil && e.Time != nil { return true } return false } // SetTime allocates a new e.Time and returns the pointer to it. func (e *EventStreamDefinition) SetTime(v WidgetTime) { e.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (e *EventStreamDefinition) GetTitle() string { if e == nil || e.Title == nil { return "" } return *e.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventStreamDefinition) GetTitleOk() (string, bool) { if e == nil || e.Title == nil { return "", false } return *e.Title, true } // HasTitle returns a boolean if a field has been set. func (e *EventStreamDefinition) HasTitle() bool { if e != nil && e.Title != nil { return true } return false } // SetTitle allocates a new e.Title and returns the pointer to it. func (e *EventStreamDefinition) SetTitle(v string) { e.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (e *EventStreamDefinition) GetTitleAlign() string { if e == nil || e.TitleAlign == nil { return "" } return *e.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventStreamDefinition) GetTitleAlignOk() (string, bool) { if e == nil || e.TitleAlign == nil { return "", false } return *e.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (e *EventStreamDefinition) HasTitleAlign() bool { if e != nil && e.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new e.TitleAlign and returns the pointer to it. func (e *EventStreamDefinition) SetTitleAlign(v string) { e.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (e *EventStreamDefinition) GetTitleSize() string { if e == nil || e.TitleSize == nil { return "" } return *e.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventStreamDefinition) GetTitleSizeOk() (string, bool) { if e == nil || e.TitleSize == nil { return "", false } return *e.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (e *EventStreamDefinition) HasTitleSize() bool { if e != nil && e.TitleSize != nil { return true } return false } // SetTitleSize allocates a new e.TitleSize and returns the pointer to it. func (e *EventStreamDefinition) SetTitleSize(v string) { e.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (e *EventStreamDefinition) GetType() string { if e == nil || e.Type == nil { return "" } return *e.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventStreamDefinition) GetTypeOk() (string, bool) { if e == nil || e.Type == nil { return "", false } return *e.Type, true } // HasType returns a boolean if a field has been set. func (e *EventStreamDefinition) HasType() bool { if e != nil && e.Type != nil { return true } return false } // SetType allocates a new e.Type and returns the pointer to it. func (e *EventStreamDefinition) SetType(v string) { e.Type = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (e *EventTimelineDefinition) GetQuery() string { if e == nil || e.Query == nil { return "" } return *e.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventTimelineDefinition) GetQueryOk() (string, bool) { if e == nil || e.Query == nil { return "", false } return *e.Query, true } // HasQuery returns a boolean if a field has been set. func (e *EventTimelineDefinition) HasQuery() bool { if e != nil && e.Query != nil { return true } return false } // SetQuery allocates a new e.Query and returns the pointer to it. func (e *EventTimelineDefinition) SetQuery(v string) { e.Query = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (e *EventTimelineDefinition) GetTime() WidgetTime { if e == nil || e.Time == nil { return WidgetTime{} } return *e.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventTimelineDefinition) GetTimeOk() (WidgetTime, bool) { if e == nil || e.Time == nil { return WidgetTime{}, false } return *e.Time, true } // HasTime returns a boolean if a field has been set. func (e *EventTimelineDefinition) HasTime() bool { if e != nil && e.Time != nil { return true } return false } // SetTime allocates a new e.Time and returns the pointer to it. func (e *EventTimelineDefinition) SetTime(v WidgetTime) { e.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (e *EventTimelineDefinition) GetTitle() string { if e == nil || e.Title == nil { return "" } return *e.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventTimelineDefinition) GetTitleOk() (string, bool) { if e == nil || e.Title == nil { return "", false } return *e.Title, true } // HasTitle returns a boolean if a field has been set. func (e *EventTimelineDefinition) HasTitle() bool { if e != nil && e.Title != nil { return true } return false } // SetTitle allocates a new e.Title and returns the pointer to it. func (e *EventTimelineDefinition) SetTitle(v string) { e.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (e *EventTimelineDefinition) GetTitleAlign() string { if e == nil || e.TitleAlign == nil { return "" } return *e.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventTimelineDefinition) GetTitleAlignOk() (string, bool) { if e == nil || e.TitleAlign == nil { return "", false } return *e.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (e *EventTimelineDefinition) HasTitleAlign() bool { if e != nil && e.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new e.TitleAlign and returns the pointer to it. func (e *EventTimelineDefinition) SetTitleAlign(v string) { e.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (e *EventTimelineDefinition) GetTitleSize() string { if e == nil || e.TitleSize == nil { return "" } return *e.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventTimelineDefinition) GetTitleSizeOk() (string, bool) { if e == nil || e.TitleSize == nil { return "", false } return *e.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (e *EventTimelineDefinition) HasTitleSize() bool { if e != nil && e.TitleSize != nil { return true } return false } // SetTitleSize allocates a new e.TitleSize and returns the pointer to it. func (e *EventTimelineDefinition) SetTitleSize(v string) { e.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (e *EventTimelineDefinition) GetType() string { if e == nil || e.Type == nil { return "" } return *e.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (e *EventTimelineDefinition) GetTypeOk() (string, bool) { if e == nil || e.Type == nil { return "", false } return *e.Type, true } // HasType returns a boolean if a field has been set. func (e *EventTimelineDefinition) HasType() bool { if e != nil && e.Type != nil { return true } return false } // SetType allocates a new e.Type and returns the pointer to it. func (e *EventTimelineDefinition) SetType(v string) { e.Type = &v } // GetColor returns the Color field if non-nil, zero value otherwise. func (f *FreeTextDefinition) GetColor() string { if f == nil || f.Color == nil { return "" } return *f.Color } // GetColorOk returns a tuple with the Color field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (f *FreeTextDefinition) GetColorOk() (string, bool) { if f == nil || f.Color == nil { return "", false } return *f.Color, true } // HasColor returns a boolean if a field has been set. func (f *FreeTextDefinition) HasColor() bool { if f != nil && f.Color != nil { return true } return false } // SetColor allocates a new f.Color and returns the pointer to it. func (f *FreeTextDefinition) SetColor(v string) { f.Color = &v } // GetFontSize returns the FontSize field if non-nil, zero value otherwise. func (f *FreeTextDefinition) GetFontSize() string { if f == nil || f.FontSize == nil { return "" } return *f.FontSize } // GetFontSizeOk returns a tuple with the FontSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (f *FreeTextDefinition) GetFontSizeOk() (string, bool) { if f == nil || f.FontSize == nil { return "", false } return *f.FontSize, true } // HasFontSize returns a boolean if a field has been set. func (f *FreeTextDefinition) HasFontSize() bool { if f != nil && f.FontSize != nil { return true } return false } // SetFontSize allocates a new f.FontSize and returns the pointer to it. func (f *FreeTextDefinition) SetFontSize(v string) { f.FontSize = &v } // GetText returns the Text field if non-nil, zero value otherwise. func (f *FreeTextDefinition) GetText() string { if f == nil || f.Text == nil { return "" } return *f.Text } // GetTextOk returns a tuple with the Text field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (f *FreeTextDefinition) GetTextOk() (string, bool) { if f == nil || f.Text == nil { return "", false } return *f.Text, true } // HasText returns a boolean if a field has been set. func (f *FreeTextDefinition) HasText() bool { if f != nil && f.Text != nil { return true } return false } // SetText allocates a new f.Text and returns the pointer to it. func (f *FreeTextDefinition) SetText(v string) { f.Text = &v } // GetTextAlign returns the TextAlign field if non-nil, zero value otherwise. func (f *FreeTextDefinition) GetTextAlign() string { if f == nil || f.TextAlign == nil { return "" } return *f.TextAlign } // GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (f *FreeTextDefinition) GetTextAlignOk() (string, bool) { if f == nil || f.TextAlign == nil { return "", false } return *f.TextAlign, true } // HasTextAlign returns a boolean if a field has been set. func (f *FreeTextDefinition) HasTextAlign() bool { if f != nil && f.TextAlign != nil { return true } return false } // SetTextAlign allocates a new f.TextAlign and returns the pointer to it. func (f *FreeTextDefinition) SetTextAlign(v string) { f.TextAlign = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (f *FreeTextDefinition) GetType() string { if f == nil || f.Type == nil { return "" } return *f.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (f *FreeTextDefinition) GetTypeOk() (string, bool) { if f == nil || f.Type == nil { return "", false } return *f.Type, true } // HasType returns a boolean if a field has been set. func (f *FreeTextDefinition) HasType() bool { if f != nil && f.Type != nil { return true } return false } // SetType allocates a new f.Type and returns the pointer to it. func (f *FreeTextDefinition) SetType(v string) { f.Type = &v } // GetDefinition returns the Definition field if non-nil, zero value otherwise. func (g *Graph) GetDefinition() GraphDefinition { if g == nil || g.Definition == nil { return GraphDefinition{} } return *g.Definition } // GetDefinitionOk returns a tuple with the Definition field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *Graph) GetDefinitionOk() (GraphDefinition, bool) { if g == nil || g.Definition == nil { return GraphDefinition{}, false } return *g.Definition, true } // HasDefinition returns a boolean if a field has been set. func (g *Graph) HasDefinition() bool { if g != nil && g.Definition != nil { return true } return false } // SetDefinition allocates a new g.Definition and returns the pointer to it. func (g *Graph) SetDefinition(v GraphDefinition) { g.Definition = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (g *Graph) GetTitle() string { if g == nil || g.Title == nil { return "" } return *g.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *Graph) GetTitleOk() (string, bool) { if g == nil || g.Title == nil { return "", false } return *g.Title, true } // HasTitle returns a boolean if a field has been set. func (g *Graph) HasTitle() bool { if g != nil && g.Title != nil { return true } return false } // SetTitle allocates a new g.Title and returns the pointer to it. func (g *Graph) SetTitle(v string) { g.Title = &v } // GetAutoscale returns the Autoscale field if non-nil, zero value otherwise. func (g *GraphDefinition) GetAutoscale() bool { if g == nil || g.Autoscale == nil { return false } return *g.Autoscale } // GetAutoscaleOk returns a tuple with the Autoscale field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinition) GetAutoscaleOk() (bool, bool) { if g == nil || g.Autoscale == nil { return false, false } return *g.Autoscale, true } // HasAutoscale returns a boolean if a field has been set. func (g *GraphDefinition) HasAutoscale() bool { if g != nil && g.Autoscale != nil { return true } return false } // SetAutoscale allocates a new g.Autoscale and returns the pointer to it. func (g *GraphDefinition) SetAutoscale(v bool) { g.Autoscale = &v } // GetCustomUnit returns the CustomUnit field if non-nil, zero value otherwise. func (g *GraphDefinition) GetCustomUnit() string { if g == nil || g.CustomUnit == nil { return "" } return *g.CustomUnit } // GetCustomUnitOk returns a tuple with the CustomUnit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinition) GetCustomUnitOk() (string, bool) { if g == nil || g.CustomUnit == nil { return "", false } return *g.CustomUnit, true } // HasCustomUnit returns a boolean if a field has been set. func (g *GraphDefinition) HasCustomUnit() bool { if g != nil && g.CustomUnit != nil { return true } return false } // SetCustomUnit allocates a new g.CustomUnit and returns the pointer to it. func (g *GraphDefinition) SetCustomUnit(v string) { g.CustomUnit = &v } // GetIncludeNoMetricHosts returns the IncludeNoMetricHosts field if non-nil, zero value otherwise. func (g *GraphDefinition) GetIncludeNoMetricHosts() bool { if g == nil || g.IncludeNoMetricHosts == nil { return false } return *g.IncludeNoMetricHosts } // GetIncludeNoMetricHostsOk returns a tuple with the IncludeNoMetricHosts field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinition) GetIncludeNoMetricHostsOk() (bool, bool) { if g == nil || g.IncludeNoMetricHosts == nil { return false, false } return *g.IncludeNoMetricHosts, true } // HasIncludeNoMetricHosts returns a boolean if a field has been set. func (g *GraphDefinition) HasIncludeNoMetricHosts() bool { if g != nil && g.IncludeNoMetricHosts != nil { return true } return false } // SetIncludeNoMetricHosts allocates a new g.IncludeNoMetricHosts and returns the pointer to it. func (g *GraphDefinition) SetIncludeNoMetricHosts(v bool) { g.IncludeNoMetricHosts = &v } // GetIncludeUngroupedHosts returns the IncludeUngroupedHosts field if non-nil, zero value otherwise. func (g *GraphDefinition) GetIncludeUngroupedHosts() bool { if g == nil || g.IncludeUngroupedHosts == nil { return false } return *g.IncludeUngroupedHosts } // GetIncludeUngroupedHostsOk returns a tuple with the IncludeUngroupedHosts field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinition) GetIncludeUngroupedHostsOk() (bool, bool) { if g == nil || g.IncludeUngroupedHosts == nil { return false, false } return *g.IncludeUngroupedHosts, true } // HasIncludeUngroupedHosts returns a boolean if a field has been set. func (g *GraphDefinition) HasIncludeUngroupedHosts() bool { if g != nil && g.IncludeUngroupedHosts != nil { return true } return false } // SetIncludeUngroupedHosts allocates a new g.IncludeUngroupedHosts and returns the pointer to it. func (g *GraphDefinition) SetIncludeUngroupedHosts(v bool) { g.IncludeUngroupedHosts = &v } // GetNodeType returns the NodeType field if non-nil, zero value otherwise. func (g *GraphDefinition) GetNodeType() string { if g == nil || g.NodeType == nil { return "" } return *g.NodeType } // GetNodeTypeOk returns a tuple with the NodeType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinition) GetNodeTypeOk() (string, bool) { if g == nil || g.NodeType == nil { return "", false } return *g.NodeType, true } // HasNodeType returns a boolean if a field has been set. func (g *GraphDefinition) HasNodeType() bool { if g != nil && g.NodeType != nil { return true } return false } // SetNodeType allocates a new g.NodeType and returns the pointer to it. func (g *GraphDefinition) SetNodeType(v string) { g.NodeType = &v } // GetPrecision returns the Precision field if non-nil, zero value otherwise. func (g *GraphDefinition) GetPrecision() PrecisionT { if g == nil || g.Precision == nil { return "" } return *g.Precision } // GetPrecisionOk returns a tuple with the Precision field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinition) GetPrecisionOk() (PrecisionT, bool) { if g == nil || g.Precision == nil { return "", false } return *g.Precision, true } // HasPrecision returns a boolean if a field has been set. func (g *GraphDefinition) HasPrecision() bool { if g != nil && g.Precision != nil { return true } return false } // SetPrecision allocates a new g.Precision and returns the pointer to it. func (g *GraphDefinition) SetPrecision(v PrecisionT) { g.Precision = &v } // GetStyle returns the Style field if non-nil, zero value otherwise. func (g *GraphDefinition) GetStyle() Style { if g == nil || g.Style == nil { return Style{} } return *g.Style } // GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinition) GetStyleOk() (Style, bool) { if g == nil || g.Style == nil { return Style{}, false } return *g.Style, true } // HasStyle returns a boolean if a field has been set. func (g *GraphDefinition) HasStyle() bool { if g != nil && g.Style != nil { return true } return false } // SetStyle allocates a new g.Style and returns the pointer to it. func (g *GraphDefinition) SetStyle(v Style) { g.Style = &v } // GetTextAlign returns the TextAlign field if non-nil, zero value otherwise. func (g *GraphDefinition) GetTextAlign() string { if g == nil || g.TextAlign == nil { return "" } return *g.TextAlign } // GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinition) GetTextAlignOk() (string, bool) { if g == nil || g.TextAlign == nil { return "", false } return *g.TextAlign, true } // HasTextAlign returns a boolean if a field has been set. func (g *GraphDefinition) HasTextAlign() bool { if g != nil && g.TextAlign != nil { return true } return false } // SetTextAlign allocates a new g.TextAlign and returns the pointer to it. func (g *GraphDefinition) SetTextAlign(v string) { g.TextAlign = &v } // GetViz returns the Viz field if non-nil, zero value otherwise. func (g *GraphDefinition) GetViz() string { if g == nil || g.Viz == nil { return "" } return *g.Viz } // GetVizOk returns a tuple with the Viz field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinition) GetVizOk() (string, bool) { if g == nil || g.Viz == nil { return "", false } return *g.Viz, true } // HasViz returns a boolean if a field has been set. func (g *GraphDefinition) HasViz() bool { if g != nil && g.Viz != nil { return true } return false } // SetViz allocates a new g.Viz and returns the pointer to it. func (g *GraphDefinition) SetViz(v string) { g.Viz = &v } // GetLabel returns the Label field if non-nil, zero value otherwise. func (g *GraphDefinitionMarker) GetLabel() string { if g == nil || g.Label == nil { return "" } return *g.Label } // GetLabelOk returns a tuple with the Label field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionMarker) GetLabelOk() (string, bool) { if g == nil || g.Label == nil { return "", false } return *g.Label, true } // HasLabel returns a boolean if a field has been set. func (g *GraphDefinitionMarker) HasLabel() bool { if g != nil && g.Label != nil { return true } return false } // SetLabel allocates a new g.Label and returns the pointer to it. func (g *GraphDefinitionMarker) SetLabel(v string) { g.Label = &v } // GetMax returns the Max field if non-nil, zero value otherwise. func (g *GraphDefinitionMarker) GetMax() json.Number { if g == nil || g.Max == nil { return "" } return *g.Max } // GetMaxOk returns a tuple with the Max field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionMarker) GetMaxOk() (json.Number, bool) { if g == nil || g.Max == nil { return "", false } return *g.Max, true } // HasMax returns a boolean if a field has been set. func (g *GraphDefinitionMarker) HasMax() bool { if g != nil && g.Max != nil { return true } return false } // SetMax allocates a new g.Max and returns the pointer to it. func (g *GraphDefinitionMarker) SetMax(v json.Number) { g.Max = &v } // GetMin returns the Min field if non-nil, zero value otherwise. func (g *GraphDefinitionMarker) GetMin() json.Number { if g == nil || g.Min == nil { return "" } return *g.Min } // GetMinOk returns a tuple with the Min field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionMarker) GetMinOk() (json.Number, bool) { if g == nil || g.Min == nil { return "", false } return *g.Min, true } // HasMin returns a boolean if a field has been set. func (g *GraphDefinitionMarker) HasMin() bool { if g != nil && g.Min != nil { return true } return false } // SetMin allocates a new g.Min and returns the pointer to it. func (g *GraphDefinitionMarker) SetMin(v json.Number) { g.Min = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (g *GraphDefinitionMarker) GetType() string { if g == nil || g.Type == nil { return "" } return *g.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionMarker) GetTypeOk() (string, bool) { if g == nil || g.Type == nil { return "", false } return *g.Type, true } // HasType returns a boolean if a field has been set. func (g *GraphDefinitionMarker) HasType() bool { if g != nil && g.Type != nil { return true } return false } // SetType allocates a new g.Type and returns the pointer to it. func (g *GraphDefinitionMarker) SetType(v string) { g.Type = &v } // GetVal returns the Val field if non-nil, zero value otherwise. func (g *GraphDefinitionMarker) GetVal() json.Number { if g == nil || g.Val == nil { return "" } return *g.Val } // GetValOk returns a tuple with the Val field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionMarker) GetValOk() (json.Number, bool) { if g == nil || g.Val == nil { return "", false } return *g.Val, true } // HasVal returns a boolean if a field has been set. func (g *GraphDefinitionMarker) HasVal() bool { if g != nil && g.Val != nil { return true } return false } // SetVal allocates a new g.Val and returns the pointer to it. func (g *GraphDefinitionMarker) SetVal(v json.Number) { g.Val = &v } // GetValue returns the Value field if non-nil, zero value otherwise. func (g *GraphDefinitionMarker) GetValue() string { if g == nil || g.Value == nil { return "" } return *g.Value } // GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionMarker) GetValueOk() (string, bool) { if g == nil || g.Value == nil { return "", false } return *g.Value, true } // HasValue returns a boolean if a field has been set. func (g *GraphDefinitionMarker) HasValue() bool { if g != nil && g.Value != nil { return true } return false } // SetValue allocates a new g.Value and returns the pointer to it. func (g *GraphDefinitionMarker) SetValue(v string) { g.Value = &v } // GetAggregator returns the Aggregator field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetAggregator() string { if g == nil || g.Aggregator == nil { return "" } return *g.Aggregator } // GetAggregatorOk returns a tuple with the Aggregator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetAggregatorOk() (string, bool) { if g == nil || g.Aggregator == nil { return "", false } return *g.Aggregator, true } // HasAggregator returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasAggregator() bool { if g != nil && g.Aggregator != nil { return true } return false } // SetAggregator allocates a new g.Aggregator and returns the pointer to it. func (g *GraphDefinitionRequest) SetAggregator(v string) { g.Aggregator = &v } // GetChangeType returns the ChangeType field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetChangeType() string { if g == nil || g.ChangeType == nil { return "" } return *g.ChangeType } // GetChangeTypeOk returns a tuple with the ChangeType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetChangeTypeOk() (string, bool) { if g == nil || g.ChangeType == nil { return "", false } return *g.ChangeType, true } // HasChangeType returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasChangeType() bool { if g != nil && g.ChangeType != nil { return true } return false } // SetChangeType allocates a new g.ChangeType and returns the pointer to it. func (g *GraphDefinitionRequest) SetChangeType(v string) { g.ChangeType = &v } // GetCompareTo returns the CompareTo field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetCompareTo() string { if g == nil || g.CompareTo == nil { return "" } return *g.CompareTo } // GetCompareToOk returns a tuple with the CompareTo field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetCompareToOk() (string, bool) { if g == nil || g.CompareTo == nil { return "", false } return *g.CompareTo, true } // HasCompareTo returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasCompareTo() bool { if g != nil && g.CompareTo != nil { return true } return false } // SetCompareTo allocates a new g.CompareTo and returns the pointer to it. func (g *GraphDefinitionRequest) SetCompareTo(v string) { g.CompareTo = &v } // GetExtraCol returns the ExtraCol field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetExtraCol() string { if g == nil || g.ExtraCol == nil { return "" } return *g.ExtraCol } // GetExtraColOk returns a tuple with the ExtraCol field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetExtraColOk() (string, bool) { if g == nil || g.ExtraCol == nil { return "", false } return *g.ExtraCol, true } // HasExtraCol returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasExtraCol() bool { if g != nil && g.ExtraCol != nil { return true } return false } // SetExtraCol allocates a new g.ExtraCol and returns the pointer to it. func (g *GraphDefinitionRequest) SetExtraCol(v string) { g.ExtraCol = &v } // GetIncreaseGood returns the IncreaseGood field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetIncreaseGood() bool { if g == nil || g.IncreaseGood == nil { return false } return *g.IncreaseGood } // GetIncreaseGoodOk returns a tuple with the IncreaseGood field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetIncreaseGoodOk() (bool, bool) { if g == nil || g.IncreaseGood == nil { return false, false } return *g.IncreaseGood, true } // HasIncreaseGood returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasIncreaseGood() bool { if g != nil && g.IncreaseGood != nil { return true } return false } // SetIncreaseGood allocates a new g.IncreaseGood and returns the pointer to it. func (g *GraphDefinitionRequest) SetIncreaseGood(v bool) { g.IncreaseGood = &v } // GetOrderBy returns the OrderBy field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetOrderBy() string { if g == nil || g.OrderBy == nil { return "" } return *g.OrderBy } // GetOrderByOk returns a tuple with the OrderBy field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetOrderByOk() (string, bool) { if g == nil || g.OrderBy == nil { return "", false } return *g.OrderBy, true } // HasOrderBy returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasOrderBy() bool { if g != nil && g.OrderBy != nil { return true } return false } // SetOrderBy allocates a new g.OrderBy and returns the pointer to it. func (g *GraphDefinitionRequest) SetOrderBy(v string) { g.OrderBy = &v } // GetOrderDirection returns the OrderDirection field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetOrderDirection() string { if g == nil || g.OrderDirection == nil { return "" } return *g.OrderDirection } // GetOrderDirectionOk returns a tuple with the OrderDirection field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetOrderDirectionOk() (string, bool) { if g == nil || g.OrderDirection == nil { return "", false } return *g.OrderDirection, true } // HasOrderDirection returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasOrderDirection() bool { if g != nil && g.OrderDirection != nil { return true } return false } // SetOrderDirection allocates a new g.OrderDirection and returns the pointer to it. func (g *GraphDefinitionRequest) SetOrderDirection(v string) { g.OrderDirection = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetQuery() string { if g == nil || g.Query == nil { return "" } return *g.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetQueryOk() (string, bool) { if g == nil || g.Query == nil { return "", false } return *g.Query, true } // HasQuery returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasQuery() bool { if g != nil && g.Query != nil { return true } return false } // SetQuery allocates a new g.Query and returns the pointer to it. func (g *GraphDefinitionRequest) SetQuery(v string) { g.Query = &v } // GetStacked returns the Stacked field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetStacked() bool { if g == nil || g.Stacked == nil { return false } return *g.Stacked } // GetStackedOk returns a tuple with the Stacked field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetStackedOk() (bool, bool) { if g == nil || g.Stacked == nil { return false, false } return *g.Stacked, true } // HasStacked returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasStacked() bool { if g != nil && g.Stacked != nil { return true } return false } // SetStacked allocates a new g.Stacked and returns the pointer to it. func (g *GraphDefinitionRequest) SetStacked(v bool) { g.Stacked = &v } // GetStyle returns the Style field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetStyle() GraphDefinitionRequestStyle { if g == nil || g.Style == nil { return GraphDefinitionRequestStyle{} } return *g.Style } // GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetStyleOk() (GraphDefinitionRequestStyle, bool) { if g == nil || g.Style == nil { return GraphDefinitionRequestStyle{}, false } return *g.Style, true } // HasStyle returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasStyle() bool { if g != nil && g.Style != nil { return true } return false } // SetStyle allocates a new g.Style and returns the pointer to it. func (g *GraphDefinitionRequest) SetStyle(v GraphDefinitionRequestStyle) { g.Style = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (g *GraphDefinitionRequest) GetType() string { if g == nil || g.Type == nil { return "" } return *g.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequest) GetTypeOk() (string, bool) { if g == nil || g.Type == nil { return "", false } return *g.Type, true } // HasType returns a boolean if a field has been set. func (g *GraphDefinitionRequest) HasType() bool { if g != nil && g.Type != nil { return true } return false } // SetType allocates a new g.Type and returns the pointer to it. func (g *GraphDefinitionRequest) SetType(v string) { g.Type = &v } // GetPalette returns the Palette field if non-nil, zero value otherwise. func (g *GraphDefinitionRequestStyle) GetPalette() string { if g == nil || g.Palette == nil { return "" } return *g.Palette } // GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequestStyle) GetPaletteOk() (string, bool) { if g == nil || g.Palette == nil { return "", false } return *g.Palette, true } // HasPalette returns a boolean if a field has been set. func (g *GraphDefinitionRequestStyle) HasPalette() bool { if g != nil && g.Palette != nil { return true } return false } // SetPalette allocates a new g.Palette and returns the pointer to it. func (g *GraphDefinitionRequestStyle) SetPalette(v string) { g.Palette = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (g *GraphDefinitionRequestStyle) GetType() string { if g == nil || g.Type == nil { return "" } return *g.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequestStyle) GetTypeOk() (string, bool) { if g == nil || g.Type == nil { return "", false } return *g.Type, true } // HasType returns a boolean if a field has been set. func (g *GraphDefinitionRequestStyle) HasType() bool { if g != nil && g.Type != nil { return true } return false } // SetType allocates a new g.Type and returns the pointer to it. func (g *GraphDefinitionRequestStyle) SetType(v string) { g.Type = &v } // GetWidth returns the Width field if non-nil, zero value otherwise. func (g *GraphDefinitionRequestStyle) GetWidth() string { if g == nil || g.Width == nil { return "" } return *g.Width } // GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphDefinitionRequestStyle) GetWidthOk() (string, bool) { if g == nil || g.Width == nil { return "", false } return *g.Width, true } // HasWidth returns a boolean if a field has been set. func (g *GraphDefinitionRequestStyle) HasWidth() bool { if g != nil && g.Width != nil { return true } return false } // SetWidth allocates a new g.Width and returns the pointer to it. func (g *GraphDefinitionRequestStyle) SetWidth(v string) { g.Width = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (g *GraphEvent) GetQuery() string { if g == nil || g.Query == nil { return "" } return *g.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GraphEvent) GetQueryOk() (string, bool) { if g == nil || g.Query == nil { return "", false } return *g.Query, true } // HasQuery returns a boolean if a field has been set. func (g *GraphEvent) HasQuery() bool { if g != nil && g.Query != nil { return true } return false } // SetQuery allocates a new g.Query and returns the pointer to it. func (g *GraphEvent) SetQuery(v string) { g.Query = &v } // GetLastNoDataTs returns the LastNoDataTs field if non-nil, zero value otherwise. func (g *GroupData) GetLastNoDataTs() int { if g == nil || g.LastNoDataTs == nil { return 0 } return *g.LastNoDataTs } // GetLastNoDataTsOk returns a tuple with the LastNoDataTs field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GroupData) GetLastNoDataTsOk() (int, bool) { if g == nil || g.LastNoDataTs == nil { return 0, false } return *g.LastNoDataTs, true } // HasLastNoDataTs returns a boolean if a field has been set. func (g *GroupData) HasLastNoDataTs() bool { if g != nil && g.LastNoDataTs != nil { return true } return false } // SetLastNoDataTs allocates a new g.LastNoDataTs and returns the pointer to it. func (g *GroupData) SetLastNoDataTs(v int) { g.LastNoDataTs = &v } // GetLastNotifiedTs returns the LastNotifiedTs field if non-nil, zero value otherwise. func (g *GroupData) GetLastNotifiedTs() int { if g == nil || g.LastNotifiedTs == nil { return 0 } return *g.LastNotifiedTs } // GetLastNotifiedTsOk returns a tuple with the LastNotifiedTs field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GroupData) GetLastNotifiedTsOk() (int, bool) { if g == nil || g.LastNotifiedTs == nil { return 0, false } return *g.LastNotifiedTs, true } // HasLastNotifiedTs returns a boolean if a field has been set. func (g *GroupData) HasLastNotifiedTs() bool { if g != nil && g.LastNotifiedTs != nil { return true } return false } // SetLastNotifiedTs allocates a new g.LastNotifiedTs and returns the pointer to it. func (g *GroupData) SetLastNotifiedTs(v int) { g.LastNotifiedTs = &v } // GetLastResolvedTs returns the LastResolvedTs field if non-nil, zero value otherwise. func (g *GroupData) GetLastResolvedTs() int { if g == nil || g.LastResolvedTs == nil { return 0 } return *g.LastResolvedTs } // GetLastResolvedTsOk returns a tuple with the LastResolvedTs field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GroupData) GetLastResolvedTsOk() (int, bool) { if g == nil || g.LastResolvedTs == nil { return 0, false } return *g.LastResolvedTs, true } // HasLastResolvedTs returns a boolean if a field has been set. func (g *GroupData) HasLastResolvedTs() bool { if g != nil && g.LastResolvedTs != nil { return true } return false } // SetLastResolvedTs allocates a new g.LastResolvedTs and returns the pointer to it. func (g *GroupData) SetLastResolvedTs(v int) { g.LastResolvedTs = &v } // GetLastTriggeredTs returns the LastTriggeredTs field if non-nil, zero value otherwise. func (g *GroupData) GetLastTriggeredTs() int { if g == nil || g.LastTriggeredTs == nil { return 0 } return *g.LastTriggeredTs } // GetLastTriggeredTsOk returns a tuple with the LastTriggeredTs field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GroupData) GetLastTriggeredTsOk() (int, bool) { if g == nil || g.LastTriggeredTs == nil { return 0, false } return *g.LastTriggeredTs, true } // HasLastTriggeredTs returns a boolean if a field has been set. func (g *GroupData) HasLastTriggeredTs() bool { if g != nil && g.LastTriggeredTs != nil { return true } return false } // SetLastTriggeredTs allocates a new g.LastTriggeredTs and returns the pointer to it. func (g *GroupData) SetLastTriggeredTs(v int) { g.LastTriggeredTs = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (g *GroupData) GetName() string { if g == nil || g.Name == nil { return "" } return *g.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GroupData) GetNameOk() (string, bool) { if g == nil || g.Name == nil { return "", false } return *g.Name, true } // HasName returns a boolean if a field has been set. func (g *GroupData) HasName() bool { if g != nil && g.Name != nil { return true } return false } // SetName allocates a new g.Name and returns the pointer to it. func (g *GroupData) SetName(v string) { g.Name = &v } // GetStatus returns the Status field if non-nil, zero value otherwise. func (g *GroupData) GetStatus() string { if g == nil || g.Status == nil { return "" } return *g.Status } // GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GroupData) GetStatusOk() (string, bool) { if g == nil || g.Status == nil { return "", false } return *g.Status, true } // HasStatus returns a boolean if a field has been set. func (g *GroupData) HasStatus() bool { if g != nil && g.Status != nil { return true } return false } // SetStatus allocates a new g.Status and returns the pointer to it. func (g *GroupData) SetStatus(v string) { g.Status = &v } // GetTriggeringValue returns the TriggeringValue field if non-nil, zero value otherwise. func (g *GroupData) GetTriggeringValue() TriggeringValue { if g == nil || g.TriggeringValue == nil { return TriggeringValue{} } return *g.TriggeringValue } // GetTriggeringValueOk returns a tuple with the TriggeringValue field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GroupData) GetTriggeringValueOk() (TriggeringValue, bool) { if g == nil || g.TriggeringValue == nil { return TriggeringValue{}, false } return *g.TriggeringValue, true } // HasTriggeringValue returns a boolean if a field has been set. func (g *GroupData) HasTriggeringValue() bool { if g != nil && g.TriggeringValue != nil { return true } return false } // SetTriggeringValue allocates a new g.TriggeringValue and returns the pointer to it. func (g *GroupData) SetTriggeringValue(v TriggeringValue) { g.TriggeringValue = &v } // GetLayoutType returns the LayoutType field if non-nil, zero value otherwise. func (g *GroupDefinition) GetLayoutType() string { if g == nil || g.LayoutType == nil { return "" } return *g.LayoutType } // GetLayoutTypeOk returns a tuple with the LayoutType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GroupDefinition) GetLayoutTypeOk() (string, bool) { if g == nil || g.LayoutType == nil { return "", false } return *g.LayoutType, true } // HasLayoutType returns a boolean if a field has been set. func (g *GroupDefinition) HasLayoutType() bool { if g != nil && g.LayoutType != nil { return true } return false } // SetLayoutType allocates a new g.LayoutType and returns the pointer to it. func (g *GroupDefinition) SetLayoutType(v string) { g.LayoutType = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (g *GroupDefinition) GetTitle() string { if g == nil || g.Title == nil { return "" } return *g.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GroupDefinition) GetTitleOk() (string, bool) { if g == nil || g.Title == nil { return "", false } return *g.Title, true } // HasTitle returns a boolean if a field has been set. func (g *GroupDefinition) HasTitle() bool { if g != nil && g.Title != nil { return true } return false } // SetTitle allocates a new g.Title and returns the pointer to it. func (g *GroupDefinition) SetTitle(v string) { g.Title = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (g *GroupDefinition) GetType() string { if g == nil || g.Type == nil { return "" } return *g.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (g *GroupDefinition) GetTypeOk() (string, bool) { if g == nil || g.Type == nil { return "", false } return *g.Type, true } // HasType returns a boolean if a field has been set. func (g *GroupDefinition) HasType() bool { if g != nil && g.Type != nil { return true } return false } // SetType allocates a new g.Type and returns the pointer to it. func (g *GroupDefinition) SetType(v string) { g.Type = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (h *HeatmapDefinition) GetTime() WidgetTime { if h == nil || h.Time == nil { return WidgetTime{} } return *h.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapDefinition) GetTimeOk() (WidgetTime, bool) { if h == nil || h.Time == nil { return WidgetTime{}, false } return *h.Time, true } // HasTime returns a boolean if a field has been set. func (h *HeatmapDefinition) HasTime() bool { if h != nil && h.Time != nil { return true } return false } // SetTime allocates a new h.Time and returns the pointer to it. func (h *HeatmapDefinition) SetTime(v WidgetTime) { h.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (h *HeatmapDefinition) GetTitle() string { if h == nil || h.Title == nil { return "" } return *h.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapDefinition) GetTitleOk() (string, bool) { if h == nil || h.Title == nil { return "", false } return *h.Title, true } // HasTitle returns a boolean if a field has been set. func (h *HeatmapDefinition) HasTitle() bool { if h != nil && h.Title != nil { return true } return false } // SetTitle allocates a new h.Title and returns the pointer to it. func (h *HeatmapDefinition) SetTitle(v string) { h.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (h *HeatmapDefinition) GetTitleAlign() string { if h == nil || h.TitleAlign == nil { return "" } return *h.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapDefinition) GetTitleAlignOk() (string, bool) { if h == nil || h.TitleAlign == nil { return "", false } return *h.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (h *HeatmapDefinition) HasTitleAlign() bool { if h != nil && h.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new h.TitleAlign and returns the pointer to it. func (h *HeatmapDefinition) SetTitleAlign(v string) { h.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (h *HeatmapDefinition) GetTitleSize() string { if h == nil || h.TitleSize == nil { return "" } return *h.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapDefinition) GetTitleSizeOk() (string, bool) { if h == nil || h.TitleSize == nil { return "", false } return *h.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (h *HeatmapDefinition) HasTitleSize() bool { if h != nil && h.TitleSize != nil { return true } return false } // SetTitleSize allocates a new h.TitleSize and returns the pointer to it. func (h *HeatmapDefinition) SetTitleSize(v string) { h.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (h *HeatmapDefinition) GetType() string { if h == nil || h.Type == nil { return "" } return *h.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapDefinition) GetTypeOk() (string, bool) { if h == nil || h.Type == nil { return "", false } return *h.Type, true } // HasType returns a boolean if a field has been set. func (h *HeatmapDefinition) HasType() bool { if h != nil && h.Type != nil { return true } return false } // SetType allocates a new h.Type and returns the pointer to it. func (h *HeatmapDefinition) SetType(v string) { h.Type = &v } // GetYaxis returns the Yaxis field if non-nil, zero value otherwise. func (h *HeatmapDefinition) GetYaxis() WidgetAxis { if h == nil || h.Yaxis == nil { return WidgetAxis{} } return *h.Yaxis } // GetYaxisOk returns a tuple with the Yaxis field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapDefinition) GetYaxisOk() (WidgetAxis, bool) { if h == nil || h.Yaxis == nil { return WidgetAxis{}, false } return *h.Yaxis, true } // HasYaxis returns a boolean if a field has been set. func (h *HeatmapDefinition) HasYaxis() bool { if h != nil && h.Yaxis != nil { return true } return false } // SetYaxis allocates a new h.Yaxis and returns the pointer to it. func (h *HeatmapDefinition) SetYaxis(v WidgetAxis) { h.Yaxis = &v } // GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise. func (h *HeatmapRequest) GetApmQuery() WidgetApmOrLogQuery { if h == nil || h.ApmQuery == nil { return WidgetApmOrLogQuery{} } return *h.ApmQuery } // GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) { if h == nil || h.ApmQuery == nil { return WidgetApmOrLogQuery{}, false } return *h.ApmQuery, true } // HasApmQuery returns a boolean if a field has been set. func (h *HeatmapRequest) HasApmQuery() bool { if h != nil && h.ApmQuery != nil { return true } return false } // SetApmQuery allocates a new h.ApmQuery and returns the pointer to it. func (h *HeatmapRequest) SetApmQuery(v WidgetApmOrLogQuery) { h.ApmQuery = &v } // GetLogQuery returns the LogQuery field if non-nil, zero value otherwise. func (h *HeatmapRequest) GetLogQuery() WidgetApmOrLogQuery { if h == nil || h.LogQuery == nil { return WidgetApmOrLogQuery{} } return *h.LogQuery } // GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) { if h == nil || h.LogQuery == nil { return WidgetApmOrLogQuery{}, false } return *h.LogQuery, true } // HasLogQuery returns a boolean if a field has been set. func (h *HeatmapRequest) HasLogQuery() bool { if h != nil && h.LogQuery != nil { return true } return false } // SetLogQuery allocates a new h.LogQuery and returns the pointer to it. func (h *HeatmapRequest) SetLogQuery(v WidgetApmOrLogQuery) { h.LogQuery = &v } // GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise. func (h *HeatmapRequest) GetMetricQuery() string { if h == nil || h.MetricQuery == nil { return "" } return *h.MetricQuery } // GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapRequest) GetMetricQueryOk() (string, bool) { if h == nil || h.MetricQuery == nil { return "", false } return *h.MetricQuery, true } // HasMetricQuery returns a boolean if a field has been set. func (h *HeatmapRequest) HasMetricQuery() bool { if h != nil && h.MetricQuery != nil { return true } return false } // SetMetricQuery allocates a new h.MetricQuery and returns the pointer to it. func (h *HeatmapRequest) SetMetricQuery(v string) { h.MetricQuery = &v } // GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise. func (h *HeatmapRequest) GetProcessQuery() WidgetProcessQuery { if h == nil || h.ProcessQuery == nil { return WidgetProcessQuery{} } return *h.ProcessQuery } // GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) { if h == nil || h.ProcessQuery == nil { return WidgetProcessQuery{}, false } return *h.ProcessQuery, true } // HasProcessQuery returns a boolean if a field has been set. func (h *HeatmapRequest) HasProcessQuery() bool { if h != nil && h.ProcessQuery != nil { return true } return false } // SetProcessQuery allocates a new h.ProcessQuery and returns the pointer to it. func (h *HeatmapRequest) SetProcessQuery(v WidgetProcessQuery) { h.ProcessQuery = &v } // GetStyle returns the Style field if non-nil, zero value otherwise. func (h *HeatmapRequest) GetStyle() WidgetRequestStyle { if h == nil || h.Style == nil { return WidgetRequestStyle{} } return *h.Style } // GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HeatmapRequest) GetStyleOk() (WidgetRequestStyle, bool) { if h == nil || h.Style == nil { return WidgetRequestStyle{}, false } return *h.Style, true } // HasStyle returns a boolean if a field has been set. func (h *HeatmapRequest) HasStyle() bool { if h != nil && h.Style != nil { return true } return false } // SetStyle allocates a new h.Style and returns the pointer to it. func (h *HeatmapRequest) SetStyle(v WidgetRequestStyle) { h.Style = &v } // GetEndTime returns the EndTime field if non-nil, zero value otherwise. func (h *HostActionMute) GetEndTime() string { if h == nil || h.EndTime == nil { return "" } return *h.EndTime } // GetEndTimeOk returns a tuple with the EndTime field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostActionMute) GetEndTimeOk() (string, bool) { if h == nil || h.EndTime == nil { return "", false } return *h.EndTime, true } // HasEndTime returns a boolean if a field has been set. func (h *HostActionMute) HasEndTime() bool { if h != nil && h.EndTime != nil { return true } return false } // SetEndTime allocates a new h.EndTime and returns the pointer to it. func (h *HostActionMute) SetEndTime(v string) { h.EndTime = &v } // GetMessage returns the Message field if non-nil, zero value otherwise. func (h *HostActionMute) GetMessage() string { if h == nil || h.Message == nil { return "" } return *h.Message } // GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostActionMute) GetMessageOk() (string, bool) { if h == nil || h.Message == nil { return "", false } return *h.Message, true } // HasMessage returns a boolean if a field has been set. func (h *HostActionMute) HasMessage() bool { if h != nil && h.Message != nil { return true } return false } // SetMessage allocates a new h.Message and returns the pointer to it. func (h *HostActionMute) SetMessage(v string) { h.Message = &v } // GetOverride returns the Override field if non-nil, zero value otherwise. func (h *HostActionMute) GetOverride() bool { if h == nil || h.Override == nil { return false } return *h.Override } // GetOverrideOk returns a tuple with the Override field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostActionMute) GetOverrideOk() (bool, bool) { if h == nil || h.Override == nil { return false, false } return *h.Override, true } // HasOverride returns a boolean if a field has been set. func (h *HostActionMute) HasOverride() bool { if h != nil && h.Override != nil { return true } return false } // SetOverride allocates a new h.Override and returns the pointer to it. func (h *HostActionMute) SetOverride(v bool) { h.Override = &v } // GetNodeType returns the NodeType field if non-nil, zero value otherwise. func (h *HostmapDefinition) GetNodeType() string { if h == nil || h.NodeType == nil { return "" } return *h.NodeType } // GetNodeTypeOk returns a tuple with the NodeType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapDefinition) GetNodeTypeOk() (string, bool) { if h == nil || h.NodeType == nil { return "", false } return *h.NodeType, true } // HasNodeType returns a boolean if a field has been set. func (h *HostmapDefinition) HasNodeType() bool { if h != nil && h.NodeType != nil { return true } return false } // SetNodeType allocates a new h.NodeType and returns the pointer to it. func (h *HostmapDefinition) SetNodeType(v string) { h.NodeType = &v } // GetNoGroupHosts returns the NoGroupHosts field if non-nil, zero value otherwise. func (h *HostmapDefinition) GetNoGroupHosts() bool { if h == nil || h.NoGroupHosts == nil { return false } return *h.NoGroupHosts } // GetNoGroupHostsOk returns a tuple with the NoGroupHosts field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapDefinition) GetNoGroupHostsOk() (bool, bool) { if h == nil || h.NoGroupHosts == nil { return false, false } return *h.NoGroupHosts, true } // HasNoGroupHosts returns a boolean if a field has been set. func (h *HostmapDefinition) HasNoGroupHosts() bool { if h != nil && h.NoGroupHosts != nil { return true } return false } // SetNoGroupHosts allocates a new h.NoGroupHosts and returns the pointer to it. func (h *HostmapDefinition) SetNoGroupHosts(v bool) { h.NoGroupHosts = &v } // GetNoMetricHosts returns the NoMetricHosts field if non-nil, zero value otherwise. func (h *HostmapDefinition) GetNoMetricHosts() bool { if h == nil || h.NoMetricHosts == nil { return false } return *h.NoMetricHosts } // GetNoMetricHostsOk returns a tuple with the NoMetricHosts field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapDefinition) GetNoMetricHostsOk() (bool, bool) { if h == nil || h.NoMetricHosts == nil { return false, false } return *h.NoMetricHosts, true } // HasNoMetricHosts returns a boolean if a field has been set. func (h *HostmapDefinition) HasNoMetricHosts() bool { if h != nil && h.NoMetricHosts != nil { return true } return false } // SetNoMetricHosts allocates a new h.NoMetricHosts and returns the pointer to it. func (h *HostmapDefinition) SetNoMetricHosts(v bool) { h.NoMetricHosts = &v } // GetRequests returns the Requests field if non-nil, zero value otherwise. func (h *HostmapDefinition) GetRequests() HostmapRequests { if h == nil || h.Requests == nil { return HostmapRequests{} } return *h.Requests } // GetRequestsOk returns a tuple with the Requests field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapDefinition) GetRequestsOk() (HostmapRequests, bool) { if h == nil || h.Requests == nil { return HostmapRequests{}, false } return *h.Requests, true } // HasRequests returns a boolean if a field has been set. func (h *HostmapDefinition) HasRequests() bool { if h != nil && h.Requests != nil { return true } return false } // SetRequests allocates a new h.Requests and returns the pointer to it. func (h *HostmapDefinition) SetRequests(v HostmapRequests) { h.Requests = &v } // GetStyle returns the Style field if non-nil, zero value otherwise. func (h *HostmapDefinition) GetStyle() HostmapStyle { if h == nil || h.Style == nil { return HostmapStyle{} } return *h.Style } // GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapDefinition) GetStyleOk() (HostmapStyle, bool) { if h == nil || h.Style == nil { return HostmapStyle{}, false } return *h.Style, true } // HasStyle returns a boolean if a field has been set. func (h *HostmapDefinition) HasStyle() bool { if h != nil && h.Style != nil { return true } return false } // SetStyle allocates a new h.Style and returns the pointer to it. func (h *HostmapDefinition) SetStyle(v HostmapStyle) { h.Style = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (h *HostmapDefinition) GetTitle() string { if h == nil || h.Title == nil { return "" } return *h.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapDefinition) GetTitleOk() (string, bool) { if h == nil || h.Title == nil { return "", false } return *h.Title, true } // HasTitle returns a boolean if a field has been set. func (h *HostmapDefinition) HasTitle() bool { if h != nil && h.Title != nil { return true } return false } // SetTitle allocates a new h.Title and returns the pointer to it. func (h *HostmapDefinition) SetTitle(v string) { h.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (h *HostmapDefinition) GetTitleAlign() string { if h == nil || h.TitleAlign == nil { return "" } return *h.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapDefinition) GetTitleAlignOk() (string, bool) { if h == nil || h.TitleAlign == nil { return "", false } return *h.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (h *HostmapDefinition) HasTitleAlign() bool { if h != nil && h.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new h.TitleAlign and returns the pointer to it. func (h *HostmapDefinition) SetTitleAlign(v string) { h.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (h *HostmapDefinition) GetTitleSize() string { if h == nil || h.TitleSize == nil { return "" } return *h.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapDefinition) GetTitleSizeOk() (string, bool) { if h == nil || h.TitleSize == nil { return "", false } return *h.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (h *HostmapDefinition) HasTitleSize() bool { if h != nil && h.TitleSize != nil { return true } return false } // SetTitleSize allocates a new h.TitleSize and returns the pointer to it. func (h *HostmapDefinition) SetTitleSize(v string) { h.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (h *HostmapDefinition) GetType() string { if h == nil || h.Type == nil { return "" } return *h.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapDefinition) GetTypeOk() (string, bool) { if h == nil || h.Type == nil { return "", false } return *h.Type, true } // HasType returns a boolean if a field has been set. func (h *HostmapDefinition) HasType() bool { if h != nil && h.Type != nil { return true } return false } // SetType allocates a new h.Type and returns the pointer to it. func (h *HostmapDefinition) SetType(v string) { h.Type = &v } // GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise. func (h *HostmapRequest) GetApmQuery() WidgetApmOrLogQuery { if h == nil || h.ApmQuery == nil { return WidgetApmOrLogQuery{} } return *h.ApmQuery } // GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) { if h == nil || h.ApmQuery == nil { return WidgetApmOrLogQuery{}, false } return *h.ApmQuery, true } // HasApmQuery returns a boolean if a field has been set. func (h *HostmapRequest) HasApmQuery() bool { if h != nil && h.ApmQuery != nil { return true } return false } // SetApmQuery allocates a new h.ApmQuery and returns the pointer to it. func (h *HostmapRequest) SetApmQuery(v WidgetApmOrLogQuery) { h.ApmQuery = &v } // GetLogQuery returns the LogQuery field if non-nil, zero value otherwise. func (h *HostmapRequest) GetLogQuery() WidgetApmOrLogQuery { if h == nil || h.LogQuery == nil { return WidgetApmOrLogQuery{} } return *h.LogQuery } // GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) { if h == nil || h.LogQuery == nil { return WidgetApmOrLogQuery{}, false } return *h.LogQuery, true } // HasLogQuery returns a boolean if a field has been set. func (h *HostmapRequest) HasLogQuery() bool { if h != nil && h.LogQuery != nil { return true } return false } // SetLogQuery allocates a new h.LogQuery and returns the pointer to it. func (h *HostmapRequest) SetLogQuery(v WidgetApmOrLogQuery) { h.LogQuery = &v } // GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise. func (h *HostmapRequest) GetMetricQuery() string { if h == nil || h.MetricQuery == nil { return "" } return *h.MetricQuery } // GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapRequest) GetMetricQueryOk() (string, bool) { if h == nil || h.MetricQuery == nil { return "", false } return *h.MetricQuery, true } // HasMetricQuery returns a boolean if a field has been set. func (h *HostmapRequest) HasMetricQuery() bool { if h != nil && h.MetricQuery != nil { return true } return false } // SetMetricQuery allocates a new h.MetricQuery and returns the pointer to it. func (h *HostmapRequest) SetMetricQuery(v string) { h.MetricQuery = &v } // GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise. func (h *HostmapRequest) GetProcessQuery() WidgetProcessQuery { if h == nil || h.ProcessQuery == nil { return WidgetProcessQuery{} } return *h.ProcessQuery } // GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) { if h == nil || h.ProcessQuery == nil { return WidgetProcessQuery{}, false } return *h.ProcessQuery, true } // HasProcessQuery returns a boolean if a field has been set. func (h *HostmapRequest) HasProcessQuery() bool { if h != nil && h.ProcessQuery != nil { return true } return false } // SetProcessQuery allocates a new h.ProcessQuery and returns the pointer to it. func (h *HostmapRequest) SetProcessQuery(v WidgetProcessQuery) { h.ProcessQuery = &v } // GetFill returns the Fill field if non-nil, zero value otherwise. func (h *HostmapRequests) GetFill() HostmapRequest { if h == nil || h.Fill == nil { return HostmapRequest{} } return *h.Fill } // GetFillOk returns a tuple with the Fill field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapRequests) GetFillOk() (HostmapRequest, bool) { if h == nil || h.Fill == nil { return HostmapRequest{}, false } return *h.Fill, true } // HasFill returns a boolean if a field has been set. func (h *HostmapRequests) HasFill() bool { if h != nil && h.Fill != nil { return true } return false } // SetFill allocates a new h.Fill and returns the pointer to it. func (h *HostmapRequests) SetFill(v HostmapRequest) { h.Fill = &v } // GetSize returns the Size field if non-nil, zero value otherwise. func (h *HostmapRequests) GetSize() HostmapRequest { if h == nil || h.Size == nil { return HostmapRequest{} } return *h.Size } // GetSizeOk returns a tuple with the Size field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapRequests) GetSizeOk() (HostmapRequest, bool) { if h == nil || h.Size == nil { return HostmapRequest{}, false } return *h.Size, true } // HasSize returns a boolean if a field has been set. func (h *HostmapRequests) HasSize() bool { if h != nil && h.Size != nil { return true } return false } // SetSize allocates a new h.Size and returns the pointer to it. func (h *HostmapRequests) SetSize(v HostmapRequest) { h.Size = &v } // GetFillMax returns the FillMax field if non-nil, zero value otherwise. func (h *HostmapStyle) GetFillMax() string { if h == nil || h.FillMax == nil { return "" } return *h.FillMax } // GetFillMaxOk returns a tuple with the FillMax field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapStyle) GetFillMaxOk() (string, bool) { if h == nil || h.FillMax == nil { return "", false } return *h.FillMax, true } // HasFillMax returns a boolean if a field has been set. func (h *HostmapStyle) HasFillMax() bool { if h != nil && h.FillMax != nil { return true } return false } // SetFillMax allocates a new h.FillMax and returns the pointer to it. func (h *HostmapStyle) SetFillMax(v string) { h.FillMax = &v } // GetFillMin returns the FillMin field if non-nil, zero value otherwise. func (h *HostmapStyle) GetFillMin() string { if h == nil || h.FillMin == nil { return "" } return *h.FillMin } // GetFillMinOk returns a tuple with the FillMin field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapStyle) GetFillMinOk() (string, bool) { if h == nil || h.FillMin == nil { return "", false } return *h.FillMin, true } // HasFillMin returns a boolean if a field has been set. func (h *HostmapStyle) HasFillMin() bool { if h != nil && h.FillMin != nil { return true } return false } // SetFillMin allocates a new h.FillMin and returns the pointer to it. func (h *HostmapStyle) SetFillMin(v string) { h.FillMin = &v } // GetPalette returns the Palette field if non-nil, zero value otherwise. func (h *HostmapStyle) GetPalette() string { if h == nil || h.Palette == nil { return "" } return *h.Palette } // GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapStyle) GetPaletteOk() (string, bool) { if h == nil || h.Palette == nil { return "", false } return *h.Palette, true } // HasPalette returns a boolean if a field has been set. func (h *HostmapStyle) HasPalette() bool { if h != nil && h.Palette != nil { return true } return false } // SetPalette allocates a new h.Palette and returns the pointer to it. func (h *HostmapStyle) SetPalette(v string) { h.Palette = &v } // GetPaletteFlip returns the PaletteFlip field if non-nil, zero value otherwise. func (h *HostmapStyle) GetPaletteFlip() bool { if h == nil || h.PaletteFlip == nil { return false } return *h.PaletteFlip } // GetPaletteFlipOk returns a tuple with the PaletteFlip field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (h *HostmapStyle) GetPaletteFlipOk() (bool, bool) { if h == nil || h.PaletteFlip == nil { return false, false } return *h.PaletteFlip, true } // HasPaletteFlip returns a boolean if a field has been set. func (h *HostmapStyle) HasPaletteFlip() bool { if h != nil && h.PaletteFlip != nil { return true } return false } // SetPaletteFlip allocates a new h.PaletteFlip and returns the pointer to it. func (h *HostmapStyle) SetPaletteFlip(v bool) { h.PaletteFlip = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (i *IframeDefinition) GetType() string { if i == nil || i.Type == nil { return "" } return *i.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IframeDefinition) GetTypeOk() (string, bool) { if i == nil || i.Type == nil { return "", false } return *i.Type, true } // HasType returns a boolean if a field has been set. func (i *IframeDefinition) HasType() bool { if i != nil && i.Type != nil { return true } return false } // SetType allocates a new i.Type and returns the pointer to it. func (i *IframeDefinition) SetType(v string) { i.Type = &v } // GetUrl returns the Url field if non-nil, zero value otherwise. func (i *IframeDefinition) GetUrl() string { if i == nil || i.Url == nil { return "" } return *i.Url } // GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IframeDefinition) GetUrlOk() (string, bool) { if i == nil || i.Url == nil { return "", false } return *i.Url, true } // HasUrl returns a boolean if a field has been set. func (i *IframeDefinition) HasUrl() bool { if i != nil && i.Url != nil { return true } return false } // SetUrl allocates a new i.Url and returns the pointer to it. func (i *IframeDefinition) SetUrl(v string) { i.Url = &v } // GetMargin returns the Margin field if non-nil, zero value otherwise. func (i *ImageDefinition) GetMargin() string { if i == nil || i.Margin == nil { return "" } return *i.Margin } // GetMarginOk returns a tuple with the Margin field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *ImageDefinition) GetMarginOk() (string, bool) { if i == nil || i.Margin == nil { return "", false } return *i.Margin, true } // HasMargin returns a boolean if a field has been set. func (i *ImageDefinition) HasMargin() bool { if i != nil && i.Margin != nil { return true } return false } // SetMargin allocates a new i.Margin and returns the pointer to it. func (i *ImageDefinition) SetMargin(v string) { i.Margin = &v } // GetSizing returns the Sizing field if non-nil, zero value otherwise. func (i *ImageDefinition) GetSizing() string { if i == nil || i.Sizing == nil { return "" } return *i.Sizing } // GetSizingOk returns a tuple with the Sizing field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *ImageDefinition) GetSizingOk() (string, bool) { if i == nil || i.Sizing == nil { return "", false } return *i.Sizing, true } // HasSizing returns a boolean if a field has been set. func (i *ImageDefinition) HasSizing() bool { if i != nil && i.Sizing != nil { return true } return false } // SetSizing allocates a new i.Sizing and returns the pointer to it. func (i *ImageDefinition) SetSizing(v string) { i.Sizing = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (i *ImageDefinition) GetType() string { if i == nil || i.Type == nil { return "" } return *i.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *ImageDefinition) GetTypeOk() (string, bool) { if i == nil || i.Type == nil { return "", false } return *i.Type, true } // HasType returns a boolean if a field has been set. func (i *ImageDefinition) HasType() bool { if i != nil && i.Type != nil { return true } return false } // SetType allocates a new i.Type and returns the pointer to it. func (i *ImageDefinition) SetType(v string) { i.Type = &v } // GetUrl returns the Url field if non-nil, zero value otherwise. func (i *ImageDefinition) GetUrl() string { if i == nil || i.Url == nil { return "" } return *i.Url } // GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *ImageDefinition) GetUrlOk() (string, bool) { if i == nil || i.Url == nil { return "", false } return *i.Url, true } // HasUrl returns a boolean if a field has been set. func (i *ImageDefinition) HasUrl() bool { if i != nil && i.Url != nil { return true } return false } // SetUrl allocates a new i.Url and returns the pointer to it. func (i *ImageDefinition) SetUrl(v string) { i.Url = &v } // GetAccountID returns the AccountID field if non-nil, zero value otherwise. func (i *IntegrationAWSAccount) GetAccountID() string { if i == nil || i.AccountID == nil { return "" } return *i.AccountID } // GetAccountIDOk returns a tuple with the AccountID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationAWSAccount) GetAccountIDOk() (string, bool) { if i == nil || i.AccountID == nil { return "", false } return *i.AccountID, true } // HasAccountID returns a boolean if a field has been set. func (i *IntegrationAWSAccount) HasAccountID() bool { if i != nil && i.AccountID != nil { return true } return false } // SetAccountID allocates a new i.AccountID and returns the pointer to it. func (i *IntegrationAWSAccount) SetAccountID(v string) { i.AccountID = &v } // GetRoleName returns the RoleName field if non-nil, zero value otherwise. func (i *IntegrationAWSAccount) GetRoleName() string { if i == nil || i.RoleName == nil { return "" } return *i.RoleName } // GetRoleNameOk returns a tuple with the RoleName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationAWSAccount) GetRoleNameOk() (string, bool) { if i == nil || i.RoleName == nil { return "", false } return *i.RoleName, true } // HasRoleName returns a boolean if a field has been set. func (i *IntegrationAWSAccount) HasRoleName() bool { if i != nil && i.RoleName != nil { return true } return false } // SetRoleName allocates a new i.RoleName and returns the pointer to it. func (i *IntegrationAWSAccount) SetRoleName(v string) { i.RoleName = &v } // GetAccountID returns the AccountID field if non-nil, zero value otherwise. func (i *IntegrationAWSAccountDeleteRequest) GetAccountID() string { if i == nil || i.AccountID == nil { return "" } return *i.AccountID } // GetAccountIDOk returns a tuple with the AccountID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationAWSAccountDeleteRequest) GetAccountIDOk() (string, bool) { if i == nil || i.AccountID == nil { return "", false } return *i.AccountID, true } // HasAccountID returns a boolean if a field has been set. func (i *IntegrationAWSAccountDeleteRequest) HasAccountID() bool { if i != nil && i.AccountID != nil { return true } return false } // SetAccountID allocates a new i.AccountID and returns the pointer to it. func (i *IntegrationAWSAccountDeleteRequest) SetAccountID(v string) { i.AccountID = &v } // GetRoleName returns the RoleName field if non-nil, zero value otherwise. func (i *IntegrationAWSAccountDeleteRequest) GetRoleName() string { if i == nil || i.RoleName == nil { return "" } return *i.RoleName } // GetRoleNameOk returns a tuple with the RoleName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationAWSAccountDeleteRequest) GetRoleNameOk() (string, bool) { if i == nil || i.RoleName == nil { return "", false } return *i.RoleName, true } // HasRoleName returns a boolean if a field has been set. func (i *IntegrationAWSAccountDeleteRequest) HasRoleName() bool { if i != nil && i.RoleName != nil { return true } return false } // SetRoleName allocates a new i.RoleName and returns the pointer to it. func (i *IntegrationAWSAccountDeleteRequest) SetRoleName(v string) { i.RoleName = &v } // GetClientEmail returns the ClientEmail field if non-nil, zero value otherwise. func (i *IntegrationGCP) GetClientEmail() string { if i == nil || i.ClientEmail == nil { return "" } return *i.ClientEmail } // GetClientEmailOk returns a tuple with the ClientEmail field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCP) GetClientEmailOk() (string, bool) { if i == nil || i.ClientEmail == nil { return "", false } return *i.ClientEmail, true } // HasClientEmail returns a boolean if a field has been set. func (i *IntegrationGCP) HasClientEmail() bool { if i != nil && i.ClientEmail != nil { return true } return false } // SetClientEmail allocates a new i.ClientEmail and returns the pointer to it. func (i *IntegrationGCP) SetClientEmail(v string) { i.ClientEmail = &v } // GetHostFilters returns the HostFilters field if non-nil, zero value otherwise. func (i *IntegrationGCP) GetHostFilters() string { if i == nil || i.HostFilters == nil { return "" } return *i.HostFilters } // GetHostFiltersOk returns a tuple with the HostFilters field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCP) GetHostFiltersOk() (string, bool) { if i == nil || i.HostFilters == nil { return "", false } return *i.HostFilters, true } // HasHostFilters returns a boolean if a field has been set. func (i *IntegrationGCP) HasHostFilters() bool { if i != nil && i.HostFilters != nil { return true } return false } // SetHostFilters allocates a new i.HostFilters and returns the pointer to it. func (i *IntegrationGCP) SetHostFilters(v string) { i.HostFilters = &v } // GetProjectID returns the ProjectID field if non-nil, zero value otherwise. func (i *IntegrationGCP) GetProjectID() string { if i == nil || i.ProjectID == nil { return "" } return *i.ProjectID } // GetProjectIDOk returns a tuple with the ProjectID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCP) GetProjectIDOk() (string, bool) { if i == nil || i.ProjectID == nil { return "", false } return *i.ProjectID, true } // HasProjectID returns a boolean if a field has been set. func (i *IntegrationGCP) HasProjectID() bool { if i != nil && i.ProjectID != nil { return true } return false } // SetProjectID allocates a new i.ProjectID and returns the pointer to it. func (i *IntegrationGCP) SetProjectID(v string) { i.ProjectID = &v } // GetAuthProviderX509CertURL returns the AuthProviderX509CertURL field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetAuthProviderX509CertURL() string { if i == nil || i.AuthProviderX509CertURL == nil { return "" } return *i.AuthProviderX509CertURL } // GetAuthProviderX509CertURLOk returns a tuple with the AuthProviderX509CertURL field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetAuthProviderX509CertURLOk() (string, bool) { if i == nil || i.AuthProviderX509CertURL == nil { return "", false } return *i.AuthProviderX509CertURL, true } // HasAuthProviderX509CertURL returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasAuthProviderX509CertURL() bool { if i != nil && i.AuthProviderX509CertURL != nil { return true } return false } // SetAuthProviderX509CertURL allocates a new i.AuthProviderX509CertURL and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetAuthProviderX509CertURL(v string) { i.AuthProviderX509CertURL = &v } // GetAuthURI returns the AuthURI field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetAuthURI() string { if i == nil || i.AuthURI == nil { return "" } return *i.AuthURI } // GetAuthURIOk returns a tuple with the AuthURI field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetAuthURIOk() (string, bool) { if i == nil || i.AuthURI == nil { return "", false } return *i.AuthURI, true } // HasAuthURI returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasAuthURI() bool { if i != nil && i.AuthURI != nil { return true } return false } // SetAuthURI allocates a new i.AuthURI and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetAuthURI(v string) { i.AuthURI = &v } // GetClientEmail returns the ClientEmail field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetClientEmail() string { if i == nil || i.ClientEmail == nil { return "" } return *i.ClientEmail } // GetClientEmailOk returns a tuple with the ClientEmail field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetClientEmailOk() (string, bool) { if i == nil || i.ClientEmail == nil { return "", false } return *i.ClientEmail, true } // HasClientEmail returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasClientEmail() bool { if i != nil && i.ClientEmail != nil { return true } return false } // SetClientEmail allocates a new i.ClientEmail and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetClientEmail(v string) { i.ClientEmail = &v } // GetClientID returns the ClientID field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetClientID() string { if i == nil || i.ClientID == nil { return "" } return *i.ClientID } // GetClientIDOk returns a tuple with the ClientID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetClientIDOk() (string, bool) { if i == nil || i.ClientID == nil { return "", false } return *i.ClientID, true } // HasClientID returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasClientID() bool { if i != nil && i.ClientID != nil { return true } return false } // SetClientID allocates a new i.ClientID and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetClientID(v string) { i.ClientID = &v } // GetClientX509CertURL returns the ClientX509CertURL field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetClientX509CertURL() string { if i == nil || i.ClientX509CertURL == nil { return "" } return *i.ClientX509CertURL } // GetClientX509CertURLOk returns a tuple with the ClientX509CertURL field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetClientX509CertURLOk() (string, bool) { if i == nil || i.ClientX509CertURL == nil { return "", false } return *i.ClientX509CertURL, true } // HasClientX509CertURL returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasClientX509CertURL() bool { if i != nil && i.ClientX509CertURL != nil { return true } return false } // SetClientX509CertURL allocates a new i.ClientX509CertURL and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetClientX509CertURL(v string) { i.ClientX509CertURL = &v } // GetHostFilters returns the HostFilters field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetHostFilters() string { if i == nil || i.HostFilters == nil { return "" } return *i.HostFilters } // GetHostFiltersOk returns a tuple with the HostFilters field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetHostFiltersOk() (string, bool) { if i == nil || i.HostFilters == nil { return "", false } return *i.HostFilters, true } // HasHostFilters returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasHostFilters() bool { if i != nil && i.HostFilters != nil { return true } return false } // SetHostFilters allocates a new i.HostFilters and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetHostFilters(v string) { i.HostFilters = &v } // GetPrivateKey returns the PrivateKey field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetPrivateKey() string { if i == nil || i.PrivateKey == nil { return "" } return *i.PrivateKey } // GetPrivateKeyOk returns a tuple with the PrivateKey field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetPrivateKeyOk() (string, bool) { if i == nil || i.PrivateKey == nil { return "", false } return *i.PrivateKey, true } // HasPrivateKey returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasPrivateKey() bool { if i != nil && i.PrivateKey != nil { return true } return false } // SetPrivateKey allocates a new i.PrivateKey and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetPrivateKey(v string) { i.PrivateKey = &v } // GetPrivateKeyID returns the PrivateKeyID field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetPrivateKeyID() string { if i == nil || i.PrivateKeyID == nil { return "" } return *i.PrivateKeyID } // GetPrivateKeyIDOk returns a tuple with the PrivateKeyID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetPrivateKeyIDOk() (string, bool) { if i == nil || i.PrivateKeyID == nil { return "", false } return *i.PrivateKeyID, true } // HasPrivateKeyID returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasPrivateKeyID() bool { if i != nil && i.PrivateKeyID != nil { return true } return false } // SetPrivateKeyID allocates a new i.PrivateKeyID and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetPrivateKeyID(v string) { i.PrivateKeyID = &v } // GetProjectID returns the ProjectID field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetProjectID() string { if i == nil || i.ProjectID == nil { return "" } return *i.ProjectID } // GetProjectIDOk returns a tuple with the ProjectID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetProjectIDOk() (string, bool) { if i == nil || i.ProjectID == nil { return "", false } return *i.ProjectID, true } // HasProjectID returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasProjectID() bool { if i != nil && i.ProjectID != nil { return true } return false } // SetProjectID allocates a new i.ProjectID and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetProjectID(v string) { i.ProjectID = &v } // GetTokenURI returns the TokenURI field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetTokenURI() string { if i == nil || i.TokenURI == nil { return "" } return *i.TokenURI } // GetTokenURIOk returns a tuple with the TokenURI field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetTokenURIOk() (string, bool) { if i == nil || i.TokenURI == nil { return "", false } return *i.TokenURI, true } // HasTokenURI returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasTokenURI() bool { if i != nil && i.TokenURI != nil { return true } return false } // SetTokenURI allocates a new i.TokenURI and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetTokenURI(v string) { i.TokenURI = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (i *IntegrationGCPCreateRequest) GetType() string { if i == nil || i.Type == nil { return "" } return *i.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPCreateRequest) GetTypeOk() (string, bool) { if i == nil || i.Type == nil { return "", false } return *i.Type, true } // HasType returns a boolean if a field has been set. func (i *IntegrationGCPCreateRequest) HasType() bool { if i != nil && i.Type != nil { return true } return false } // SetType allocates a new i.Type and returns the pointer to it. func (i *IntegrationGCPCreateRequest) SetType(v string) { i.Type = &v } // GetClientEmail returns the ClientEmail field if non-nil, zero value otherwise. func (i *IntegrationGCPDeleteRequest) GetClientEmail() string { if i == nil || i.ClientEmail == nil { return "" } return *i.ClientEmail } // GetClientEmailOk returns a tuple with the ClientEmail field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPDeleteRequest) GetClientEmailOk() (string, bool) { if i == nil || i.ClientEmail == nil { return "", false } return *i.ClientEmail, true } // HasClientEmail returns a boolean if a field has been set. func (i *IntegrationGCPDeleteRequest) HasClientEmail() bool { if i != nil && i.ClientEmail != nil { return true } return false } // SetClientEmail allocates a new i.ClientEmail and returns the pointer to it. func (i *IntegrationGCPDeleteRequest) SetClientEmail(v string) { i.ClientEmail = &v } // GetProjectID returns the ProjectID field if non-nil, zero value otherwise. func (i *IntegrationGCPDeleteRequest) GetProjectID() string { if i == nil || i.ProjectID == nil { return "" } return *i.ProjectID } // GetProjectIDOk returns a tuple with the ProjectID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPDeleteRequest) GetProjectIDOk() (string, bool) { if i == nil || i.ProjectID == nil { return "", false } return *i.ProjectID, true } // HasProjectID returns a boolean if a field has been set. func (i *IntegrationGCPDeleteRequest) HasProjectID() bool { if i != nil && i.ProjectID != nil { return true } return false } // SetProjectID allocates a new i.ProjectID and returns the pointer to it. func (i *IntegrationGCPDeleteRequest) SetProjectID(v string) { i.ProjectID = &v } // GetClientEmail returns the ClientEmail field if non-nil, zero value otherwise. func (i *IntegrationGCPUpdateRequest) GetClientEmail() string { if i == nil || i.ClientEmail == nil { return "" } return *i.ClientEmail } // GetClientEmailOk returns a tuple with the ClientEmail field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPUpdateRequest) GetClientEmailOk() (string, bool) { if i == nil || i.ClientEmail == nil { return "", false } return *i.ClientEmail, true } // HasClientEmail returns a boolean if a field has been set. func (i *IntegrationGCPUpdateRequest) HasClientEmail() bool { if i != nil && i.ClientEmail != nil { return true } return false } // SetClientEmail allocates a new i.ClientEmail and returns the pointer to it. func (i *IntegrationGCPUpdateRequest) SetClientEmail(v string) { i.ClientEmail = &v } // GetHostFilters returns the HostFilters field if non-nil, zero value otherwise. func (i *IntegrationGCPUpdateRequest) GetHostFilters() string { if i == nil || i.HostFilters == nil { return "" } return *i.HostFilters } // GetHostFiltersOk returns a tuple with the HostFilters field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPUpdateRequest) GetHostFiltersOk() (string, bool) { if i == nil || i.HostFilters == nil { return "", false } return *i.HostFilters, true } // HasHostFilters returns a boolean if a field has been set. func (i *IntegrationGCPUpdateRequest) HasHostFilters() bool { if i != nil && i.HostFilters != nil { return true } return false } // SetHostFilters allocates a new i.HostFilters and returns the pointer to it. func (i *IntegrationGCPUpdateRequest) SetHostFilters(v string) { i.HostFilters = &v } // GetProjectID returns the ProjectID field if non-nil, zero value otherwise. func (i *IntegrationGCPUpdateRequest) GetProjectID() string { if i == nil || i.ProjectID == nil { return "" } return *i.ProjectID } // GetProjectIDOk returns a tuple with the ProjectID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationGCPUpdateRequest) GetProjectIDOk() (string, bool) { if i == nil || i.ProjectID == nil { return "", false } return *i.ProjectID, true } // HasProjectID returns a boolean if a field has been set. func (i *IntegrationGCPUpdateRequest) HasProjectID() bool { if i != nil && i.ProjectID != nil { return true } return false } // SetProjectID allocates a new i.ProjectID and returns the pointer to it. func (i *IntegrationGCPUpdateRequest) SetProjectID(v string) { i.ProjectID = &v } // GetAPIToken returns the APIToken field if non-nil, zero value otherwise. func (i *integrationPD) GetAPIToken() string { if i == nil || i.APIToken == nil { return "" } return *i.APIToken } // GetAPITokenOk returns a tuple with the APIToken field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *integrationPD) GetAPITokenOk() (string, bool) { if i == nil || i.APIToken == nil { return "", false } return *i.APIToken, true } // HasAPIToken returns a boolean if a field has been set. func (i *integrationPD) HasAPIToken() bool { if i != nil && i.APIToken != nil { return true } return false } // SetAPIToken allocates a new i.APIToken and returns the pointer to it. func (i *integrationPD) SetAPIToken(v string) { i.APIToken = &v } // GetSubdomain returns the Subdomain field if non-nil, zero value otherwise. func (i *integrationPD) GetSubdomain() string { if i == nil || i.Subdomain == nil { return "" } return *i.Subdomain } // GetSubdomainOk returns a tuple with the Subdomain field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *integrationPD) GetSubdomainOk() (string, bool) { if i == nil || i.Subdomain == nil { return "", false } return *i.Subdomain, true } // HasSubdomain returns a boolean if a field has been set. func (i *integrationPD) HasSubdomain() bool { if i != nil && i.Subdomain != nil { return true } return false } // SetSubdomain allocates a new i.Subdomain and returns the pointer to it. func (i *integrationPD) SetSubdomain(v string) { i.Subdomain = &v } // GetAPIToken returns the APIToken field if non-nil, zero value otherwise. func (i *IntegrationPDRequest) GetAPIToken() string { if i == nil || i.APIToken == nil { return "" } return *i.APIToken } // GetAPITokenOk returns a tuple with the APIToken field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationPDRequest) GetAPITokenOk() (string, bool) { if i == nil || i.APIToken == nil { return "", false } return *i.APIToken, true } // HasAPIToken returns a boolean if a field has been set. func (i *IntegrationPDRequest) HasAPIToken() bool { if i != nil && i.APIToken != nil { return true } return false } // SetAPIToken allocates a new i.APIToken and returns the pointer to it. func (i *IntegrationPDRequest) SetAPIToken(v string) { i.APIToken = &v } // GetRunCheck returns the RunCheck field if non-nil, zero value otherwise. func (i *IntegrationPDRequest) GetRunCheck() bool { if i == nil || i.RunCheck == nil { return false } return *i.RunCheck } // GetRunCheckOk returns a tuple with the RunCheck field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationPDRequest) GetRunCheckOk() (bool, bool) { if i == nil || i.RunCheck == nil { return false, false } return *i.RunCheck, true } // HasRunCheck returns a boolean if a field has been set. func (i *IntegrationPDRequest) HasRunCheck() bool { if i != nil && i.RunCheck != nil { return true } return false } // SetRunCheck allocates a new i.RunCheck and returns the pointer to it. func (i *IntegrationPDRequest) SetRunCheck(v bool) { i.RunCheck = &v } // GetSubdomain returns the Subdomain field if non-nil, zero value otherwise. func (i *IntegrationPDRequest) GetSubdomain() string { if i == nil || i.Subdomain == nil { return "" } return *i.Subdomain } // GetSubdomainOk returns a tuple with the Subdomain field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationPDRequest) GetSubdomainOk() (string, bool) { if i == nil || i.Subdomain == nil { return "", false } return *i.Subdomain, true } // HasSubdomain returns a boolean if a field has been set. func (i *IntegrationPDRequest) HasSubdomain() bool { if i != nil && i.Subdomain != nil { return true } return false } // SetSubdomain allocates a new i.Subdomain and returns the pointer to it. func (i *IntegrationPDRequest) SetSubdomain(v string) { i.Subdomain = &v } // GetRunCheck returns the RunCheck field if non-nil, zero value otherwise. func (i *IntegrationSlackRequest) GetRunCheck() bool { if i == nil || i.RunCheck == nil { return false } return *i.RunCheck } // GetRunCheckOk returns a tuple with the RunCheck field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (i *IntegrationSlackRequest) GetRunCheckOk() (bool, bool) { if i == nil || i.RunCheck == nil { return false, false } return *i.RunCheck, true } // HasRunCheck returns a boolean if a field has been set. func (i *IntegrationSlackRequest) HasRunCheck() bool { if i != nil && i.RunCheck != nil { return true } return false } // SetRunCheck allocates a new i.RunCheck and returns the pointer to it. func (i *IntegrationSlackRequest) SetRunCheck(v bool) { i.RunCheck = &v } // GetID returns the ID field if non-nil, zero value otherwise. func (l *LogSet) GetID() json.Number { if l == nil || l.ID == nil { return "" } return *l.ID } // GetIDOk returns a tuple with the ID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (l *LogSet) GetIDOk() (json.Number, bool) { if l == nil || l.ID == nil { return "", false } return *l.ID, true } // HasID returns a boolean if a field has been set. func (l *LogSet) HasID() bool { if l != nil && l.ID != nil { return true } return false } // SetID allocates a new l.ID and returns the pointer to it. func (l *LogSet) SetID(v json.Number) { l.ID = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (l *LogSet) GetName() string { if l == nil || l.Name == nil { return "" } return *l.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (l *LogSet) GetNameOk() (string, bool) { if l == nil || l.Name == nil { return "", false } return *l.Name, true } // HasName returns a boolean if a field has been set. func (l *LogSet) HasName() bool { if l != nil && l.Name != nil { return true } return false } // SetName allocates a new l.Name and returns the pointer to it. func (l *LogSet) SetName(v string) { l.Name = &v } // GetLogset returns the Logset field if non-nil, zero value otherwise. func (l *LogStreamDefinition) GetLogset() string { if l == nil || l.Logset == nil { return "" } return *l.Logset } // GetLogsetOk returns a tuple with the Logset field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (l *LogStreamDefinition) GetLogsetOk() (string, bool) { if l == nil || l.Logset == nil { return "", false } return *l.Logset, true } // HasLogset returns a boolean if a field has been set. func (l *LogStreamDefinition) HasLogset() bool { if l != nil && l.Logset != nil { return true } return false } // SetLogset allocates a new l.Logset and returns the pointer to it. func (l *LogStreamDefinition) SetLogset(v string) { l.Logset = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (l *LogStreamDefinition) GetQuery() string { if l == nil || l.Query == nil { return "" } return *l.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (l *LogStreamDefinition) GetQueryOk() (string, bool) { if l == nil || l.Query == nil { return "", false } return *l.Query, true } // HasQuery returns a boolean if a field has been set. func (l *LogStreamDefinition) HasQuery() bool { if l != nil && l.Query != nil { return true } return false } // SetQuery allocates a new l.Query and returns the pointer to it. func (l *LogStreamDefinition) SetQuery(v string) { l.Query = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (l *LogStreamDefinition) GetTime() WidgetTime { if l == nil || l.Time == nil { return WidgetTime{} } return *l.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (l *LogStreamDefinition) GetTimeOk() (WidgetTime, bool) { if l == nil || l.Time == nil { return WidgetTime{}, false } return *l.Time, true } // HasTime returns a boolean if a field has been set. func (l *LogStreamDefinition) HasTime() bool { if l != nil && l.Time != nil { return true } return false } // SetTime allocates a new l.Time and returns the pointer to it. func (l *LogStreamDefinition) SetTime(v WidgetTime) { l.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (l *LogStreamDefinition) GetTitle() string { if l == nil || l.Title == nil { return "" } return *l.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (l *LogStreamDefinition) GetTitleOk() (string, bool) { if l == nil || l.Title == nil { return "", false } return *l.Title, true } // HasTitle returns a boolean if a field has been set. func (l *LogStreamDefinition) HasTitle() bool { if l != nil && l.Title != nil { return true } return false } // SetTitle allocates a new l.Title and returns the pointer to it. func (l *LogStreamDefinition) SetTitle(v string) { l.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (l *LogStreamDefinition) GetTitleAlign() string { if l == nil || l.TitleAlign == nil { return "" } return *l.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (l *LogStreamDefinition) GetTitleAlignOk() (string, bool) { if l == nil || l.TitleAlign == nil { return "", false } return *l.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (l *LogStreamDefinition) HasTitleAlign() bool { if l != nil && l.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new l.TitleAlign and returns the pointer to it. func (l *LogStreamDefinition) SetTitleAlign(v string) { l.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (l *LogStreamDefinition) GetTitleSize() string { if l == nil || l.TitleSize == nil { return "" } return *l.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (l *LogStreamDefinition) GetTitleSizeOk() (string, bool) { if l == nil || l.TitleSize == nil { return "", false } return *l.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (l *LogStreamDefinition) HasTitleSize() bool { if l != nil && l.TitleSize != nil { return true } return false } // SetTitleSize allocates a new l.TitleSize and returns the pointer to it. func (l *LogStreamDefinition) SetTitleSize(v string) { l.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (l *LogStreamDefinition) GetType() string { if l == nil || l.Type == nil { return "" } return *l.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (l *LogStreamDefinition) GetTypeOk() (string, bool) { if l == nil || l.Type == nil { return "", false } return *l.Type, true } // HasType returns a boolean if a field has been set. func (l *LogStreamDefinition) HasType() bool { if l != nil && l.Type != nil { return true } return false } // SetType allocates a new l.Type and returns the pointer to it. func (l *LogStreamDefinition) SetType(v string) { l.Type = &v } // GetColorPreference returns the ColorPreference field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetColorPreference() string { if m == nil || m.ColorPreference == nil { return "" } return *m.ColorPreference } // GetColorPreferenceOk returns a tuple with the ColorPreference field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetColorPreferenceOk() (string, bool) { if m == nil || m.ColorPreference == nil { return "", false } return *m.ColorPreference, true } // HasColorPreference returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasColorPreference() bool { if m != nil && m.ColorPreference != nil { return true } return false } // SetColorPreference allocates a new m.ColorPreference and returns the pointer to it. func (m *ManageStatusDefinition) SetColorPreference(v string) { m.ColorPreference = &v } // GetCount returns the Count field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetCount() int { if m == nil || m.Count == nil { return 0 } return *m.Count } // GetCountOk returns a tuple with the Count field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetCountOk() (int, bool) { if m == nil || m.Count == nil { return 0, false } return *m.Count, true } // HasCount returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasCount() bool { if m != nil && m.Count != nil { return true } return false } // SetCount allocates a new m.Count and returns the pointer to it. func (m *ManageStatusDefinition) SetCount(v int) { m.Count = &v } // GetDisplayFormat returns the DisplayFormat field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetDisplayFormat() string { if m == nil || m.DisplayFormat == nil { return "" } return *m.DisplayFormat } // GetDisplayFormatOk returns a tuple with the DisplayFormat field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetDisplayFormatOk() (string, bool) { if m == nil || m.DisplayFormat == nil { return "", false } return *m.DisplayFormat, true } // HasDisplayFormat returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasDisplayFormat() bool { if m != nil && m.DisplayFormat != nil { return true } return false } // SetDisplayFormat allocates a new m.DisplayFormat and returns the pointer to it. func (m *ManageStatusDefinition) SetDisplayFormat(v string) { m.DisplayFormat = &v } // GetHideZeroCounts returns the HideZeroCounts field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetHideZeroCounts() bool { if m == nil || m.HideZeroCounts == nil { return false } return *m.HideZeroCounts } // GetHideZeroCountsOk returns a tuple with the HideZeroCounts field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetHideZeroCountsOk() (bool, bool) { if m == nil || m.HideZeroCounts == nil { return false, false } return *m.HideZeroCounts, true } // HasHideZeroCounts returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasHideZeroCounts() bool { if m != nil && m.HideZeroCounts != nil { return true } return false } // SetHideZeroCounts allocates a new m.HideZeroCounts and returns the pointer to it. func (m *ManageStatusDefinition) SetHideZeroCounts(v bool) { m.HideZeroCounts = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetQuery() string { if m == nil || m.Query == nil { return "" } return *m.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetQueryOk() (string, bool) { if m == nil || m.Query == nil { return "", false } return *m.Query, true } // HasQuery returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasQuery() bool { if m != nil && m.Query != nil { return true } return false } // SetQuery allocates a new m.Query and returns the pointer to it. func (m *ManageStatusDefinition) SetQuery(v string) { m.Query = &v } // GetSort returns the Sort field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetSort() string { if m == nil || m.Sort == nil { return "" } return *m.Sort } // GetSortOk returns a tuple with the Sort field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetSortOk() (string, bool) { if m == nil || m.Sort == nil { return "", false } return *m.Sort, true } // HasSort returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasSort() bool { if m != nil && m.Sort != nil { return true } return false } // SetSort allocates a new m.Sort and returns the pointer to it. func (m *ManageStatusDefinition) SetSort(v string) { m.Sort = &v } // GetStart returns the Start field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetStart() int { if m == nil || m.Start == nil { return 0 } return *m.Start } // GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetStartOk() (int, bool) { if m == nil || m.Start == nil { return 0, false } return *m.Start, true } // HasStart returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasStart() bool { if m != nil && m.Start != nil { return true } return false } // SetStart allocates a new m.Start and returns the pointer to it. func (m *ManageStatusDefinition) SetStart(v int) { m.Start = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetTitle() string { if m == nil || m.Title == nil { return "" } return *m.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetTitleOk() (string, bool) { if m == nil || m.Title == nil { return "", false } return *m.Title, true } // HasTitle returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasTitle() bool { if m != nil && m.Title != nil { return true } return false } // SetTitle allocates a new m.Title and returns the pointer to it. func (m *ManageStatusDefinition) SetTitle(v string) { m.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetTitleAlign() string { if m == nil || m.TitleAlign == nil { return "" } return *m.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetTitleAlignOk() (string, bool) { if m == nil || m.TitleAlign == nil { return "", false } return *m.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasTitleAlign() bool { if m != nil && m.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new m.TitleAlign and returns the pointer to it. func (m *ManageStatusDefinition) SetTitleAlign(v string) { m.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetTitleSize() string { if m == nil || m.TitleSize == nil { return "" } return *m.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetTitleSizeOk() (string, bool) { if m == nil || m.TitleSize == nil { return "", false } return *m.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasTitleSize() bool { if m != nil && m.TitleSize != nil { return true } return false } // SetTitleSize allocates a new m.TitleSize and returns the pointer to it. func (m *ManageStatusDefinition) SetTitleSize(v string) { m.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (m *ManageStatusDefinition) GetType() string { if m == nil || m.Type == nil { return "" } return *m.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *ManageStatusDefinition) GetTypeOk() (string, bool) { if m == nil || m.Type == nil { return "", false } return *m.Type, true } // HasType returns a boolean if a field has been set. func (m *ManageStatusDefinition) HasType() bool { if m != nil && m.Type != nil { return true } return false } // SetType allocates a new m.Type and returns the pointer to it. func (m *ManageStatusDefinition) SetType(v string) { m.Type = &v } // GetHost returns the Host field if non-nil, zero value otherwise. func (m *Metric) GetHost() string { if m == nil || m.Host == nil { return "" } return *m.Host } // GetHostOk returns a tuple with the Host field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Metric) GetHostOk() (string, bool) { if m == nil || m.Host == nil { return "", false } return *m.Host, true } // HasHost returns a boolean if a field has been set. func (m *Metric) HasHost() bool { if m != nil && m.Host != nil { return true } return false } // SetHost allocates a new m.Host and returns the pointer to it. func (m *Metric) SetHost(v string) { m.Host = &v } // GetMetric returns the Metric field if non-nil, zero value otherwise. func (m *Metric) GetMetric() string { if m == nil || m.Metric == nil { return "" } return *m.Metric } // GetMetricOk returns a tuple with the Metric field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Metric) GetMetricOk() (string, bool) { if m == nil || m.Metric == nil { return "", false } return *m.Metric, true } // HasMetric returns a boolean if a field has been set. func (m *Metric) HasMetric() bool { if m != nil && m.Metric != nil { return true } return false } // SetMetric allocates a new m.Metric and returns the pointer to it. func (m *Metric) SetMetric(v string) { m.Metric = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (m *Metric) GetType() string { if m == nil || m.Type == nil { return "" } return *m.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Metric) GetTypeOk() (string, bool) { if m == nil || m.Type == nil { return "", false } return *m.Type, true } // HasType returns a boolean if a field has been set. func (m *Metric) HasType() bool { if m != nil && m.Type != nil { return true } return false } // SetType allocates a new m.Type and returns the pointer to it. func (m *Metric) SetType(v string) { m.Type = &v } // GetUnit returns the Unit field if non-nil, zero value otherwise. func (m *Metric) GetUnit() string { if m == nil || m.Unit == nil { return "" } return *m.Unit } // GetUnitOk returns a tuple with the Unit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Metric) GetUnitOk() (string, bool) { if m == nil || m.Unit == nil { return "", false } return *m.Unit, true } // HasUnit returns a boolean if a field has been set. func (m *Metric) HasUnit() bool { if m != nil && m.Unit != nil { return true } return false } // SetUnit allocates a new m.Unit and returns the pointer to it. func (m *Metric) SetUnit(v string) { m.Unit = &v } // GetDescription returns the Description field if non-nil, zero value otherwise. func (m *MetricMetadata) GetDescription() string { if m == nil || m.Description == nil { return "" } return *m.Description } // GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *MetricMetadata) GetDescriptionOk() (string, bool) { if m == nil || m.Description == nil { return "", false } return *m.Description, true } // HasDescription returns a boolean if a field has been set. func (m *MetricMetadata) HasDescription() bool { if m != nil && m.Description != nil { return true } return false } // SetDescription allocates a new m.Description and returns the pointer to it. func (m *MetricMetadata) SetDescription(v string) { m.Description = &v } // GetPerUnit returns the PerUnit field if non-nil, zero value otherwise. func (m *MetricMetadata) GetPerUnit() string { if m == nil || m.PerUnit == nil { return "" } return *m.PerUnit } // GetPerUnitOk returns a tuple with the PerUnit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *MetricMetadata) GetPerUnitOk() (string, bool) { if m == nil || m.PerUnit == nil { return "", false } return *m.PerUnit, true } // HasPerUnit returns a boolean if a field has been set. func (m *MetricMetadata) HasPerUnit() bool { if m != nil && m.PerUnit != nil { return true } return false } // SetPerUnit allocates a new m.PerUnit and returns the pointer to it. func (m *MetricMetadata) SetPerUnit(v string) { m.PerUnit = &v } // GetShortName returns the ShortName field if non-nil, zero value otherwise. func (m *MetricMetadata) GetShortName() string { if m == nil || m.ShortName == nil { return "" } return *m.ShortName } // GetShortNameOk returns a tuple with the ShortName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *MetricMetadata) GetShortNameOk() (string, bool) { if m == nil || m.ShortName == nil { return "", false } return *m.ShortName, true } // HasShortName returns a boolean if a field has been set. func (m *MetricMetadata) HasShortName() bool { if m != nil && m.ShortName != nil { return true } return false } // SetShortName allocates a new m.ShortName and returns the pointer to it. func (m *MetricMetadata) SetShortName(v string) { m.ShortName = &v } // GetStatsdInterval returns the StatsdInterval field if non-nil, zero value otherwise. func (m *MetricMetadata) GetStatsdInterval() int { if m == nil || m.StatsdInterval == nil { return 0 } return *m.StatsdInterval } // GetStatsdIntervalOk returns a tuple with the StatsdInterval field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *MetricMetadata) GetStatsdIntervalOk() (int, bool) { if m == nil || m.StatsdInterval == nil { return 0, false } return *m.StatsdInterval, true } // HasStatsdInterval returns a boolean if a field has been set. func (m *MetricMetadata) HasStatsdInterval() bool { if m != nil && m.StatsdInterval != nil { return true } return false } // SetStatsdInterval allocates a new m.StatsdInterval and returns the pointer to it. func (m *MetricMetadata) SetStatsdInterval(v int) { m.StatsdInterval = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (m *MetricMetadata) GetType() string { if m == nil || m.Type == nil { return "" } return *m.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *MetricMetadata) GetTypeOk() (string, bool) { if m == nil || m.Type == nil { return "", false } return *m.Type, true } // HasType returns a boolean if a field has been set. func (m *MetricMetadata) HasType() bool { if m != nil && m.Type != nil { return true } return false } // SetType allocates a new m.Type and returns the pointer to it. func (m *MetricMetadata) SetType(v string) { m.Type = &v } // GetUnit returns the Unit field if non-nil, zero value otherwise. func (m *MetricMetadata) GetUnit() string { if m == nil || m.Unit == nil { return "" } return *m.Unit } // GetUnitOk returns a tuple with the Unit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *MetricMetadata) GetUnitOk() (string, bool) { if m == nil || m.Unit == nil { return "", false } return *m.Unit, true } // HasUnit returns a boolean if a field has been set. func (m *MetricMetadata) HasUnit() bool { if m != nil && m.Unit != nil { return true } return false } // SetUnit allocates a new m.Unit and returns the pointer to it. func (m *MetricMetadata) SetUnit(v string) { m.Unit = &v } // GetCreator returns the Creator field if non-nil, zero value otherwise. func (m *Monitor) GetCreator() Creator { if m == nil || m.Creator == nil { return Creator{} } return *m.Creator } // GetCreatorOk returns a tuple with the Creator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Monitor) GetCreatorOk() (Creator, bool) { if m == nil || m.Creator == nil { return Creator{}, false } return *m.Creator, true } // HasCreator returns a boolean if a field has been set. func (m *Monitor) HasCreator() bool { if m != nil && m.Creator != nil { return true } return false } // SetCreator allocates a new m.Creator and returns the pointer to it. func (m *Monitor) SetCreator(v Creator) { m.Creator = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (m *Monitor) GetId() int { if m == nil || m.Id == nil { return 0 } return *m.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Monitor) GetIdOk() (int, bool) { if m == nil || m.Id == nil { return 0, false } return *m.Id, true } // HasId returns a boolean if a field has been set. func (m *Monitor) HasId() bool { if m != nil && m.Id != nil { return true } return false } // SetId allocates a new m.Id and returns the pointer to it. func (m *Monitor) SetId(v int) { m.Id = &v } // GetMessage returns the Message field if non-nil, zero value otherwise. func (m *Monitor) GetMessage() string { if m == nil || m.Message == nil { return "" } return *m.Message } // GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Monitor) GetMessageOk() (string, bool) { if m == nil || m.Message == nil { return "", false } return *m.Message, true } // HasMessage returns a boolean if a field has been set. func (m *Monitor) HasMessage() bool { if m != nil && m.Message != nil { return true } return false } // SetMessage allocates a new m.Message and returns the pointer to it. func (m *Monitor) SetMessage(v string) { m.Message = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (m *Monitor) GetName() string { if m == nil || m.Name == nil { return "" } return *m.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Monitor) GetNameOk() (string, bool) { if m == nil || m.Name == nil { return "", false } return *m.Name, true } // HasName returns a boolean if a field has been set. func (m *Monitor) HasName() bool { if m != nil && m.Name != nil { return true } return false } // SetName allocates a new m.Name and returns the pointer to it. func (m *Monitor) SetName(v string) { m.Name = &v } // GetOptions returns the Options field if non-nil, zero value otherwise. func (m *Monitor) GetOptions() Options { if m == nil || m.Options == nil { return Options{} } return *m.Options } // GetOptionsOk returns a tuple with the Options field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Monitor) GetOptionsOk() (Options, bool) { if m == nil || m.Options == nil { return Options{}, false } return *m.Options, true } // HasOptions returns a boolean if a field has been set. func (m *Monitor) HasOptions() bool { if m != nil && m.Options != nil { return true } return false } // SetOptions allocates a new m.Options and returns the pointer to it. func (m *Monitor) SetOptions(v Options) { m.Options = &v } // GetOverallState returns the OverallState field if non-nil, zero value otherwise. func (m *Monitor) GetOverallState() string { if m == nil || m.OverallState == nil { return "" } return *m.OverallState } // GetOverallStateOk returns a tuple with the OverallState field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Monitor) GetOverallStateOk() (string, bool) { if m == nil || m.OverallState == nil { return "", false } return *m.OverallState, true } // HasOverallState returns a boolean if a field has been set. func (m *Monitor) HasOverallState() bool { if m != nil && m.OverallState != nil { return true } return false } // SetOverallState allocates a new m.OverallState and returns the pointer to it. func (m *Monitor) SetOverallState(v string) { m.OverallState = &v } // GetOverallStateModified returns the OverallStateModified field if non-nil, zero value otherwise. func (m *Monitor) GetOverallStateModified() string { if m == nil || m.OverallStateModified == nil { return "" } return *m.OverallStateModified } // GetOverallStateModifiedOk returns a tuple with the OverallStateModified field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Monitor) GetOverallStateModifiedOk() (string, bool) { if m == nil || m.OverallStateModified == nil { return "", false } return *m.OverallStateModified, true } // HasOverallStateModified returns a boolean if a field has been set. func (m *Monitor) HasOverallStateModified() bool { if m != nil && m.OverallStateModified != nil { return true } return false } // SetOverallStateModified allocates a new m.OverallStateModified and returns the pointer to it. func (m *Monitor) SetOverallStateModified(v string) { m.OverallStateModified = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (m *Monitor) GetQuery() string { if m == nil || m.Query == nil { return "" } return *m.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Monitor) GetQueryOk() (string, bool) { if m == nil || m.Query == nil { return "", false } return *m.Query, true } // HasQuery returns a boolean if a field has been set. func (m *Monitor) HasQuery() bool { if m != nil && m.Query != nil { return true } return false } // SetQuery allocates a new m.Query and returns the pointer to it. func (m *Monitor) SetQuery(v string) { m.Query = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (m *Monitor) GetType() string { if m == nil || m.Type == nil { return "" } return *m.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *Monitor) GetTypeOk() (string, bool) { if m == nil || m.Type == nil { return "", false } return *m.Type, true } // HasType returns a boolean if a field has been set. func (m *Monitor) HasType() bool { if m != nil && m.Type != nil { return true } return false } // SetType allocates a new m.Type and returns the pointer to it. func (m *Monitor) SetType(v string) { m.Type = &v } // GetEnd returns the End field if non-nil, zero value otherwise. func (m *MuteMonitorScope) GetEnd() int { if m == nil || m.End == nil { return 0 } return *m.End } // GetEndOk returns a tuple with the End field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *MuteMonitorScope) GetEndOk() (int, bool) { if m == nil || m.End == nil { return 0, false } return *m.End, true } // HasEnd returns a boolean if a field has been set. func (m *MuteMonitorScope) HasEnd() bool { if m != nil && m.End != nil { return true } return false } // SetEnd allocates a new m.End and returns the pointer to it. func (m *MuteMonitorScope) SetEnd(v int) { m.End = &v } // GetScope returns the Scope field if non-nil, zero value otherwise. func (m *MuteMonitorScope) GetScope() string { if m == nil || m.Scope == nil { return "" } return *m.Scope } // GetScopeOk returns a tuple with the Scope field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (m *MuteMonitorScope) GetScopeOk() (string, bool) { if m == nil || m.Scope == nil { return "", false } return *m.Scope, true } // HasScope returns a boolean if a field has been set. func (m *MuteMonitorScope) HasScope() bool { if m != nil && m.Scope != nil { return true } return false } // SetScope allocates a new m.Scope and returns the pointer to it. func (m *MuteMonitorScope) SetScope(v string) { m.Scope = &v } // GetBackgroundColor returns the BackgroundColor field if non-nil, zero value otherwise. func (n *NoteDefinition) GetBackgroundColor() string { if n == nil || n.BackgroundColor == nil { return "" } return *n.BackgroundColor } // GetBackgroundColorOk returns a tuple with the BackgroundColor field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (n *NoteDefinition) GetBackgroundColorOk() (string, bool) { if n == nil || n.BackgroundColor == nil { return "", false } return *n.BackgroundColor, true } // HasBackgroundColor returns a boolean if a field has been set. func (n *NoteDefinition) HasBackgroundColor() bool { if n != nil && n.BackgroundColor != nil { return true } return false } // SetBackgroundColor allocates a new n.BackgroundColor and returns the pointer to it. func (n *NoteDefinition) SetBackgroundColor(v string) { n.BackgroundColor = &v } // GetContent returns the Content field if non-nil, zero value otherwise. func (n *NoteDefinition) GetContent() string { if n == nil || n.Content == nil { return "" } return *n.Content } // GetContentOk returns a tuple with the Content field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (n *NoteDefinition) GetContentOk() (string, bool) { if n == nil || n.Content == nil { return "", false } return *n.Content, true } // HasContent returns a boolean if a field has been set. func (n *NoteDefinition) HasContent() bool { if n != nil && n.Content != nil { return true } return false } // SetContent allocates a new n.Content and returns the pointer to it. func (n *NoteDefinition) SetContent(v string) { n.Content = &v } // GetFontSize returns the FontSize field if non-nil, zero value otherwise. func (n *NoteDefinition) GetFontSize() string { if n == nil || n.FontSize == nil { return "" } return *n.FontSize } // GetFontSizeOk returns a tuple with the FontSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (n *NoteDefinition) GetFontSizeOk() (string, bool) { if n == nil || n.FontSize == nil { return "", false } return *n.FontSize, true } // HasFontSize returns a boolean if a field has been set. func (n *NoteDefinition) HasFontSize() bool { if n != nil && n.FontSize != nil { return true } return false } // SetFontSize allocates a new n.FontSize and returns the pointer to it. func (n *NoteDefinition) SetFontSize(v string) { n.FontSize = &v } // GetShowTick returns the ShowTick field if non-nil, zero value otherwise. func (n *NoteDefinition) GetShowTick() bool { if n == nil || n.ShowTick == nil { return false } return *n.ShowTick } // GetShowTickOk returns a tuple with the ShowTick field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (n *NoteDefinition) GetShowTickOk() (bool, bool) { if n == nil || n.ShowTick == nil { return false, false } return *n.ShowTick, true } // HasShowTick returns a boolean if a field has been set. func (n *NoteDefinition) HasShowTick() bool { if n != nil && n.ShowTick != nil { return true } return false } // SetShowTick allocates a new n.ShowTick and returns the pointer to it. func (n *NoteDefinition) SetShowTick(v bool) { n.ShowTick = &v } // GetTextAlign returns the TextAlign field if non-nil, zero value otherwise. func (n *NoteDefinition) GetTextAlign() string { if n == nil || n.TextAlign == nil { return "" } return *n.TextAlign } // GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (n *NoteDefinition) GetTextAlignOk() (string, bool) { if n == nil || n.TextAlign == nil { return "", false } return *n.TextAlign, true } // HasTextAlign returns a boolean if a field has been set. func (n *NoteDefinition) HasTextAlign() bool { if n != nil && n.TextAlign != nil { return true } return false } // SetTextAlign allocates a new n.TextAlign and returns the pointer to it. func (n *NoteDefinition) SetTextAlign(v string) { n.TextAlign = &v } // GetTickEdge returns the TickEdge field if non-nil, zero value otherwise. func (n *NoteDefinition) GetTickEdge() string { if n == nil || n.TickEdge == nil { return "" } return *n.TickEdge } // GetTickEdgeOk returns a tuple with the TickEdge field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (n *NoteDefinition) GetTickEdgeOk() (string, bool) { if n == nil || n.TickEdge == nil { return "", false } return *n.TickEdge, true } // HasTickEdge returns a boolean if a field has been set. func (n *NoteDefinition) HasTickEdge() bool { if n != nil && n.TickEdge != nil { return true } return false } // SetTickEdge allocates a new n.TickEdge and returns the pointer to it. func (n *NoteDefinition) SetTickEdge(v string) { n.TickEdge = &v } // GetTickPos returns the TickPos field if non-nil, zero value otherwise. func (n *NoteDefinition) GetTickPos() string { if n == nil || n.TickPos == nil { return "" } return *n.TickPos } // GetTickPosOk returns a tuple with the TickPos field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (n *NoteDefinition) GetTickPosOk() (string, bool) { if n == nil || n.TickPos == nil { return "", false } return *n.TickPos, true } // HasTickPos returns a boolean if a field has been set. func (n *NoteDefinition) HasTickPos() bool { if n != nil && n.TickPos != nil { return true } return false } // SetTickPos allocates a new n.TickPos and returns the pointer to it. func (n *NoteDefinition) SetTickPos(v string) { n.TickPos = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (n *NoteDefinition) GetType() string { if n == nil || n.Type == nil { return "" } return *n.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (n *NoteDefinition) GetTypeOk() (string, bool) { if n == nil || n.Type == nil { return "", false } return *n.Type, true } // HasType returns a boolean if a field has been set. func (n *NoteDefinition) HasType() bool { if n != nil && n.Type != nil { return true } return false } // SetType allocates a new n.Type and returns the pointer to it. func (n *NoteDefinition) SetType(v string) { n.Type = &v } // GetEnableLogsSample returns the EnableLogsSample field if non-nil, zero value otherwise. func (o *Options) GetEnableLogsSample() bool { if o == nil || o.EnableLogsSample == nil { return false } return *o.EnableLogsSample } // GetEnableLogsSampleOk returns a tuple with the EnableLogsSample field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetEnableLogsSampleOk() (bool, bool) { if o == nil || o.EnableLogsSample == nil { return false, false } return *o.EnableLogsSample, true } // HasEnableLogsSample returns a boolean if a field has been set. func (o *Options) HasEnableLogsSample() bool { if o != nil && o.EnableLogsSample != nil { return true } return false } // SetEnableLogsSample allocates a new o.EnableLogsSample and returns the pointer to it. func (o *Options) SetEnableLogsSample(v bool) { o.EnableLogsSample = &v } // GetEscalationMessage returns the EscalationMessage field if non-nil, zero value otherwise. func (o *Options) GetEscalationMessage() string { if o == nil || o.EscalationMessage == nil { return "" } return *o.EscalationMessage } // GetEscalationMessageOk returns a tuple with the EscalationMessage field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetEscalationMessageOk() (string, bool) { if o == nil || o.EscalationMessage == nil { return "", false } return *o.EscalationMessage, true } // HasEscalationMessage returns a boolean if a field has been set. func (o *Options) HasEscalationMessage() bool { if o != nil && o.EscalationMessage != nil { return true } return false } // SetEscalationMessage allocates a new o.EscalationMessage and returns the pointer to it. func (o *Options) SetEscalationMessage(v string) { o.EscalationMessage = &v } // GetEvaluationDelay returns the EvaluationDelay field if non-nil, zero value otherwise. func (o *Options) GetEvaluationDelay() int { if o == nil || o.EvaluationDelay == nil { return 0 } return *o.EvaluationDelay } // GetEvaluationDelayOk returns a tuple with the EvaluationDelay field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetEvaluationDelayOk() (int, bool) { if o == nil || o.EvaluationDelay == nil { return 0, false } return *o.EvaluationDelay, true } // HasEvaluationDelay returns a boolean if a field has been set. func (o *Options) HasEvaluationDelay() bool { if o != nil && o.EvaluationDelay != nil { return true } return false } // SetEvaluationDelay allocates a new o.EvaluationDelay and returns the pointer to it. func (o *Options) SetEvaluationDelay(v int) { o.EvaluationDelay = &v } // GetIncludeTags returns the IncludeTags field if non-nil, zero value otherwise. func (o *Options) GetIncludeTags() bool { if o == nil || o.IncludeTags == nil { return false } return *o.IncludeTags } // GetIncludeTagsOk returns a tuple with the IncludeTags field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetIncludeTagsOk() (bool, bool) { if o == nil || o.IncludeTags == nil { return false, false } return *o.IncludeTags, true } // HasIncludeTags returns a boolean if a field has been set. func (o *Options) HasIncludeTags() bool { if o != nil && o.IncludeTags != nil { return true } return false } // SetIncludeTags allocates a new o.IncludeTags and returns the pointer to it. func (o *Options) SetIncludeTags(v bool) { o.IncludeTags = &v } // GetLocked returns the Locked field if non-nil, zero value otherwise. func (o *Options) GetLocked() bool { if o == nil || o.Locked == nil { return false } return *o.Locked } // GetLockedOk returns a tuple with the Locked field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetLockedOk() (bool, bool) { if o == nil || o.Locked == nil { return false, false } return *o.Locked, true } // HasLocked returns a boolean if a field has been set. func (o *Options) HasLocked() bool { if o != nil && o.Locked != nil { return true } return false } // SetLocked allocates a new o.Locked and returns the pointer to it. func (o *Options) SetLocked(v bool) { o.Locked = &v } // GetNewHostDelay returns the NewHostDelay field if non-nil, zero value otherwise. func (o *Options) GetNewHostDelay() int { if o == nil || o.NewHostDelay == nil { return 0 } return *o.NewHostDelay } // GetNewHostDelayOk returns a tuple with the NewHostDelay field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetNewHostDelayOk() (int, bool) { if o == nil || o.NewHostDelay == nil { return 0, false } return *o.NewHostDelay, true } // HasNewHostDelay returns a boolean if a field has been set. func (o *Options) HasNewHostDelay() bool { if o != nil && o.NewHostDelay != nil { return true } return false } // SetNewHostDelay allocates a new o.NewHostDelay and returns the pointer to it. func (o *Options) SetNewHostDelay(v int) { o.NewHostDelay = &v } // GetNotifyAudit returns the NotifyAudit field if non-nil, zero value otherwise. func (o *Options) GetNotifyAudit() bool { if o == nil || o.NotifyAudit == nil { return false } return *o.NotifyAudit } // GetNotifyAuditOk returns a tuple with the NotifyAudit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetNotifyAuditOk() (bool, bool) { if o == nil || o.NotifyAudit == nil { return false, false } return *o.NotifyAudit, true } // HasNotifyAudit returns a boolean if a field has been set. func (o *Options) HasNotifyAudit() bool { if o != nil && o.NotifyAudit != nil { return true } return false } // SetNotifyAudit allocates a new o.NotifyAudit and returns the pointer to it. func (o *Options) SetNotifyAudit(v bool) { o.NotifyAudit = &v } // GetNotifyNoData returns the NotifyNoData field if non-nil, zero value otherwise. func (o *Options) GetNotifyNoData() bool { if o == nil || o.NotifyNoData == nil { return false } return *o.NotifyNoData } // GetNotifyNoDataOk returns a tuple with the NotifyNoData field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetNotifyNoDataOk() (bool, bool) { if o == nil || o.NotifyNoData == nil { return false, false } return *o.NotifyNoData, true } // HasNotifyNoData returns a boolean if a field has been set. func (o *Options) HasNotifyNoData() bool { if o != nil && o.NotifyNoData != nil { return true } return false } // SetNotifyNoData allocates a new o.NotifyNoData and returns the pointer to it. func (o *Options) SetNotifyNoData(v bool) { o.NotifyNoData = &v } // GetQueryConfig returns the QueryConfig field if non-nil, zero value otherwise. func (o *Options) GetQueryConfig() QueryConfig { if o == nil || o.QueryConfig == nil { return QueryConfig{} } return *o.QueryConfig } // GetQueryConfigOk returns a tuple with the QueryConfig field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetQueryConfigOk() (QueryConfig, bool) { if o == nil || o.QueryConfig == nil { return QueryConfig{}, false } return *o.QueryConfig, true } // HasQueryConfig returns a boolean if a field has been set. func (o *Options) HasQueryConfig() bool { if o != nil && o.QueryConfig != nil { return true } return false } // SetQueryConfig allocates a new o.QueryConfig and returns the pointer to it. func (o *Options) SetQueryConfig(v QueryConfig) { o.QueryConfig = &v } // GetRenotifyInterval returns the RenotifyInterval field if non-nil, zero value otherwise. func (o *Options) GetRenotifyInterval() int { if o == nil || o.RenotifyInterval == nil { return 0 } return *o.RenotifyInterval } // GetRenotifyIntervalOk returns a tuple with the RenotifyInterval field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetRenotifyIntervalOk() (int, bool) { if o == nil || o.RenotifyInterval == nil { return 0, false } return *o.RenotifyInterval, true } // HasRenotifyInterval returns a boolean if a field has been set. func (o *Options) HasRenotifyInterval() bool { if o != nil && o.RenotifyInterval != nil { return true } return false } // SetRenotifyInterval allocates a new o.RenotifyInterval and returns the pointer to it. func (o *Options) SetRenotifyInterval(v int) { o.RenotifyInterval = &v } // GetRequireFullWindow returns the RequireFullWindow field if non-nil, zero value otherwise. func (o *Options) GetRequireFullWindow() bool { if o == nil || o.RequireFullWindow == nil { return false } return *o.RequireFullWindow } // GetRequireFullWindowOk returns a tuple with the RequireFullWindow field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetRequireFullWindowOk() (bool, bool) { if o == nil || o.RequireFullWindow == nil { return false, false } return *o.RequireFullWindow, true } // HasRequireFullWindow returns a boolean if a field has been set. func (o *Options) HasRequireFullWindow() bool { if o != nil && o.RequireFullWindow != nil { return true } return false } // SetRequireFullWindow allocates a new o.RequireFullWindow and returns the pointer to it. func (o *Options) SetRequireFullWindow(v bool) { o.RequireFullWindow = &v } // GetThresholds returns the Thresholds field if non-nil, zero value otherwise. func (o *Options) GetThresholds() ThresholdCount { if o == nil || o.Thresholds == nil { return ThresholdCount{} } return *o.Thresholds } // GetThresholdsOk returns a tuple with the Thresholds field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetThresholdsOk() (ThresholdCount, bool) { if o == nil || o.Thresholds == nil { return ThresholdCount{}, false } return *o.Thresholds, true } // HasThresholds returns a boolean if a field has been set. func (o *Options) HasThresholds() bool { if o != nil && o.Thresholds != nil { return true } return false } // SetThresholds allocates a new o.Thresholds and returns the pointer to it. func (o *Options) SetThresholds(v ThresholdCount) { o.Thresholds = &v } // GetThresholdWindows returns the ThresholdWindows field if non-nil, zero value otherwise. func (o *Options) GetThresholdWindows() ThresholdWindows { if o == nil || o.ThresholdWindows == nil { return ThresholdWindows{} } return *o.ThresholdWindows } // GetThresholdWindowsOk returns a tuple with the ThresholdWindows field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetThresholdWindowsOk() (ThresholdWindows, bool) { if o == nil || o.ThresholdWindows == nil { return ThresholdWindows{}, false } return *o.ThresholdWindows, true } // HasThresholdWindows returns a boolean if a field has been set. func (o *Options) HasThresholdWindows() bool { if o != nil && o.ThresholdWindows != nil { return true } return false } // SetThresholdWindows allocates a new o.ThresholdWindows and returns the pointer to it. func (o *Options) SetThresholdWindows(v ThresholdWindows) { o.ThresholdWindows = &v } // GetTimeoutH returns the TimeoutH field if non-nil, zero value otherwise. func (o *Options) GetTimeoutH() int { if o == nil || o.TimeoutH == nil { return 0 } return *o.TimeoutH } // GetTimeoutHOk returns a tuple with the TimeoutH field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (o *Options) GetTimeoutHOk() (int, bool) { if o == nil || o.TimeoutH == nil { return 0, false } return *o.TimeoutH, true } // HasTimeoutH returns a boolean if a field has been set. func (o *Options) HasTimeoutH() bool { if o != nil && o.TimeoutH != nil { return true } return false } // SetTimeoutH allocates a new o.TimeoutH and returns the pointer to it. func (o *Options) SetTimeoutH(v int) { o.TimeoutH = &v } // GetCount returns the Count field if non-nil, zero value otherwise. func (p *Params) GetCount() string { if p == nil || p.Count == nil { return "" } return *p.Count } // GetCountOk returns a tuple with the Count field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (p *Params) GetCountOk() (string, bool) { if p == nil || p.Count == nil { return "", false } return *p.Count, true } // HasCount returns a boolean if a field has been set. func (p *Params) HasCount() bool { if p != nil && p.Count != nil { return true } return false } // SetCount allocates a new p.Count and returns the pointer to it. func (p *Params) SetCount(v string) { p.Count = &v } // GetSort returns the Sort field if non-nil, zero value otherwise. func (p *Params) GetSort() string { if p == nil || p.Sort == nil { return "" } return *p.Sort } // GetSortOk returns a tuple with the Sort field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (p *Params) GetSortOk() (string, bool) { if p == nil || p.Sort == nil { return "", false } return *p.Sort, true } // HasSort returns a boolean if a field has been set. func (p *Params) HasSort() bool { if p != nil && p.Sort != nil { return true } return false } // SetSort allocates a new p.Sort and returns the pointer to it. func (p *Params) SetSort(v string) { p.Sort = &v } // GetStart returns the Start field if non-nil, zero value otherwise. func (p *Params) GetStart() string { if p == nil || p.Start == nil { return "" } return *p.Start } // GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (p *Params) GetStartOk() (string, bool) { if p == nil || p.Start == nil { return "", false } return *p.Start, true } // HasStart returns a boolean if a field has been set. func (p *Params) HasStart() bool { if p != nil && p.Start != nil { return true } return false } // SetStart allocates a new p.Start and returns the pointer to it. func (p *Params) SetStart(v string) { p.Start = &v } // GetText returns the Text field if non-nil, zero value otherwise. func (p *Params) GetText() string { if p == nil || p.Text == nil { return "" } return *p.Text } // GetTextOk returns a tuple with the Text field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (p *Params) GetTextOk() (string, bool) { if p == nil || p.Text == nil { return "", false } return *p.Text, true } // HasText returns a boolean if a field has been set. func (p *Params) HasText() bool { if p != nil && p.Text != nil { return true } return false } // SetText allocates a new p.Text and returns the pointer to it. func (p *Params) SetText(v string) { p.Text = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (p *Period) GetName() string { if p == nil || p.Name == nil { return "" } return *p.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (p *Period) GetNameOk() (string, bool) { if p == nil || p.Name == nil { return "", false } return *p.Name, true } // HasName returns a boolean if a field has been set. func (p *Period) HasName() bool { if p != nil && p.Name != nil { return true } return false } // SetName allocates a new p.Name and returns the pointer to it. func (p *Period) SetName(v string) { p.Name = &v } // GetSeconds returns the Seconds field if non-nil, zero value otherwise. func (p *Period) GetSeconds() json.Number { if p == nil || p.Seconds == nil { return "" } return *p.Seconds } // GetSecondsOk returns a tuple with the Seconds field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (p *Period) GetSecondsOk() (json.Number, bool) { if p == nil || p.Seconds == nil { return "", false } return *p.Seconds, true } // HasSeconds returns a boolean if a field has been set. func (p *Period) HasSeconds() bool { if p != nil && p.Seconds != nil { return true } return false } // SetSeconds allocates a new p.Seconds and returns the pointer to it. func (p *Period) SetSeconds(v json.Number) { p.Seconds = &v } // GetText returns the Text field if non-nil, zero value otherwise. func (p *Period) GetText() string { if p == nil || p.Text == nil { return "" } return *p.Text } // GetTextOk returns a tuple with the Text field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (p *Period) GetTextOk() (string, bool) { if p == nil || p.Text == nil { return "", false } return *p.Text, true } // HasText returns a boolean if a field has been set. func (p *Period) HasText() bool { if p != nil && p.Text != nil { return true } return false } // SetText allocates a new p.Text and returns the pointer to it. func (p *Period) SetText(v string) { p.Text = &v } // GetUnit returns the Unit field if non-nil, zero value otherwise. func (p *Period) GetUnit() string { if p == nil || p.Unit == nil { return "" } return *p.Unit } // GetUnitOk returns a tuple with the Unit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (p *Period) GetUnitOk() (string, bool) { if p == nil || p.Unit == nil { return "", false } return *p.Unit, true } // HasUnit returns a boolean if a field has been set. func (p *Period) HasUnit() bool { if p != nil && p.Unit != nil { return true } return false } // SetUnit allocates a new p.Unit and returns the pointer to it. func (p *Period) SetUnit(v string) { p.Unit = &v } // GetValue returns the Value field if non-nil, zero value otherwise. func (p *Period) GetValue() string { if p == nil || p.Value == nil { return "" } return *p.Value } // GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (p *Period) GetValueOk() (string, bool) { if p == nil || p.Value == nil { return "", false } return *p.Value, true } // HasValue returns a boolean if a field has been set. func (p *Period) HasValue() bool { if p != nil && p.Value != nil { return true } return false } // SetValue allocates a new p.Value and returns the pointer to it. func (p *Period) SetValue(v string) { p.Value = &v } // GetLogSet returns the LogSet field if non-nil, zero value otherwise. func (q *QueryConfig) GetLogSet() LogSet { if q == nil || q.LogSet == nil { return LogSet{} } return *q.LogSet } // GetLogSetOk returns a tuple with the LogSet field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryConfig) GetLogSetOk() (LogSet, bool) { if q == nil || q.LogSet == nil { return LogSet{}, false } return *q.LogSet, true } // HasLogSet returns a boolean if a field has been set. func (q *QueryConfig) HasLogSet() bool { if q != nil && q.LogSet != nil { return true } return false } // SetLogSet allocates a new q.LogSet and returns the pointer to it. func (q *QueryConfig) SetLogSet(v LogSet) { q.LogSet = &v } // GetQueryIsFailed returns the QueryIsFailed field if non-nil, zero value otherwise. func (q *QueryConfig) GetQueryIsFailed() bool { if q == nil || q.QueryIsFailed == nil { return false } return *q.QueryIsFailed } // GetQueryIsFailedOk returns a tuple with the QueryIsFailed field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryConfig) GetQueryIsFailedOk() (bool, bool) { if q == nil || q.QueryIsFailed == nil { return false, false } return *q.QueryIsFailed, true } // HasQueryIsFailed returns a boolean if a field has been set. func (q *QueryConfig) HasQueryIsFailed() bool { if q != nil && q.QueryIsFailed != nil { return true } return false } // SetQueryIsFailed allocates a new q.QueryIsFailed and returns the pointer to it. func (q *QueryConfig) SetQueryIsFailed(v bool) { q.QueryIsFailed = &v } // GetQueryString returns the QueryString field if non-nil, zero value otherwise. func (q *QueryConfig) GetQueryString() string { if q == nil || q.QueryString == nil { return "" } return *q.QueryString } // GetQueryStringOk returns a tuple with the QueryString field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryConfig) GetQueryStringOk() (string, bool) { if q == nil || q.QueryString == nil { return "", false } return *q.QueryString, true } // HasQueryString returns a boolean if a field has been set. func (q *QueryConfig) HasQueryString() bool { if q != nil && q.QueryString != nil { return true } return false } // SetQueryString allocates a new q.QueryString and returns the pointer to it. func (q *QueryConfig) SetQueryString(v string) { q.QueryString = &v } // GetTimeRange returns the TimeRange field if non-nil, zero value otherwise. func (q *QueryConfig) GetTimeRange() TimeRange { if q == nil || q.TimeRange == nil { return TimeRange{} } return *q.TimeRange } // GetTimeRangeOk returns a tuple with the TimeRange field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryConfig) GetTimeRangeOk() (TimeRange, bool) { if q == nil || q.TimeRange == nil { return TimeRange{}, false } return *q.TimeRange, true } // HasTimeRange returns a boolean if a field has been set. func (q *QueryConfig) HasTimeRange() bool { if q != nil && q.TimeRange != nil { return true } return false } // SetTimeRange allocates a new q.TimeRange and returns the pointer to it. func (q *QueryConfig) SetTimeRange(v TimeRange) { q.TimeRange = &v } // GetAutoscale returns the Autoscale field if non-nil, zero value otherwise. func (q *QueryValueDefinition) GetAutoscale() bool { if q == nil || q.Autoscale == nil { return false } return *q.Autoscale } // GetAutoscaleOk returns a tuple with the Autoscale field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueDefinition) GetAutoscaleOk() (bool, bool) { if q == nil || q.Autoscale == nil { return false, false } return *q.Autoscale, true } // HasAutoscale returns a boolean if a field has been set. func (q *QueryValueDefinition) HasAutoscale() bool { if q != nil && q.Autoscale != nil { return true } return false } // SetAutoscale allocates a new q.Autoscale and returns the pointer to it. func (q *QueryValueDefinition) SetAutoscale(v bool) { q.Autoscale = &v } // GetCustomUnit returns the CustomUnit field if non-nil, zero value otherwise. func (q *QueryValueDefinition) GetCustomUnit() string { if q == nil || q.CustomUnit == nil { return "" } return *q.CustomUnit } // GetCustomUnitOk returns a tuple with the CustomUnit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueDefinition) GetCustomUnitOk() (string, bool) { if q == nil || q.CustomUnit == nil { return "", false } return *q.CustomUnit, true } // HasCustomUnit returns a boolean if a field has been set. func (q *QueryValueDefinition) HasCustomUnit() bool { if q != nil && q.CustomUnit != nil { return true } return false } // SetCustomUnit allocates a new q.CustomUnit and returns the pointer to it. func (q *QueryValueDefinition) SetCustomUnit(v string) { q.CustomUnit = &v } // GetPrecision returns the Precision field if non-nil, zero value otherwise. func (q *QueryValueDefinition) GetPrecision() int { if q == nil || q.Precision == nil { return 0 } return *q.Precision } // GetPrecisionOk returns a tuple with the Precision field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueDefinition) GetPrecisionOk() (int, bool) { if q == nil || q.Precision == nil { return 0, false } return *q.Precision, true } // HasPrecision returns a boolean if a field has been set. func (q *QueryValueDefinition) HasPrecision() bool { if q != nil && q.Precision != nil { return true } return false } // SetPrecision allocates a new q.Precision and returns the pointer to it. func (q *QueryValueDefinition) SetPrecision(v int) { q.Precision = &v } // GetTextAlign returns the TextAlign field if non-nil, zero value otherwise. func (q *QueryValueDefinition) GetTextAlign() string { if q == nil || q.TextAlign == nil { return "" } return *q.TextAlign } // GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueDefinition) GetTextAlignOk() (string, bool) { if q == nil || q.TextAlign == nil { return "", false } return *q.TextAlign, true } // HasTextAlign returns a boolean if a field has been set. func (q *QueryValueDefinition) HasTextAlign() bool { if q != nil && q.TextAlign != nil { return true } return false } // SetTextAlign allocates a new q.TextAlign and returns the pointer to it. func (q *QueryValueDefinition) SetTextAlign(v string) { q.TextAlign = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (q *QueryValueDefinition) GetTime() WidgetTime { if q == nil || q.Time == nil { return WidgetTime{} } return *q.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueDefinition) GetTimeOk() (WidgetTime, bool) { if q == nil || q.Time == nil { return WidgetTime{}, false } return *q.Time, true } // HasTime returns a boolean if a field has been set. func (q *QueryValueDefinition) HasTime() bool { if q != nil && q.Time != nil { return true } return false } // SetTime allocates a new q.Time and returns the pointer to it. func (q *QueryValueDefinition) SetTime(v WidgetTime) { q.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (q *QueryValueDefinition) GetTitle() string { if q == nil || q.Title == nil { return "" } return *q.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueDefinition) GetTitleOk() (string, bool) { if q == nil || q.Title == nil { return "", false } return *q.Title, true } // HasTitle returns a boolean if a field has been set. func (q *QueryValueDefinition) HasTitle() bool { if q != nil && q.Title != nil { return true } return false } // SetTitle allocates a new q.Title and returns the pointer to it. func (q *QueryValueDefinition) SetTitle(v string) { q.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (q *QueryValueDefinition) GetTitleAlign() string { if q == nil || q.TitleAlign == nil { return "" } return *q.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueDefinition) GetTitleAlignOk() (string, bool) { if q == nil || q.TitleAlign == nil { return "", false } return *q.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (q *QueryValueDefinition) HasTitleAlign() bool { if q != nil && q.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new q.TitleAlign and returns the pointer to it. func (q *QueryValueDefinition) SetTitleAlign(v string) { q.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (q *QueryValueDefinition) GetTitleSize() string { if q == nil || q.TitleSize == nil { return "" } return *q.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueDefinition) GetTitleSizeOk() (string, bool) { if q == nil || q.TitleSize == nil { return "", false } return *q.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (q *QueryValueDefinition) HasTitleSize() bool { if q != nil && q.TitleSize != nil { return true } return false } // SetTitleSize allocates a new q.TitleSize and returns the pointer to it. func (q *QueryValueDefinition) SetTitleSize(v string) { q.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (q *QueryValueDefinition) GetType() string { if q == nil || q.Type == nil { return "" } return *q.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueDefinition) GetTypeOk() (string, bool) { if q == nil || q.Type == nil { return "", false } return *q.Type, true } // HasType returns a boolean if a field has been set. func (q *QueryValueDefinition) HasType() bool { if q != nil && q.Type != nil { return true } return false } // SetType allocates a new q.Type and returns the pointer to it. func (q *QueryValueDefinition) SetType(v string) { q.Type = &v } // GetAggregator returns the Aggregator field if non-nil, zero value otherwise. func (q *QueryValueRequest) GetAggregator() string { if q == nil || q.Aggregator == nil { return "" } return *q.Aggregator } // GetAggregatorOk returns a tuple with the Aggregator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueRequest) GetAggregatorOk() (string, bool) { if q == nil || q.Aggregator == nil { return "", false } return *q.Aggregator, true } // HasAggregator returns a boolean if a field has been set. func (q *QueryValueRequest) HasAggregator() bool { if q != nil && q.Aggregator != nil { return true } return false } // SetAggregator allocates a new q.Aggregator and returns the pointer to it. func (q *QueryValueRequest) SetAggregator(v string) { q.Aggregator = &v } // GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise. func (q *QueryValueRequest) GetApmQuery() WidgetApmOrLogQuery { if q == nil || q.ApmQuery == nil { return WidgetApmOrLogQuery{} } return *q.ApmQuery } // GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) { if q == nil || q.ApmQuery == nil { return WidgetApmOrLogQuery{}, false } return *q.ApmQuery, true } // HasApmQuery returns a boolean if a field has been set. func (q *QueryValueRequest) HasApmQuery() bool { if q != nil && q.ApmQuery != nil { return true } return false } // SetApmQuery allocates a new q.ApmQuery and returns the pointer to it. func (q *QueryValueRequest) SetApmQuery(v WidgetApmOrLogQuery) { q.ApmQuery = &v } // GetLogQuery returns the LogQuery field if non-nil, zero value otherwise. func (q *QueryValueRequest) GetLogQuery() WidgetApmOrLogQuery { if q == nil || q.LogQuery == nil { return WidgetApmOrLogQuery{} } return *q.LogQuery } // GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) { if q == nil || q.LogQuery == nil { return WidgetApmOrLogQuery{}, false } return *q.LogQuery, true } // HasLogQuery returns a boolean if a field has been set. func (q *QueryValueRequest) HasLogQuery() bool { if q != nil && q.LogQuery != nil { return true } return false } // SetLogQuery allocates a new q.LogQuery and returns the pointer to it. func (q *QueryValueRequest) SetLogQuery(v WidgetApmOrLogQuery) { q.LogQuery = &v } // GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise. func (q *QueryValueRequest) GetMetricQuery() string { if q == nil || q.MetricQuery == nil { return "" } return *q.MetricQuery } // GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueRequest) GetMetricQueryOk() (string, bool) { if q == nil || q.MetricQuery == nil { return "", false } return *q.MetricQuery, true } // HasMetricQuery returns a boolean if a field has been set. func (q *QueryValueRequest) HasMetricQuery() bool { if q != nil && q.MetricQuery != nil { return true } return false } // SetMetricQuery allocates a new q.MetricQuery and returns the pointer to it. func (q *QueryValueRequest) SetMetricQuery(v string) { q.MetricQuery = &v } // GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise. func (q *QueryValueRequest) GetProcessQuery() WidgetProcessQuery { if q == nil || q.ProcessQuery == nil { return WidgetProcessQuery{} } return *q.ProcessQuery } // GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (q *QueryValueRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) { if q == nil || q.ProcessQuery == nil { return WidgetProcessQuery{}, false } return *q.ProcessQuery, true } // HasProcessQuery returns a boolean if a field has been set. func (q *QueryValueRequest) HasProcessQuery() bool { if q != nil && q.ProcessQuery != nil { return true } return false } // SetProcessQuery allocates a new q.ProcessQuery and returns the pointer to it. func (q *QueryValueRequest) SetProcessQuery(v WidgetProcessQuery) { q.ProcessQuery = &v } // GetPeriod returns the Period field if non-nil, zero value otherwise. func (r *Recurrence) GetPeriod() int { if r == nil || r.Period == nil { return 0 } return *r.Period } // GetPeriodOk returns a tuple with the Period field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *Recurrence) GetPeriodOk() (int, bool) { if r == nil || r.Period == nil { return 0, false } return *r.Period, true } // HasPeriod returns a boolean if a field has been set. func (r *Recurrence) HasPeriod() bool { if r != nil && r.Period != nil { return true } return false } // SetPeriod allocates a new r.Period and returns the pointer to it. func (r *Recurrence) SetPeriod(v int) { r.Period = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (r *Recurrence) GetType() string { if r == nil || r.Type == nil { return "" } return *r.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *Recurrence) GetTypeOk() (string, bool) { if r == nil || r.Type == nil { return "", false } return *r.Type, true } // HasType returns a boolean if a field has been set. func (r *Recurrence) HasType() bool { if r != nil && r.Type != nil { return true } return false } // SetType allocates a new r.Type and returns the pointer to it. func (r *Recurrence) SetType(v string) { r.Type = &v } // GetUntilDate returns the UntilDate field if non-nil, zero value otherwise. func (r *Recurrence) GetUntilDate() int { if r == nil || r.UntilDate == nil { return 0 } return *r.UntilDate } // GetUntilDateOk returns a tuple with the UntilDate field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *Recurrence) GetUntilDateOk() (int, bool) { if r == nil || r.UntilDate == nil { return 0, false } return *r.UntilDate, true } // HasUntilDate returns a boolean if a field has been set. func (r *Recurrence) HasUntilDate() bool { if r != nil && r.UntilDate != nil { return true } return false } // SetUntilDate allocates a new r.UntilDate and returns the pointer to it. func (r *Recurrence) SetUntilDate(v int) { r.UntilDate = &v } // GetUntilOccurrences returns the UntilOccurrences field if non-nil, zero value otherwise. func (r *Recurrence) GetUntilOccurrences() int { if r == nil || r.UntilOccurrences == nil { return 0 } return *r.UntilOccurrences } // GetUntilOccurrencesOk returns a tuple with the UntilOccurrences field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *Recurrence) GetUntilOccurrencesOk() (int, bool) { if r == nil || r.UntilOccurrences == nil { return 0, false } return *r.UntilOccurrences, true } // HasUntilOccurrences returns a boolean if a field has been set. func (r *Recurrence) HasUntilOccurrences() bool { if r != nil && r.UntilOccurrences != nil { return true } return false } // SetUntilOccurrences allocates a new r.UntilOccurrences and returns the pointer to it. func (r *Recurrence) SetUntilOccurrences(v int) { r.UntilOccurrences = &v } // GetAPIKey returns the APIKey field if non-nil, zero value otherwise. func (r *reqAPIKey) GetAPIKey() APIKey { if r == nil || r.APIKey == nil { return APIKey{} } return *r.APIKey } // GetAPIKeyOk returns a tuple with the APIKey field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *reqAPIKey) GetAPIKeyOk() (APIKey, bool) { if r == nil || r.APIKey == nil { return APIKey{}, false } return *r.APIKey, true } // HasAPIKey returns a boolean if a field has been set. func (r *reqAPIKey) HasAPIKey() bool { if r != nil && r.APIKey != nil { return true } return false } // SetAPIKey allocates a new r.APIKey and returns the pointer to it. func (r *reqAPIKey) SetAPIKey(v APIKey) { r.APIKey = &v } // GetComment returns the Comment field if non-nil, zero value otherwise. func (r *reqComment) GetComment() Comment { if r == nil || r.Comment == nil { return Comment{} } return *r.Comment } // GetCommentOk returns a tuple with the Comment field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *reqComment) GetCommentOk() (Comment, bool) { if r == nil || r.Comment == nil { return Comment{}, false } return *r.Comment, true } // HasComment returns a boolean if a field has been set. func (r *reqComment) HasComment() bool { if r != nil && r.Comment != nil { return true } return false } // SetComment allocates a new r.Comment and returns the pointer to it. func (r *reqComment) SetComment(v Comment) { r.Comment = &v } // GetDashboard returns the Dashboard field if non-nil, zero value otherwise. func (r *reqGetDashboard) GetDashboard() Dashboard { if r == nil || r.Dashboard == nil { return Dashboard{} } return *r.Dashboard } // GetDashboardOk returns a tuple with the Dashboard field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *reqGetDashboard) GetDashboardOk() (Dashboard, bool) { if r == nil || r.Dashboard == nil { return Dashboard{}, false } return *r.Dashboard, true } // HasDashboard returns a boolean if a field has been set. func (r *reqGetDashboard) HasDashboard() bool { if r != nil && r.Dashboard != nil { return true } return false } // SetDashboard allocates a new r.Dashboard and returns the pointer to it. func (r *reqGetDashboard) SetDashboard(v Dashboard) { r.Dashboard = &v } // GetResource returns the Resource field if non-nil, zero value otherwise. func (r *reqGetDashboard) GetResource() string { if r == nil || r.Resource == nil { return "" } return *r.Resource } // GetResourceOk returns a tuple with the Resource field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *reqGetDashboard) GetResourceOk() (string, bool) { if r == nil || r.Resource == nil { return "", false } return *r.Resource, true } // HasResource returns a boolean if a field has been set. func (r *reqGetDashboard) HasResource() bool { if r != nil && r.Resource != nil { return true } return false } // SetResource allocates a new r.Resource and returns the pointer to it. func (r *reqGetDashboard) SetResource(v string) { r.Resource = &v } // GetUrl returns the Url field if non-nil, zero value otherwise. func (r *reqGetDashboard) GetUrl() string { if r == nil || r.Url == nil { return "" } return *r.Url } // GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *reqGetDashboard) GetUrlOk() (string, bool) { if r == nil || r.Url == nil { return "", false } return *r.Url, true } // HasUrl returns a boolean if a field has been set. func (r *reqGetDashboard) HasUrl() bool { if r != nil && r.Url != nil { return true } return false } // SetUrl allocates a new r.Url and returns the pointer to it. func (r *reqGetDashboard) SetUrl(v string) { r.Url = &v } // GetEvent returns the Event field if non-nil, zero value otherwise. func (r *reqGetEvent) GetEvent() Event { if r == nil || r.Event == nil { return Event{} } return *r.Event } // GetEventOk returns a tuple with the Event field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *reqGetEvent) GetEventOk() (Event, bool) { if r == nil || r.Event == nil { return Event{}, false } return *r.Event, true } // HasEvent returns a boolean if a field has been set. func (r *reqGetEvent) HasEvent() bool { if r != nil && r.Event != nil { return true } return false } // SetEvent allocates a new r.Event and returns the pointer to it. func (r *reqGetEvent) SetEvent(v Event) { r.Event = &v } // GetTags returns the Tags field if non-nil, zero value otherwise. func (r *reqGetTags) GetTags() TagMap { if r == nil || r.Tags == nil { return TagMap{} } return *r.Tags } // GetTagsOk returns a tuple with the Tags field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *reqGetTags) GetTagsOk() (TagMap, bool) { if r == nil || r.Tags == nil { return TagMap{}, false } return *r.Tags, true } // HasTags returns a boolean if a field has been set. func (r *reqGetTags) HasTags() bool { if r != nil && r.Tags != nil { return true } return false } // SetTags allocates a new r.Tags and returns the pointer to it. func (r *reqGetTags) SetTags(v TagMap) { r.Tags = &v } // GetColor returns the Color field if non-nil, zero value otherwise. func (r *Rule) GetColor() string { if r == nil || r.Color == nil { return "" } return *r.Color } // GetColorOk returns a tuple with the Color field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *Rule) GetColorOk() (string, bool) { if r == nil || r.Color == nil { return "", false } return *r.Color, true } // HasColor returns a boolean if a field has been set. func (r *Rule) HasColor() bool { if r != nil && r.Color != nil { return true } return false } // SetColor allocates a new r.Color and returns the pointer to it. func (r *Rule) SetColor(v string) { r.Color = &v } // GetThreshold returns the Threshold field if non-nil, zero value otherwise. func (r *Rule) GetThreshold() json.Number { if r == nil || r.Threshold == nil { return "" } return *r.Threshold } // GetThresholdOk returns a tuple with the Threshold field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *Rule) GetThresholdOk() (json.Number, bool) { if r == nil || r.Threshold == nil { return "", false } return *r.Threshold, true } // HasThreshold returns a boolean if a field has been set. func (r *Rule) HasThreshold() bool { if r != nil && r.Threshold != nil { return true } return false } // SetThreshold allocates a new r.Threshold and returns the pointer to it. func (r *Rule) SetThreshold(v json.Number) { r.Threshold = &v } // GetTimeframe returns the Timeframe field if non-nil, zero value otherwise. func (r *Rule) GetTimeframe() string { if r == nil || r.Timeframe == nil { return "" } return *r.Timeframe } // GetTimeframeOk returns a tuple with the Timeframe field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (r *Rule) GetTimeframeOk() (string, bool) { if r == nil || r.Timeframe == nil { return "", false } return *r.Timeframe, true } // HasTimeframe returns a boolean if a field has been set. func (r *Rule) HasTimeframe() bool { if r != nil && r.Timeframe != nil { return true } return false } // SetTimeframe allocates a new r.Timeframe and returns the pointer to it. func (r *Rule) SetTimeframe(v string) { r.Timeframe = &v } // GetRequests returns the Requests field if non-nil, zero value otherwise. func (s *ScatterplotDefinition) GetRequests() ScatterplotRequests { if s == nil || s.Requests == nil { return ScatterplotRequests{} } return *s.Requests } // GetRequestsOk returns a tuple with the Requests field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotDefinition) GetRequestsOk() (ScatterplotRequests, bool) { if s == nil || s.Requests == nil { return ScatterplotRequests{}, false } return *s.Requests, true } // HasRequests returns a boolean if a field has been set. func (s *ScatterplotDefinition) HasRequests() bool { if s != nil && s.Requests != nil { return true } return false } // SetRequests allocates a new s.Requests and returns the pointer to it. func (s *ScatterplotDefinition) SetRequests(v ScatterplotRequests) { s.Requests = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (s *ScatterplotDefinition) GetTime() WidgetTime { if s == nil || s.Time == nil { return WidgetTime{} } return *s.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotDefinition) GetTimeOk() (WidgetTime, bool) { if s == nil || s.Time == nil { return WidgetTime{}, false } return *s.Time, true } // HasTime returns a boolean if a field has been set. func (s *ScatterplotDefinition) HasTime() bool { if s != nil && s.Time != nil { return true } return false } // SetTime allocates a new s.Time and returns the pointer to it. func (s *ScatterplotDefinition) SetTime(v WidgetTime) { s.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (s *ScatterplotDefinition) GetTitle() string { if s == nil || s.Title == nil { return "" } return *s.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotDefinition) GetTitleOk() (string, bool) { if s == nil || s.Title == nil { return "", false } return *s.Title, true } // HasTitle returns a boolean if a field has been set. func (s *ScatterplotDefinition) HasTitle() bool { if s != nil && s.Title != nil { return true } return false } // SetTitle allocates a new s.Title and returns the pointer to it. func (s *ScatterplotDefinition) SetTitle(v string) { s.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (s *ScatterplotDefinition) GetTitleAlign() string { if s == nil || s.TitleAlign == nil { return "" } return *s.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotDefinition) GetTitleAlignOk() (string, bool) { if s == nil || s.TitleAlign == nil { return "", false } return *s.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (s *ScatterplotDefinition) HasTitleAlign() bool { if s != nil && s.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new s.TitleAlign and returns the pointer to it. func (s *ScatterplotDefinition) SetTitleAlign(v string) { s.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (s *ScatterplotDefinition) GetTitleSize() string { if s == nil || s.TitleSize == nil { return "" } return *s.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotDefinition) GetTitleSizeOk() (string, bool) { if s == nil || s.TitleSize == nil { return "", false } return *s.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (s *ScatterplotDefinition) HasTitleSize() bool { if s != nil && s.TitleSize != nil { return true } return false } // SetTitleSize allocates a new s.TitleSize and returns the pointer to it. func (s *ScatterplotDefinition) SetTitleSize(v string) { s.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (s *ScatterplotDefinition) GetType() string { if s == nil || s.Type == nil { return "" } return *s.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotDefinition) GetTypeOk() (string, bool) { if s == nil || s.Type == nil { return "", false } return *s.Type, true } // HasType returns a boolean if a field has been set. func (s *ScatterplotDefinition) HasType() bool { if s != nil && s.Type != nil { return true } return false } // SetType allocates a new s.Type and returns the pointer to it. func (s *ScatterplotDefinition) SetType(v string) { s.Type = &v } // GetXaxis returns the Xaxis field if non-nil, zero value otherwise. func (s *ScatterplotDefinition) GetXaxis() WidgetAxis { if s == nil || s.Xaxis == nil { return WidgetAxis{} } return *s.Xaxis } // GetXaxisOk returns a tuple with the Xaxis field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotDefinition) GetXaxisOk() (WidgetAxis, bool) { if s == nil || s.Xaxis == nil { return WidgetAxis{}, false } return *s.Xaxis, true } // HasXaxis returns a boolean if a field has been set. func (s *ScatterplotDefinition) HasXaxis() bool { if s != nil && s.Xaxis != nil { return true } return false } // SetXaxis allocates a new s.Xaxis and returns the pointer to it. func (s *ScatterplotDefinition) SetXaxis(v WidgetAxis) { s.Xaxis = &v } // GetYaxis returns the Yaxis field if non-nil, zero value otherwise. func (s *ScatterplotDefinition) GetYaxis() WidgetAxis { if s == nil || s.Yaxis == nil { return WidgetAxis{} } return *s.Yaxis } // GetYaxisOk returns a tuple with the Yaxis field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotDefinition) GetYaxisOk() (WidgetAxis, bool) { if s == nil || s.Yaxis == nil { return WidgetAxis{}, false } return *s.Yaxis, true } // HasYaxis returns a boolean if a field has been set. func (s *ScatterplotDefinition) HasYaxis() bool { if s != nil && s.Yaxis != nil { return true } return false } // SetYaxis allocates a new s.Yaxis and returns the pointer to it. func (s *ScatterplotDefinition) SetYaxis(v WidgetAxis) { s.Yaxis = &v } // GetAggregator returns the Aggregator field if non-nil, zero value otherwise. func (s *ScatterplotRequest) GetAggregator() string { if s == nil || s.Aggregator == nil { return "" } return *s.Aggregator } // GetAggregatorOk returns a tuple with the Aggregator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotRequest) GetAggregatorOk() (string, bool) { if s == nil || s.Aggregator == nil { return "", false } return *s.Aggregator, true } // HasAggregator returns a boolean if a field has been set. func (s *ScatterplotRequest) HasAggregator() bool { if s != nil && s.Aggregator != nil { return true } return false } // SetAggregator allocates a new s.Aggregator and returns the pointer to it. func (s *ScatterplotRequest) SetAggregator(v string) { s.Aggregator = &v } // GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise. func (s *ScatterplotRequest) GetApmQuery() WidgetApmOrLogQuery { if s == nil || s.ApmQuery == nil { return WidgetApmOrLogQuery{} } return *s.ApmQuery } // GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) { if s == nil || s.ApmQuery == nil { return WidgetApmOrLogQuery{}, false } return *s.ApmQuery, true } // HasApmQuery returns a boolean if a field has been set. func (s *ScatterplotRequest) HasApmQuery() bool { if s != nil && s.ApmQuery != nil { return true } return false } // SetApmQuery allocates a new s.ApmQuery and returns the pointer to it. func (s *ScatterplotRequest) SetApmQuery(v WidgetApmOrLogQuery) { s.ApmQuery = &v } // GetLogQuery returns the LogQuery field if non-nil, zero value otherwise. func (s *ScatterplotRequest) GetLogQuery() WidgetApmOrLogQuery { if s == nil || s.LogQuery == nil { return WidgetApmOrLogQuery{} } return *s.LogQuery } // GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) { if s == nil || s.LogQuery == nil { return WidgetApmOrLogQuery{}, false } return *s.LogQuery, true } // HasLogQuery returns a boolean if a field has been set. func (s *ScatterplotRequest) HasLogQuery() bool { if s != nil && s.LogQuery != nil { return true } return false } // SetLogQuery allocates a new s.LogQuery and returns the pointer to it. func (s *ScatterplotRequest) SetLogQuery(v WidgetApmOrLogQuery) { s.LogQuery = &v } // GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise. func (s *ScatterplotRequest) GetMetricQuery() string { if s == nil || s.MetricQuery == nil { return "" } return *s.MetricQuery } // GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotRequest) GetMetricQueryOk() (string, bool) { if s == nil || s.MetricQuery == nil { return "", false } return *s.MetricQuery, true } // HasMetricQuery returns a boolean if a field has been set. func (s *ScatterplotRequest) HasMetricQuery() bool { if s != nil && s.MetricQuery != nil { return true } return false } // SetMetricQuery allocates a new s.MetricQuery and returns the pointer to it. func (s *ScatterplotRequest) SetMetricQuery(v string) { s.MetricQuery = &v } // GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise. func (s *ScatterplotRequest) GetProcessQuery() WidgetProcessQuery { if s == nil || s.ProcessQuery == nil { return WidgetProcessQuery{} } return *s.ProcessQuery } // GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) { if s == nil || s.ProcessQuery == nil { return WidgetProcessQuery{}, false } return *s.ProcessQuery, true } // HasProcessQuery returns a boolean if a field has been set. func (s *ScatterplotRequest) HasProcessQuery() bool { if s != nil && s.ProcessQuery != nil { return true } return false } // SetProcessQuery allocates a new s.ProcessQuery and returns the pointer to it. func (s *ScatterplotRequest) SetProcessQuery(v WidgetProcessQuery) { s.ProcessQuery = &v } // GetX returns the X field if non-nil, zero value otherwise. func (s *ScatterplotRequests) GetX() ScatterplotRequest { if s == nil || s.X == nil { return ScatterplotRequest{} } return *s.X } // GetXOk returns a tuple with the X field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotRequests) GetXOk() (ScatterplotRequest, bool) { if s == nil || s.X == nil { return ScatterplotRequest{}, false } return *s.X, true } // HasX returns a boolean if a field has been set. func (s *ScatterplotRequests) HasX() bool { if s != nil && s.X != nil { return true } return false } // SetX allocates a new s.X and returns the pointer to it. func (s *ScatterplotRequests) SetX(v ScatterplotRequest) { s.X = &v } // GetY returns the Y field if non-nil, zero value otherwise. func (s *ScatterplotRequests) GetY() ScatterplotRequest { if s == nil || s.Y == nil { return ScatterplotRequest{} } return *s.Y } // GetYOk returns a tuple with the Y field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScatterplotRequests) GetYOk() (ScatterplotRequest, bool) { if s == nil || s.Y == nil { return ScatterplotRequest{}, false } return *s.Y, true } // HasY returns a boolean if a field has been set. func (s *ScatterplotRequests) HasY() bool { if s != nil && s.Y != nil { return true } return false } // SetY allocates a new s.Y and returns the pointer to it. func (s *ScatterplotRequests) SetY(v ScatterplotRequest) { s.Y = &v } // GetHeight returns the Height field if non-nil, zero value otherwise. func (s *Screenboard) GetHeight() int { if s == nil || s.Height == nil { return 0 } return *s.Height } // GetHeightOk returns a tuple with the Height field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Screenboard) GetHeightOk() (int, bool) { if s == nil || s.Height == nil { return 0, false } return *s.Height, true } // HasHeight returns a boolean if a field has been set. func (s *Screenboard) HasHeight() bool { if s != nil && s.Height != nil { return true } return false } // SetHeight allocates a new s.Height and returns the pointer to it. func (s *Screenboard) SetHeight(v int) { s.Height = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (s *Screenboard) GetId() int { if s == nil || s.Id == nil { return 0 } return *s.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Screenboard) GetIdOk() (int, bool) { if s == nil || s.Id == nil { return 0, false } return *s.Id, true } // HasId returns a boolean if a field has been set. func (s *Screenboard) HasId() bool { if s != nil && s.Id != nil { return true } return false } // SetId allocates a new s.Id and returns the pointer to it. func (s *Screenboard) SetId(v int) { s.Id = &v } // GetNewId returns the NewId field if non-nil, zero value otherwise. func (s *Screenboard) GetNewId() string { if s == nil || s.NewId == nil { return "" } return *s.NewId } // GetNewIdOk returns a tuple with the NewId field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Screenboard) GetNewIdOk() (string, bool) { if s == nil || s.NewId == nil { return "", false } return *s.NewId, true } // HasNewId returns a boolean if a field has been set. func (s *Screenboard) HasNewId() bool { if s != nil && s.NewId != nil { return true } return false } // SetNewId allocates a new s.NewId and returns the pointer to it. func (s *Screenboard) SetNewId(v string) { s.NewId = &v } // GetReadOnly returns the ReadOnly field if non-nil, zero value otherwise. func (s *Screenboard) GetReadOnly() bool { if s == nil || s.ReadOnly == nil { return false } return *s.ReadOnly } // GetReadOnlyOk returns a tuple with the ReadOnly field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Screenboard) GetReadOnlyOk() (bool, bool) { if s == nil || s.ReadOnly == nil { return false, false } return *s.ReadOnly, true } // HasReadOnly returns a boolean if a field has been set. func (s *Screenboard) HasReadOnly() bool { if s != nil && s.ReadOnly != nil { return true } return false } // SetReadOnly allocates a new s.ReadOnly and returns the pointer to it. func (s *Screenboard) SetReadOnly(v bool) { s.ReadOnly = &v } // GetShared returns the Shared field if non-nil, zero value otherwise. func (s *Screenboard) GetShared() bool { if s == nil || s.Shared == nil { return false } return *s.Shared } // GetSharedOk returns a tuple with the Shared field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Screenboard) GetSharedOk() (bool, bool) { if s == nil || s.Shared == nil { return false, false } return *s.Shared, true } // HasShared returns a boolean if a field has been set. func (s *Screenboard) HasShared() bool { if s != nil && s.Shared != nil { return true } return false } // SetShared allocates a new s.Shared and returns the pointer to it. func (s *Screenboard) SetShared(v bool) { s.Shared = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (s *Screenboard) GetTitle() string { if s == nil || s.Title == nil { return "" } return *s.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Screenboard) GetTitleOk() (string, bool) { if s == nil || s.Title == nil { return "", false } return *s.Title, true } // HasTitle returns a boolean if a field has been set. func (s *Screenboard) HasTitle() bool { if s != nil && s.Title != nil { return true } return false } // SetTitle allocates a new s.Title and returns the pointer to it. func (s *Screenboard) SetTitle(v string) { s.Title = &v } // GetWidth returns the Width field if non-nil, zero value otherwise. func (s *Screenboard) GetWidth() int { if s == nil || s.Width == nil { return 0 } return *s.Width } // GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Screenboard) GetWidthOk() (int, bool) { if s == nil || s.Width == nil { return 0, false } return *s.Width, true } // HasWidth returns a boolean if a field has been set. func (s *Screenboard) HasWidth() bool { if s != nil && s.Width != nil { return true } return false } // SetWidth allocates a new s.Width and returns the pointer to it. func (s *Screenboard) SetWidth(v int) { s.Width = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (s *ScreenboardLite) GetId() int { if s == nil || s.Id == nil { return 0 } return *s.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScreenboardLite) GetIdOk() (int, bool) { if s == nil || s.Id == nil { return 0, false } return *s.Id, true } // HasId returns a boolean if a field has been set. func (s *ScreenboardLite) HasId() bool { if s != nil && s.Id != nil { return true } return false } // SetId allocates a new s.Id and returns the pointer to it. func (s *ScreenboardLite) SetId(v int) { s.Id = &v } // GetResource returns the Resource field if non-nil, zero value otherwise. func (s *ScreenboardLite) GetResource() string { if s == nil || s.Resource == nil { return "" } return *s.Resource } // GetResourceOk returns a tuple with the Resource field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScreenboardLite) GetResourceOk() (string, bool) { if s == nil || s.Resource == nil { return "", false } return *s.Resource, true } // HasResource returns a boolean if a field has been set. func (s *ScreenboardLite) HasResource() bool { if s != nil && s.Resource != nil { return true } return false } // SetResource allocates a new s.Resource and returns the pointer to it. func (s *ScreenboardLite) SetResource(v string) { s.Resource = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (s *ScreenboardLite) GetTitle() string { if s == nil || s.Title == nil { return "" } return *s.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScreenboardLite) GetTitleOk() (string, bool) { if s == nil || s.Title == nil { return "", false } return *s.Title, true } // HasTitle returns a boolean if a field has been set. func (s *ScreenboardLite) HasTitle() bool { if s != nil && s.Title != nil { return true } return false } // SetTitle allocates a new s.Title and returns the pointer to it. func (s *ScreenboardLite) SetTitle(v string) { s.Title = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (s *ScreenboardMonitor) GetId() int { if s == nil || s.Id == nil { return 0 } return *s.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ScreenboardMonitor) GetIdOk() (int, bool) { if s == nil || s.Id == nil { return 0, false } return *s.Id, true } // HasId returns a boolean if a field has been set. func (s *ScreenboardMonitor) HasId() bool { if s != nil && s.Id != nil { return true } return false } // SetId allocates a new s.Id and returns the pointer to it. func (s *ScreenboardMonitor) SetId(v int) { s.Id = &v } // GetAggr returns the Aggr field if non-nil, zero value otherwise. func (s *Series) GetAggr() string { if s == nil || s.Aggr == nil { return "" } return *s.Aggr } // GetAggrOk returns a tuple with the Aggr field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Series) GetAggrOk() (string, bool) { if s == nil || s.Aggr == nil { return "", false } return *s.Aggr, true } // HasAggr returns a boolean if a field has been set. func (s *Series) HasAggr() bool { if s != nil && s.Aggr != nil { return true } return false } // SetAggr allocates a new s.Aggr and returns the pointer to it. func (s *Series) SetAggr(v string) { s.Aggr = &v } // GetDisplayName returns the DisplayName field if non-nil, zero value otherwise. func (s *Series) GetDisplayName() string { if s == nil || s.DisplayName == nil { return "" } return *s.DisplayName } // GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Series) GetDisplayNameOk() (string, bool) { if s == nil || s.DisplayName == nil { return "", false } return *s.DisplayName, true } // HasDisplayName returns a boolean if a field has been set. func (s *Series) HasDisplayName() bool { if s != nil && s.DisplayName != nil { return true } return false } // SetDisplayName allocates a new s.DisplayName and returns the pointer to it. func (s *Series) SetDisplayName(v string) { s.DisplayName = &v } // GetEnd returns the End field if non-nil, zero value otherwise. func (s *Series) GetEnd() float64 { if s == nil || s.End == nil { return 0 } return *s.End } // GetEndOk returns a tuple with the End field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Series) GetEndOk() (float64, bool) { if s == nil || s.End == nil { return 0, false } return *s.End, true } // HasEnd returns a boolean if a field has been set. func (s *Series) HasEnd() bool { if s != nil && s.End != nil { return true } return false } // SetEnd allocates a new s.End and returns the pointer to it. func (s *Series) SetEnd(v float64) { s.End = &v } // GetExpression returns the Expression field if non-nil, zero value otherwise. func (s *Series) GetExpression() string { if s == nil || s.Expression == nil { return "" } return *s.Expression } // GetExpressionOk returns a tuple with the Expression field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Series) GetExpressionOk() (string, bool) { if s == nil || s.Expression == nil { return "", false } return *s.Expression, true } // HasExpression returns a boolean if a field has been set. func (s *Series) HasExpression() bool { if s != nil && s.Expression != nil { return true } return false } // SetExpression allocates a new s.Expression and returns the pointer to it. func (s *Series) SetExpression(v string) { s.Expression = &v } // GetInterval returns the Interval field if non-nil, zero value otherwise. func (s *Series) GetInterval() int { if s == nil || s.Interval == nil { return 0 } return *s.Interval } // GetIntervalOk returns a tuple with the Interval field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Series) GetIntervalOk() (int, bool) { if s == nil || s.Interval == nil { return 0, false } return *s.Interval, true } // HasInterval returns a boolean if a field has been set. func (s *Series) HasInterval() bool { if s != nil && s.Interval != nil { return true } return false } // SetInterval allocates a new s.Interval and returns the pointer to it. func (s *Series) SetInterval(v int) { s.Interval = &v } // GetLength returns the Length field if non-nil, zero value otherwise. func (s *Series) GetLength() int { if s == nil || s.Length == nil { return 0 } return *s.Length } // GetLengthOk returns a tuple with the Length field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Series) GetLengthOk() (int, bool) { if s == nil || s.Length == nil { return 0, false } return *s.Length, true } // HasLength returns a boolean if a field has been set. func (s *Series) HasLength() bool { if s != nil && s.Length != nil { return true } return false } // SetLength allocates a new s.Length and returns the pointer to it. func (s *Series) SetLength(v int) { s.Length = &v } // GetMetric returns the Metric field if non-nil, zero value otherwise. func (s *Series) GetMetric() string { if s == nil || s.Metric == nil { return "" } return *s.Metric } // GetMetricOk returns a tuple with the Metric field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Series) GetMetricOk() (string, bool) { if s == nil || s.Metric == nil { return "", false } return *s.Metric, true } // HasMetric returns a boolean if a field has been set. func (s *Series) HasMetric() bool { if s != nil && s.Metric != nil { return true } return false } // SetMetric allocates a new s.Metric and returns the pointer to it. func (s *Series) SetMetric(v string) { s.Metric = &v } // GetScope returns the Scope field if non-nil, zero value otherwise. func (s *Series) GetScope() string { if s == nil || s.Scope == nil { return "" } return *s.Scope } // GetScopeOk returns a tuple with the Scope field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Series) GetScopeOk() (string, bool) { if s == nil || s.Scope == nil { return "", false } return *s.Scope, true } // HasScope returns a boolean if a field has been set. func (s *Series) HasScope() bool { if s != nil && s.Scope != nil { return true } return false } // SetScope allocates a new s.Scope and returns the pointer to it. func (s *Series) SetScope(v string) { s.Scope = &v } // GetStart returns the Start field if non-nil, zero value otherwise. func (s *Series) GetStart() float64 { if s == nil || s.Start == nil { return 0 } return *s.Start } // GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Series) GetStartOk() (float64, bool) { if s == nil || s.Start == nil { return 0, false } return *s.Start, true } // HasStart returns a boolean if a field has been set. func (s *Series) HasStart() bool { if s != nil && s.Start != nil { return true } return false } // SetStart allocates a new s.Start and returns the pointer to it. func (s *Series) SetStart(v float64) { s.Start = &v } // GetUnits returns the Units field if non-nil, zero value otherwise. func (s *Series) GetUnits() UnitPair { if s == nil || s.Units == nil { return UnitPair{} } return *s.Units } // GetUnitsOk returns a tuple with the Units field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Series) GetUnitsOk() (UnitPair, bool) { if s == nil || s.Units == nil { return UnitPair{}, false } return *s.Units, true } // HasUnits returns a boolean if a field has been set. func (s *Series) HasUnits() bool { if s != nil && s.Units != nil { return true } return false } // SetUnits allocates a new s.Units and returns the pointer to it. func (s *Series) SetUnits(v UnitPair) { s.Units = &v } // GetAccount returns the Account field if non-nil, zero value otherwise. func (s *ServiceHookSlackRequest) GetAccount() string { if s == nil || s.Account == nil { return "" } return *s.Account } // GetAccountOk returns a tuple with the Account field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ServiceHookSlackRequest) GetAccountOk() (string, bool) { if s == nil || s.Account == nil { return "", false } return *s.Account, true } // HasAccount returns a boolean if a field has been set. func (s *ServiceHookSlackRequest) HasAccount() bool { if s != nil && s.Account != nil { return true } return false } // SetAccount allocates a new s.Account and returns the pointer to it. func (s *ServiceHookSlackRequest) SetAccount(v string) { s.Account = &v } // GetUrl returns the Url field if non-nil, zero value otherwise. func (s *ServiceHookSlackRequest) GetUrl() string { if s == nil || s.Url == nil { return "" } return *s.Url } // GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ServiceHookSlackRequest) GetUrlOk() (string, bool) { if s == nil || s.Url == nil { return "", false } return *s.Url, true } // HasUrl returns a boolean if a field has been set. func (s *ServiceHookSlackRequest) HasUrl() bool { if s != nil && s.Url != nil { return true } return false } // SetUrl allocates a new s.Url and returns the pointer to it. func (s *ServiceHookSlackRequest) SetUrl(v string) { s.Url = &v } // GetServiceKey returns the ServiceKey field if non-nil, zero value otherwise. func (s *servicePD) GetServiceKey() string { if s == nil || s.ServiceKey == nil { return "" } return *s.ServiceKey } // GetServiceKeyOk returns a tuple with the ServiceKey field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *servicePD) GetServiceKeyOk() (string, bool) { if s == nil || s.ServiceKey == nil { return "", false } return *s.ServiceKey, true } // HasServiceKey returns a boolean if a field has been set. func (s *servicePD) HasServiceKey() bool { if s != nil && s.ServiceKey != nil { return true } return false } // SetServiceKey allocates a new s.ServiceKey and returns the pointer to it. func (s *servicePD) SetServiceKey(v string) { s.ServiceKey = &v } // GetServiceName returns the ServiceName field if non-nil, zero value otherwise. func (s *servicePD) GetServiceName() string { if s == nil || s.ServiceName == nil { return "" } return *s.ServiceName } // GetServiceNameOk returns a tuple with the ServiceName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *servicePD) GetServiceNameOk() (string, bool) { if s == nil || s.ServiceName == nil { return "", false } return *s.ServiceName, true } // HasServiceName returns a boolean if a field has been set. func (s *servicePD) HasServiceName() bool { if s != nil && s.ServiceName != nil { return true } return false } // SetServiceName allocates a new s.ServiceName and returns the pointer to it. func (s *servicePD) SetServiceName(v string) { s.ServiceName = &v } // GetServiceKey returns the ServiceKey field if non-nil, zero value otherwise. func (s *ServicePDRequest) GetServiceKey() string { if s == nil || s.ServiceKey == nil { return "" } return *s.ServiceKey } // GetServiceKeyOk returns a tuple with the ServiceKey field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ServicePDRequest) GetServiceKeyOk() (string, bool) { if s == nil || s.ServiceKey == nil { return "", false } return *s.ServiceKey, true } // HasServiceKey returns a boolean if a field has been set. func (s *ServicePDRequest) HasServiceKey() bool { if s != nil && s.ServiceKey != nil { return true } return false } // SetServiceKey allocates a new s.ServiceKey and returns the pointer to it. func (s *ServicePDRequest) SetServiceKey(v string) { s.ServiceKey = &v } // GetServiceName returns the ServiceName field if non-nil, zero value otherwise. func (s *ServicePDRequest) GetServiceName() string { if s == nil || s.ServiceName == nil { return "" } return *s.ServiceName } // GetServiceNameOk returns a tuple with the ServiceName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *ServicePDRequest) GetServiceNameOk() (string, bool) { if s == nil || s.ServiceName == nil { return "", false } return *s.ServiceName, true } // HasServiceName returns a boolean if a field has been set. func (s *ServicePDRequest) HasServiceName() bool { if s != nil && s.ServiceName != nil { return true } return false } // SetServiceName allocates a new s.ServiceName and returns the pointer to it. func (s *ServicePDRequest) SetServiceName(v string) { s.ServiceName = &v } // GetFillMax returns the FillMax field if non-nil, zero value otherwise. func (s *Style) GetFillMax() json.Number { if s == nil || s.FillMax == nil { return "" } return *s.FillMax } // GetFillMaxOk returns a tuple with the FillMax field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Style) GetFillMaxOk() (json.Number, bool) { if s == nil || s.FillMax == nil { return "", false } return *s.FillMax, true } // HasFillMax returns a boolean if a field has been set. func (s *Style) HasFillMax() bool { if s != nil && s.FillMax != nil { return true } return false } // SetFillMax allocates a new s.FillMax and returns the pointer to it. func (s *Style) SetFillMax(v json.Number) { s.FillMax = &v } // GetFillMin returns the FillMin field if non-nil, zero value otherwise. func (s *Style) GetFillMin() json.Number { if s == nil || s.FillMin == nil { return "" } return *s.FillMin } // GetFillMinOk returns a tuple with the FillMin field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Style) GetFillMinOk() (json.Number, bool) { if s == nil || s.FillMin == nil { return "", false } return *s.FillMin, true } // HasFillMin returns a boolean if a field has been set. func (s *Style) HasFillMin() bool { if s != nil && s.FillMin != nil { return true } return false } // SetFillMin allocates a new s.FillMin and returns the pointer to it. func (s *Style) SetFillMin(v json.Number) { s.FillMin = &v } // GetPalette returns the Palette field if non-nil, zero value otherwise. func (s *Style) GetPalette() string { if s == nil || s.Palette == nil { return "" } return *s.Palette } // GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Style) GetPaletteOk() (string, bool) { if s == nil || s.Palette == nil { return "", false } return *s.Palette, true } // HasPalette returns a boolean if a field has been set. func (s *Style) HasPalette() bool { if s != nil && s.Palette != nil { return true } return false } // SetPalette allocates a new s.Palette and returns the pointer to it. func (s *Style) SetPalette(v string) { s.Palette = &v } // GetPaletteFlip returns the PaletteFlip field if non-nil, zero value otherwise. func (s *Style) GetPaletteFlip() bool { if s == nil || s.PaletteFlip == nil { return false } return *s.PaletteFlip } // GetPaletteFlipOk returns a tuple with the PaletteFlip field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *Style) GetPaletteFlipOk() (bool, bool) { if s == nil || s.PaletteFlip == nil { return false, false } return *s.PaletteFlip, true } // HasPaletteFlip returns a boolean if a field has been set. func (s *Style) HasPaletteFlip() bool { if s != nil && s.PaletteFlip != nil { return true } return false } // SetPaletteFlip allocates a new s.PaletteFlip and returns the pointer to it. func (s *Style) SetPaletteFlip(v bool) { s.PaletteFlip = &v } // GetOperator returns the Operator field if non-nil, zero value otherwise. func (s *SyntheticsAssertion) GetOperator() string { if s == nil || s.Operator == nil { return "" } return *s.Operator } // GetOperatorOk returns a tuple with the Operator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsAssertion) GetOperatorOk() (string, bool) { if s == nil || s.Operator == nil { return "", false } return *s.Operator, true } // HasOperator returns a boolean if a field has been set. func (s *SyntheticsAssertion) HasOperator() bool { if s != nil && s.Operator != nil { return true } return false } // SetOperator allocates a new s.Operator and returns the pointer to it. func (s *SyntheticsAssertion) SetOperator(v string) { s.Operator = &v } // GetProperty returns the Property field if non-nil, zero value otherwise. func (s *SyntheticsAssertion) GetProperty() string { if s == nil || s.Property == nil { return "" } return *s.Property } // GetPropertyOk returns a tuple with the Property field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsAssertion) GetPropertyOk() (string, bool) { if s == nil || s.Property == nil { return "", false } return *s.Property, true } // HasProperty returns a boolean if a field has been set. func (s *SyntheticsAssertion) HasProperty() bool { if s != nil && s.Property != nil { return true } return false } // SetProperty allocates a new s.Property and returns the pointer to it. func (s *SyntheticsAssertion) SetProperty(v string) { s.Property = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (s *SyntheticsAssertion) GetType() string { if s == nil || s.Type == nil { return "" } return *s.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsAssertion) GetTypeOk() (string, bool) { if s == nil || s.Type == nil { return "", false } return *s.Type, true } // HasType returns a boolean if a field has been set. func (s *SyntheticsAssertion) HasType() bool { if s != nil && s.Type != nil { return true } return false } // SetType allocates a new s.Type and returns the pointer to it. func (s *SyntheticsAssertion) SetType(v string) { s.Type = &v } // GetRequest returns the Request field if non-nil, zero value otherwise. func (s *SyntheticsConfig) GetRequest() SyntheticsRequest { if s == nil || s.Request == nil { return SyntheticsRequest{} } return *s.Request } // GetRequestOk returns a tuple with the Request field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsConfig) GetRequestOk() (SyntheticsRequest, bool) { if s == nil || s.Request == nil { return SyntheticsRequest{}, false } return *s.Request, true } // HasRequest returns a boolean if a field has been set. func (s *SyntheticsConfig) HasRequest() bool { if s != nil && s.Request != nil { return true } return false } // SetRequest allocates a new s.Request and returns the pointer to it. func (s *SyntheticsConfig) SetRequest(v SyntheticsRequest) { s.Request = &v } // GetHeight returns the Height field if non-nil, zero value otherwise. func (s *SyntheticsDevice) GetHeight() int { if s == nil || s.Height == nil { return 0 } return *s.Height } // GetHeightOk returns a tuple with the Height field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsDevice) GetHeightOk() (int, bool) { if s == nil || s.Height == nil { return 0, false } return *s.Height, true } // HasHeight returns a boolean if a field has been set. func (s *SyntheticsDevice) HasHeight() bool { if s != nil && s.Height != nil { return true } return false } // SetHeight allocates a new s.Height and returns the pointer to it. func (s *SyntheticsDevice) SetHeight(v int) { s.Height = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (s *SyntheticsDevice) GetId() string { if s == nil || s.Id == nil { return "" } return *s.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsDevice) GetIdOk() (string, bool) { if s == nil || s.Id == nil { return "", false } return *s.Id, true } // HasId returns a boolean if a field has been set. func (s *SyntheticsDevice) HasId() bool { if s != nil && s.Id != nil { return true } return false } // SetId allocates a new s.Id and returns the pointer to it. func (s *SyntheticsDevice) SetId(v string) { s.Id = &v } // GetIsLandscape returns the IsLandscape field if non-nil, zero value otherwise. func (s *SyntheticsDevice) GetIsLandscape() bool { if s == nil || s.IsLandscape == nil { return false } return *s.IsLandscape } // GetIsLandscapeOk returns a tuple with the IsLandscape field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsDevice) GetIsLandscapeOk() (bool, bool) { if s == nil || s.IsLandscape == nil { return false, false } return *s.IsLandscape, true } // HasIsLandscape returns a boolean if a field has been set. func (s *SyntheticsDevice) HasIsLandscape() bool { if s != nil && s.IsLandscape != nil { return true } return false } // SetIsLandscape allocates a new s.IsLandscape and returns the pointer to it. func (s *SyntheticsDevice) SetIsLandscape(v bool) { s.IsLandscape = &v } // GetIsMobile returns the IsMobile field if non-nil, zero value otherwise. func (s *SyntheticsDevice) GetIsMobile() bool { if s == nil || s.IsMobile == nil { return false } return *s.IsMobile } // GetIsMobileOk returns a tuple with the IsMobile field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsDevice) GetIsMobileOk() (bool, bool) { if s == nil || s.IsMobile == nil { return false, false } return *s.IsMobile, true } // HasIsMobile returns a boolean if a field has been set. func (s *SyntheticsDevice) HasIsMobile() bool { if s != nil && s.IsMobile != nil { return true } return false } // SetIsMobile allocates a new s.IsMobile and returns the pointer to it. func (s *SyntheticsDevice) SetIsMobile(v bool) { s.IsMobile = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (s *SyntheticsDevice) GetName() string { if s == nil || s.Name == nil { return "" } return *s.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsDevice) GetNameOk() (string, bool) { if s == nil || s.Name == nil { return "", false } return *s.Name, true } // HasName returns a boolean if a field has been set. func (s *SyntheticsDevice) HasName() bool { if s != nil && s.Name != nil { return true } return false } // SetName allocates a new s.Name and returns the pointer to it. func (s *SyntheticsDevice) SetName(v string) { s.Name = &v } // GetUserAgent returns the UserAgent field if non-nil, zero value otherwise. func (s *SyntheticsDevice) GetUserAgent() string { if s == nil || s.UserAgent == nil { return "" } return *s.UserAgent } // GetUserAgentOk returns a tuple with the UserAgent field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsDevice) GetUserAgentOk() (string, bool) { if s == nil || s.UserAgent == nil { return "", false } return *s.UserAgent, true } // HasUserAgent returns a boolean if a field has been set. func (s *SyntheticsDevice) HasUserAgent() bool { if s != nil && s.UserAgent != nil { return true } return false } // SetUserAgent allocates a new s.UserAgent and returns the pointer to it. func (s *SyntheticsDevice) SetUserAgent(v string) { s.UserAgent = &v } // GetWidth returns the Width field if non-nil, zero value otherwise. func (s *SyntheticsDevice) GetWidth() int { if s == nil || s.Width == nil { return 0 } return *s.Width } // GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsDevice) GetWidthOk() (int, bool) { if s == nil || s.Width == nil { return 0, false } return *s.Width, true } // HasWidth returns a boolean if a field has been set. func (s *SyntheticsDevice) HasWidth() bool { if s != nil && s.Width != nil { return true } return false } // SetWidth allocates a new s.Width and returns the pointer to it. func (s *SyntheticsDevice) SetWidth(v int) { s.Width = &v } // GetDisplayName returns the DisplayName field if non-nil, zero value otherwise. func (s *SyntheticsLocation) GetDisplayName() string { if s == nil || s.DisplayName == nil { return "" } return *s.DisplayName } // GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsLocation) GetDisplayNameOk() (string, bool) { if s == nil || s.DisplayName == nil { return "", false } return *s.DisplayName, true } // HasDisplayName returns a boolean if a field has been set. func (s *SyntheticsLocation) HasDisplayName() bool { if s != nil && s.DisplayName != nil { return true } return false } // SetDisplayName allocates a new s.DisplayName and returns the pointer to it. func (s *SyntheticsLocation) SetDisplayName(v string) { s.DisplayName = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (s *SyntheticsLocation) GetId() int { if s == nil || s.Id == nil { return 0 } return *s.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsLocation) GetIdOk() (int, bool) { if s == nil || s.Id == nil { return 0, false } return *s.Id, true } // HasId returns a boolean if a field has been set. func (s *SyntheticsLocation) HasId() bool { if s != nil && s.Id != nil { return true } return false } // SetId allocates a new s.Id and returns the pointer to it. func (s *SyntheticsLocation) SetId(v int) { s.Id = &v } // GetIsLandscape returns the IsLandscape field if non-nil, zero value otherwise. func (s *SyntheticsLocation) GetIsLandscape() bool { if s == nil || s.IsLandscape == nil { return false } return *s.IsLandscape } // GetIsLandscapeOk returns a tuple with the IsLandscape field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsLocation) GetIsLandscapeOk() (bool, bool) { if s == nil || s.IsLandscape == nil { return false, false } return *s.IsLandscape, true } // HasIsLandscape returns a boolean if a field has been set. func (s *SyntheticsLocation) HasIsLandscape() bool { if s != nil && s.IsLandscape != nil { return true } return false } // SetIsLandscape allocates a new s.IsLandscape and returns the pointer to it. func (s *SyntheticsLocation) SetIsLandscape(v bool) { s.IsLandscape = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (s *SyntheticsLocation) GetName() string { if s == nil || s.Name == nil { return "" } return *s.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsLocation) GetNameOk() (string, bool) { if s == nil || s.Name == nil { return "", false } return *s.Name, true } // HasName returns a boolean if a field has been set. func (s *SyntheticsLocation) HasName() bool { if s != nil && s.Name != nil { return true } return false } // SetName allocates a new s.Name and returns the pointer to it. func (s *SyntheticsLocation) SetName(v string) { s.Name = &v } // GetRegion returns the Region field if non-nil, zero value otherwise. func (s *SyntheticsLocation) GetRegion() string { if s == nil || s.Region == nil { return "" } return *s.Region } // GetRegionOk returns a tuple with the Region field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsLocation) GetRegionOk() (string, bool) { if s == nil || s.Region == nil { return "", false } return *s.Region, true } // HasRegion returns a boolean if a field has been set. func (s *SyntheticsLocation) HasRegion() bool { if s != nil && s.Region != nil { return true } return false } // SetRegion allocates a new s.Region and returns the pointer to it. func (s *SyntheticsLocation) SetRegion(v string) { s.Region = &v } // GetFollowRedirects returns the FollowRedirects field if non-nil, zero value otherwise. func (s *SyntheticsOptions) GetFollowRedirects() bool { if s == nil || s.FollowRedirects == nil { return false } return *s.FollowRedirects } // GetFollowRedirectsOk returns a tuple with the FollowRedirects field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsOptions) GetFollowRedirectsOk() (bool, bool) { if s == nil || s.FollowRedirects == nil { return false, false } return *s.FollowRedirects, true } // HasFollowRedirects returns a boolean if a field has been set. func (s *SyntheticsOptions) HasFollowRedirects() bool { if s != nil && s.FollowRedirects != nil { return true } return false } // SetFollowRedirects allocates a new s.FollowRedirects and returns the pointer to it. func (s *SyntheticsOptions) SetFollowRedirects(v bool) { s.FollowRedirects = &v } // GetMinFailureDuration returns the MinFailureDuration field if non-nil, zero value otherwise. func (s *SyntheticsOptions) GetMinFailureDuration() int { if s == nil || s.MinFailureDuration == nil { return 0 } return *s.MinFailureDuration } // GetMinFailureDurationOk returns a tuple with the MinFailureDuration field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsOptions) GetMinFailureDurationOk() (int, bool) { if s == nil || s.MinFailureDuration == nil { return 0, false } return *s.MinFailureDuration, true } // HasMinFailureDuration returns a boolean if a field has been set. func (s *SyntheticsOptions) HasMinFailureDuration() bool { if s != nil && s.MinFailureDuration != nil { return true } return false } // SetMinFailureDuration allocates a new s.MinFailureDuration and returns the pointer to it. func (s *SyntheticsOptions) SetMinFailureDuration(v int) { s.MinFailureDuration = &v } // GetMinLocationFailed returns the MinLocationFailed field if non-nil, zero value otherwise. func (s *SyntheticsOptions) GetMinLocationFailed() int { if s == nil || s.MinLocationFailed == nil { return 0 } return *s.MinLocationFailed } // GetMinLocationFailedOk returns a tuple with the MinLocationFailed field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsOptions) GetMinLocationFailedOk() (int, bool) { if s == nil || s.MinLocationFailed == nil { return 0, false } return *s.MinLocationFailed, true } // HasMinLocationFailed returns a boolean if a field has been set. func (s *SyntheticsOptions) HasMinLocationFailed() bool { if s != nil && s.MinLocationFailed != nil { return true } return false } // SetMinLocationFailed allocates a new s.MinLocationFailed and returns the pointer to it. func (s *SyntheticsOptions) SetMinLocationFailed(v int) { s.MinLocationFailed = &v } // GetTickEvery returns the TickEvery field if non-nil, zero value otherwise. func (s *SyntheticsOptions) GetTickEvery() int { if s == nil || s.TickEvery == nil { return 0 } return *s.TickEvery } // GetTickEveryOk returns a tuple with the TickEvery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsOptions) GetTickEveryOk() (int, bool) { if s == nil || s.TickEvery == nil { return 0, false } return *s.TickEvery, true } // HasTickEvery returns a boolean if a field has been set. func (s *SyntheticsOptions) HasTickEvery() bool { if s != nil && s.TickEvery != nil { return true } return false } // SetTickEvery allocates a new s.TickEvery and returns the pointer to it. func (s *SyntheticsOptions) SetTickEvery(v int) { s.TickEvery = &v } // GetBody returns the Body field if non-nil, zero value otherwise. func (s *SyntheticsRequest) GetBody() string { if s == nil || s.Body == nil { return "" } return *s.Body } // GetBodyOk returns a tuple with the Body field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsRequest) GetBodyOk() (string, bool) { if s == nil || s.Body == nil { return "", false } return *s.Body, true } // HasBody returns a boolean if a field has been set. func (s *SyntheticsRequest) HasBody() bool { if s != nil && s.Body != nil { return true } return false } // SetBody allocates a new s.Body and returns the pointer to it. func (s *SyntheticsRequest) SetBody(v string) { s.Body = &v } // GetMethod returns the Method field if non-nil, zero value otherwise. func (s *SyntheticsRequest) GetMethod() string { if s == nil || s.Method == nil { return "" } return *s.Method } // GetMethodOk returns a tuple with the Method field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsRequest) GetMethodOk() (string, bool) { if s == nil || s.Method == nil { return "", false } return *s.Method, true } // HasMethod returns a boolean if a field has been set. func (s *SyntheticsRequest) HasMethod() bool { if s != nil && s.Method != nil { return true } return false } // SetMethod allocates a new s.Method and returns the pointer to it. func (s *SyntheticsRequest) SetMethod(v string) { s.Method = &v } // GetTimeout returns the Timeout field if non-nil, zero value otherwise. func (s *SyntheticsRequest) GetTimeout() int { if s == nil || s.Timeout == nil { return 0 } return *s.Timeout } // GetTimeoutOk returns a tuple with the Timeout field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsRequest) GetTimeoutOk() (int, bool) { if s == nil || s.Timeout == nil { return 0, false } return *s.Timeout, true } // HasTimeout returns a boolean if a field has been set. func (s *SyntheticsRequest) HasTimeout() bool { if s != nil && s.Timeout != nil { return true } return false } // SetTimeout allocates a new s.Timeout and returns the pointer to it. func (s *SyntheticsRequest) SetTimeout(v int) { s.Timeout = &v } // GetUrl returns the Url field if non-nil, zero value otherwise. func (s *SyntheticsRequest) GetUrl() string { if s == nil || s.Url == nil { return "" } return *s.Url } // GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsRequest) GetUrlOk() (string, bool) { if s == nil || s.Url == nil { return "", false } return *s.Url, true } // HasUrl returns a boolean if a field has been set. func (s *SyntheticsRequest) HasUrl() bool { if s != nil && s.Url != nil { return true } return false } // SetUrl allocates a new s.Url and returns the pointer to it. func (s *SyntheticsRequest) SetUrl(v string) { s.Url = &v } // GetConfig returns the Config field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetConfig() SyntheticsConfig { if s == nil || s.Config == nil { return SyntheticsConfig{} } return *s.Config } // GetConfigOk returns a tuple with the Config field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetConfigOk() (SyntheticsConfig, bool) { if s == nil || s.Config == nil { return SyntheticsConfig{}, false } return *s.Config, true } // HasConfig returns a boolean if a field has been set. func (s *SyntheticsTest) HasConfig() bool { if s != nil && s.Config != nil { return true } return false } // SetConfig allocates a new s.Config and returns the pointer to it. func (s *SyntheticsTest) SetConfig(v SyntheticsConfig) { s.Config = &v } // GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetCreatedAt() string { if s == nil || s.CreatedAt == nil { return "" } return *s.CreatedAt } // GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetCreatedAtOk() (string, bool) { if s == nil || s.CreatedAt == nil { return "", false } return *s.CreatedAt, true } // HasCreatedAt returns a boolean if a field has been set. func (s *SyntheticsTest) HasCreatedAt() bool { if s != nil && s.CreatedAt != nil { return true } return false } // SetCreatedAt allocates a new s.CreatedAt and returns the pointer to it. func (s *SyntheticsTest) SetCreatedAt(v string) { s.CreatedAt = &v } // GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetCreatedBy() SyntheticsUser { if s == nil || s.CreatedBy == nil { return SyntheticsUser{} } return *s.CreatedBy } // GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetCreatedByOk() (SyntheticsUser, bool) { if s == nil || s.CreatedBy == nil { return SyntheticsUser{}, false } return *s.CreatedBy, true } // HasCreatedBy returns a boolean if a field has been set. func (s *SyntheticsTest) HasCreatedBy() bool { if s != nil && s.CreatedBy != nil { return true } return false } // SetCreatedBy allocates a new s.CreatedBy and returns the pointer to it. func (s *SyntheticsTest) SetCreatedBy(v SyntheticsUser) { s.CreatedBy = &v } // GetDeletedAt returns the DeletedAt field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetDeletedAt() string { if s == nil || s.DeletedAt == nil { return "" } return *s.DeletedAt } // GetDeletedAtOk returns a tuple with the DeletedAt field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetDeletedAtOk() (string, bool) { if s == nil || s.DeletedAt == nil { return "", false } return *s.DeletedAt, true } // HasDeletedAt returns a boolean if a field has been set. func (s *SyntheticsTest) HasDeletedAt() bool { if s != nil && s.DeletedAt != nil { return true } return false } // SetDeletedAt allocates a new s.DeletedAt and returns the pointer to it. func (s *SyntheticsTest) SetDeletedAt(v string) { s.DeletedAt = &v } // GetMessage returns the Message field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetMessage() string { if s == nil || s.Message == nil { return "" } return *s.Message } // GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetMessageOk() (string, bool) { if s == nil || s.Message == nil { return "", false } return *s.Message, true } // HasMessage returns a boolean if a field has been set. func (s *SyntheticsTest) HasMessage() bool { if s != nil && s.Message != nil { return true } return false } // SetMessage allocates a new s.Message and returns the pointer to it. func (s *SyntheticsTest) SetMessage(v string) { s.Message = &v } // GetModifiedAt returns the ModifiedAt field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetModifiedAt() string { if s == nil || s.ModifiedAt == nil { return "" } return *s.ModifiedAt } // GetModifiedAtOk returns a tuple with the ModifiedAt field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetModifiedAtOk() (string, bool) { if s == nil || s.ModifiedAt == nil { return "", false } return *s.ModifiedAt, true } // HasModifiedAt returns a boolean if a field has been set. func (s *SyntheticsTest) HasModifiedAt() bool { if s != nil && s.ModifiedAt != nil { return true } return false } // SetModifiedAt allocates a new s.ModifiedAt and returns the pointer to it. func (s *SyntheticsTest) SetModifiedAt(v string) { s.ModifiedAt = &v } // GetModifiedBy returns the ModifiedBy field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetModifiedBy() SyntheticsUser { if s == nil || s.ModifiedBy == nil { return SyntheticsUser{} } return *s.ModifiedBy } // GetModifiedByOk returns a tuple with the ModifiedBy field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetModifiedByOk() (SyntheticsUser, bool) { if s == nil || s.ModifiedBy == nil { return SyntheticsUser{}, false } return *s.ModifiedBy, true } // HasModifiedBy returns a boolean if a field has been set. func (s *SyntheticsTest) HasModifiedBy() bool { if s != nil && s.ModifiedBy != nil { return true } return false } // SetModifiedBy allocates a new s.ModifiedBy and returns the pointer to it. func (s *SyntheticsTest) SetModifiedBy(v SyntheticsUser) { s.ModifiedBy = &v } // GetMonitorId returns the MonitorId field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetMonitorId() int { if s == nil || s.MonitorId == nil { return 0 } return *s.MonitorId } // GetMonitorIdOk returns a tuple with the MonitorId field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetMonitorIdOk() (int, bool) { if s == nil || s.MonitorId == nil { return 0, false } return *s.MonitorId, true } // HasMonitorId returns a boolean if a field has been set. func (s *SyntheticsTest) HasMonitorId() bool { if s != nil && s.MonitorId != nil { return true } return false } // SetMonitorId allocates a new s.MonitorId and returns the pointer to it. func (s *SyntheticsTest) SetMonitorId(v int) { s.MonitorId = &v } // GetMonitorStatus returns the MonitorStatus field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetMonitorStatus() string { if s == nil || s.MonitorStatus == nil { return "" } return *s.MonitorStatus } // GetMonitorStatusOk returns a tuple with the MonitorStatus field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetMonitorStatusOk() (string, bool) { if s == nil || s.MonitorStatus == nil { return "", false } return *s.MonitorStatus, true } // HasMonitorStatus returns a boolean if a field has been set. func (s *SyntheticsTest) HasMonitorStatus() bool { if s != nil && s.MonitorStatus != nil { return true } return false } // SetMonitorStatus allocates a new s.MonitorStatus and returns the pointer to it. func (s *SyntheticsTest) SetMonitorStatus(v string) { s.MonitorStatus = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetName() string { if s == nil || s.Name == nil { return "" } return *s.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetNameOk() (string, bool) { if s == nil || s.Name == nil { return "", false } return *s.Name, true } // HasName returns a boolean if a field has been set. func (s *SyntheticsTest) HasName() bool { if s != nil && s.Name != nil { return true } return false } // SetName allocates a new s.Name and returns the pointer to it. func (s *SyntheticsTest) SetName(v string) { s.Name = &v } // GetOptions returns the Options field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetOptions() SyntheticsOptions { if s == nil || s.Options == nil { return SyntheticsOptions{} } return *s.Options } // GetOptionsOk returns a tuple with the Options field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetOptionsOk() (SyntheticsOptions, bool) { if s == nil || s.Options == nil { return SyntheticsOptions{}, false } return *s.Options, true } // HasOptions returns a boolean if a field has been set. func (s *SyntheticsTest) HasOptions() bool { if s != nil && s.Options != nil { return true } return false } // SetOptions allocates a new s.Options and returns the pointer to it. func (s *SyntheticsTest) SetOptions(v SyntheticsOptions) { s.Options = &v } // GetPublicId returns the PublicId field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetPublicId() string { if s == nil || s.PublicId == nil { return "" } return *s.PublicId } // GetPublicIdOk returns a tuple with the PublicId field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetPublicIdOk() (string, bool) { if s == nil || s.PublicId == nil { return "", false } return *s.PublicId, true } // HasPublicId returns a boolean if a field has been set. func (s *SyntheticsTest) HasPublicId() bool { if s != nil && s.PublicId != nil { return true } return false } // SetPublicId allocates a new s.PublicId and returns the pointer to it. func (s *SyntheticsTest) SetPublicId(v string) { s.PublicId = &v } // GetStatus returns the Status field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetStatus() string { if s == nil || s.Status == nil { return "" } return *s.Status } // GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetStatusOk() (string, bool) { if s == nil || s.Status == nil { return "", false } return *s.Status, true } // HasStatus returns a boolean if a field has been set. func (s *SyntheticsTest) HasStatus() bool { if s != nil && s.Status != nil { return true } return false } // SetStatus allocates a new s.Status and returns the pointer to it. func (s *SyntheticsTest) SetStatus(v string) { s.Status = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (s *SyntheticsTest) GetType() string { if s == nil || s.Type == nil { return "" } return *s.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsTest) GetTypeOk() (string, bool) { if s == nil || s.Type == nil { return "", false } return *s.Type, true } // HasType returns a boolean if a field has been set. func (s *SyntheticsTest) HasType() bool { if s != nil && s.Type != nil { return true } return false } // SetType allocates a new s.Type and returns the pointer to it. func (s *SyntheticsTest) SetType(v string) { s.Type = &v } // GetEmail returns the Email field if non-nil, zero value otherwise. func (s *SyntheticsUser) GetEmail() string { if s == nil || s.Email == nil { return "" } return *s.Email } // GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsUser) GetEmailOk() (string, bool) { if s == nil || s.Email == nil { return "", false } return *s.Email, true } // HasEmail returns a boolean if a field has been set. func (s *SyntheticsUser) HasEmail() bool { if s != nil && s.Email != nil { return true } return false } // SetEmail allocates a new s.Email and returns the pointer to it. func (s *SyntheticsUser) SetEmail(v string) { s.Email = &v } // GetHandle returns the Handle field if non-nil, zero value otherwise. func (s *SyntheticsUser) GetHandle() string { if s == nil || s.Handle == nil { return "" } return *s.Handle } // GetHandleOk returns a tuple with the Handle field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsUser) GetHandleOk() (string, bool) { if s == nil || s.Handle == nil { return "", false } return *s.Handle, true } // HasHandle returns a boolean if a field has been set. func (s *SyntheticsUser) HasHandle() bool { if s != nil && s.Handle != nil { return true } return false } // SetHandle allocates a new s.Handle and returns the pointer to it. func (s *SyntheticsUser) SetHandle(v string) { s.Handle = &v } // GetId returns the Id field if non-nil, zero value otherwise. func (s *SyntheticsUser) GetId() int { if s == nil || s.Id == nil { return 0 } return *s.Id } // GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsUser) GetIdOk() (int, bool) { if s == nil || s.Id == nil { return 0, false } return *s.Id, true } // HasId returns a boolean if a field has been set. func (s *SyntheticsUser) HasId() bool { if s != nil && s.Id != nil { return true } return false } // SetId allocates a new s.Id and returns the pointer to it. func (s *SyntheticsUser) SetId(v int) { s.Id = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (s *SyntheticsUser) GetName() string { if s == nil || s.Name == nil { return "" } return *s.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (s *SyntheticsUser) GetNameOk() (string, bool) { if s == nil || s.Name == nil { return "", false } return *s.Name, true } // HasName returns a boolean if a field has been set. func (s *SyntheticsUser) HasName() bool { if s != nil && s.Name != nil { return true } return false } // SetName allocates a new s.Name and returns the pointer to it. func (s *SyntheticsUser) SetName(v string) { s.Name = &v } // GetDefault returns the Default field if non-nil, zero value otherwise. func (t *TemplateVariable) GetDefault() string { if t == nil || t.Default == nil { return "" } return *t.Default } // GetDefaultOk returns a tuple with the Default field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TemplateVariable) GetDefaultOk() (string, bool) { if t == nil || t.Default == nil { return "", false } return *t.Default, true } // HasDefault returns a boolean if a field has been set. func (t *TemplateVariable) HasDefault() bool { if t != nil && t.Default != nil { return true } return false } // SetDefault allocates a new t.Default and returns the pointer to it. func (t *TemplateVariable) SetDefault(v string) { t.Default = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (t *TemplateVariable) GetName() string { if t == nil || t.Name == nil { return "" } return *t.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TemplateVariable) GetNameOk() (string, bool) { if t == nil || t.Name == nil { return "", false } return *t.Name, true } // HasName returns a boolean if a field has been set. func (t *TemplateVariable) HasName() bool { if t != nil && t.Name != nil { return true } return false } // SetName allocates a new t.Name and returns the pointer to it. func (t *TemplateVariable) SetName(v string) { t.Name = &v } // GetPrefix returns the Prefix field if non-nil, zero value otherwise. func (t *TemplateVariable) GetPrefix() string { if t == nil || t.Prefix == nil { return "" } return *t.Prefix } // GetPrefixOk returns a tuple with the Prefix field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TemplateVariable) GetPrefixOk() (string, bool) { if t == nil || t.Prefix == nil { return "", false } return *t.Prefix, true } // HasPrefix returns a boolean if a field has been set. func (t *TemplateVariable) HasPrefix() bool { if t != nil && t.Prefix != nil { return true } return false } // SetPrefix allocates a new t.Prefix and returns the pointer to it. func (t *TemplateVariable) SetPrefix(v string) { t.Prefix = &v } // GetCritical returns the Critical field if non-nil, zero value otherwise. func (t *ThresholdCount) GetCritical() json.Number { if t == nil || t.Critical == nil { return "" } return *t.Critical } // GetCriticalOk returns a tuple with the Critical field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ThresholdCount) GetCriticalOk() (json.Number, bool) { if t == nil || t.Critical == nil { return "", false } return *t.Critical, true } // HasCritical returns a boolean if a field has been set. func (t *ThresholdCount) HasCritical() bool { if t != nil && t.Critical != nil { return true } return false } // SetCritical allocates a new t.Critical and returns the pointer to it. func (t *ThresholdCount) SetCritical(v json.Number) { t.Critical = &v } // GetCriticalRecovery returns the CriticalRecovery field if non-nil, zero value otherwise. func (t *ThresholdCount) GetCriticalRecovery() json.Number { if t == nil || t.CriticalRecovery == nil { return "" } return *t.CriticalRecovery } // GetCriticalRecoveryOk returns a tuple with the CriticalRecovery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ThresholdCount) GetCriticalRecoveryOk() (json.Number, bool) { if t == nil || t.CriticalRecovery == nil { return "", false } return *t.CriticalRecovery, true } // HasCriticalRecovery returns a boolean if a field has been set. func (t *ThresholdCount) HasCriticalRecovery() bool { if t != nil && t.CriticalRecovery != nil { return true } return false } // SetCriticalRecovery allocates a new t.CriticalRecovery and returns the pointer to it. func (t *ThresholdCount) SetCriticalRecovery(v json.Number) { t.CriticalRecovery = &v } // GetOk returns the Ok field if non-nil, zero value otherwise. func (t *ThresholdCount) GetOk() json.Number { if t == nil || t.Ok == nil { return "" } return *t.Ok } // GetOkOk returns a tuple with the Ok field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ThresholdCount) GetOkOk() (json.Number, bool) { if t == nil || t.Ok == nil { return "", false } return *t.Ok, true } // HasOk returns a boolean if a field has been set. func (t *ThresholdCount) HasOk() bool { if t != nil && t.Ok != nil { return true } return false } // SetOk allocates a new t.Ok and returns the pointer to it. func (t *ThresholdCount) SetOk(v json.Number) { t.Ok = &v } // GetPeriod returns the Period field if non-nil, zero value otherwise. func (t *ThresholdCount) GetPeriod() Period { if t == nil || t.Period == nil { return Period{} } return *t.Period } // GetPeriodOk returns a tuple with the Period field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ThresholdCount) GetPeriodOk() (Period, bool) { if t == nil || t.Period == nil { return Period{}, false } return *t.Period, true } // HasPeriod returns a boolean if a field has been set. func (t *ThresholdCount) HasPeriod() bool { if t != nil && t.Period != nil { return true } return false } // SetPeriod allocates a new t.Period and returns the pointer to it. func (t *ThresholdCount) SetPeriod(v Period) { t.Period = &v } // GetTimeAggregator returns the TimeAggregator field if non-nil, zero value otherwise. func (t *ThresholdCount) GetTimeAggregator() string { if t == nil || t.TimeAggregator == nil { return "" } return *t.TimeAggregator } // GetTimeAggregatorOk returns a tuple with the TimeAggregator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ThresholdCount) GetTimeAggregatorOk() (string, bool) { if t == nil || t.TimeAggregator == nil { return "", false } return *t.TimeAggregator, true } // HasTimeAggregator returns a boolean if a field has been set. func (t *ThresholdCount) HasTimeAggregator() bool { if t != nil && t.TimeAggregator != nil { return true } return false } // SetTimeAggregator allocates a new t.TimeAggregator and returns the pointer to it. func (t *ThresholdCount) SetTimeAggregator(v string) { t.TimeAggregator = &v } // GetUnknown returns the Unknown field if non-nil, zero value otherwise. func (t *ThresholdCount) GetUnknown() json.Number { if t == nil || t.Unknown == nil { return "" } return *t.Unknown } // GetUnknownOk returns a tuple with the Unknown field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ThresholdCount) GetUnknownOk() (json.Number, bool) { if t == nil || t.Unknown == nil { return "", false } return *t.Unknown, true } // HasUnknown returns a boolean if a field has been set. func (t *ThresholdCount) HasUnknown() bool { if t != nil && t.Unknown != nil { return true } return false } // SetUnknown allocates a new t.Unknown and returns the pointer to it. func (t *ThresholdCount) SetUnknown(v json.Number) { t.Unknown = &v } // GetWarning returns the Warning field if non-nil, zero value otherwise. func (t *ThresholdCount) GetWarning() json.Number { if t == nil || t.Warning == nil { return "" } return *t.Warning } // GetWarningOk returns a tuple with the Warning field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ThresholdCount) GetWarningOk() (json.Number, bool) { if t == nil || t.Warning == nil { return "", false } return *t.Warning, true } // HasWarning returns a boolean if a field has been set. func (t *ThresholdCount) HasWarning() bool { if t != nil && t.Warning != nil { return true } return false } // SetWarning allocates a new t.Warning and returns the pointer to it. func (t *ThresholdCount) SetWarning(v json.Number) { t.Warning = &v } // GetWarningRecovery returns the WarningRecovery field if non-nil, zero value otherwise. func (t *ThresholdCount) GetWarningRecovery() json.Number { if t == nil || t.WarningRecovery == nil { return "" } return *t.WarningRecovery } // GetWarningRecoveryOk returns a tuple with the WarningRecovery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ThresholdCount) GetWarningRecoveryOk() (json.Number, bool) { if t == nil || t.WarningRecovery == nil { return "", false } return *t.WarningRecovery, true } // HasWarningRecovery returns a boolean if a field has been set. func (t *ThresholdCount) HasWarningRecovery() bool { if t != nil && t.WarningRecovery != nil { return true } return false } // SetWarningRecovery allocates a new t.WarningRecovery and returns the pointer to it. func (t *ThresholdCount) SetWarningRecovery(v json.Number) { t.WarningRecovery = &v } // GetRecoveryWindow returns the RecoveryWindow field if non-nil, zero value otherwise. func (t *ThresholdWindows) GetRecoveryWindow() string { if t == nil || t.RecoveryWindow == nil { return "" } return *t.RecoveryWindow } // GetRecoveryWindowOk returns a tuple with the RecoveryWindow field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ThresholdWindows) GetRecoveryWindowOk() (string, bool) { if t == nil || t.RecoveryWindow == nil { return "", false } return *t.RecoveryWindow, true } // HasRecoveryWindow returns a boolean if a field has been set. func (t *ThresholdWindows) HasRecoveryWindow() bool { if t != nil && t.RecoveryWindow != nil { return true } return false } // SetRecoveryWindow allocates a new t.RecoveryWindow and returns the pointer to it. func (t *ThresholdWindows) SetRecoveryWindow(v string) { t.RecoveryWindow = &v } // GetTriggerWindow returns the TriggerWindow field if non-nil, zero value otherwise. func (t *ThresholdWindows) GetTriggerWindow() string { if t == nil || t.TriggerWindow == nil { return "" } return *t.TriggerWindow } // GetTriggerWindowOk returns a tuple with the TriggerWindow field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ThresholdWindows) GetTriggerWindowOk() (string, bool) { if t == nil || t.TriggerWindow == nil { return "", false } return *t.TriggerWindow, true } // HasTriggerWindow returns a boolean if a field has been set. func (t *ThresholdWindows) HasTriggerWindow() bool { if t != nil && t.TriggerWindow != nil { return true } return false } // SetTriggerWindow allocates a new t.TriggerWindow and returns the pointer to it. func (t *ThresholdWindows) SetTriggerWindow(v string) { t.TriggerWindow = &v } // GetAutoscale returns the Autoscale field if non-nil, zero value otherwise. func (t *TileDef) GetAutoscale() bool { if t == nil || t.Autoscale == nil { return false } return *t.Autoscale } // GetAutoscaleOk returns a tuple with the Autoscale field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDef) GetAutoscaleOk() (bool, bool) { if t == nil || t.Autoscale == nil { return false, false } return *t.Autoscale, true } // HasAutoscale returns a boolean if a field has been set. func (t *TileDef) HasAutoscale() bool { if t != nil && t.Autoscale != nil { return true } return false } // SetAutoscale allocates a new t.Autoscale and returns the pointer to it. func (t *TileDef) SetAutoscale(v bool) { t.Autoscale = &v } // GetCustomUnit returns the CustomUnit field if non-nil, zero value otherwise. func (t *TileDef) GetCustomUnit() string { if t == nil || t.CustomUnit == nil { return "" } return *t.CustomUnit } // GetCustomUnitOk returns a tuple with the CustomUnit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDef) GetCustomUnitOk() (string, bool) { if t == nil || t.CustomUnit == nil { return "", false } return *t.CustomUnit, true } // HasCustomUnit returns a boolean if a field has been set. func (t *TileDef) HasCustomUnit() bool { if t != nil && t.CustomUnit != nil { return true } return false } // SetCustomUnit allocates a new t.CustomUnit and returns the pointer to it. func (t *TileDef) SetCustomUnit(v string) { t.CustomUnit = &v } // GetNodeType returns the NodeType field if non-nil, zero value otherwise. func (t *TileDef) GetNodeType() string { if t == nil || t.NodeType == nil { return "" } return *t.NodeType } // GetNodeTypeOk returns a tuple with the NodeType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDef) GetNodeTypeOk() (string, bool) { if t == nil || t.NodeType == nil { return "", false } return *t.NodeType, true } // HasNodeType returns a boolean if a field has been set. func (t *TileDef) HasNodeType() bool { if t != nil && t.NodeType != nil { return true } return false } // SetNodeType allocates a new t.NodeType and returns the pointer to it. func (t *TileDef) SetNodeType(v string) { t.NodeType = &v } // GetNoGroupHosts returns the NoGroupHosts field if non-nil, zero value otherwise. func (t *TileDef) GetNoGroupHosts() bool { if t == nil || t.NoGroupHosts == nil { return false } return *t.NoGroupHosts } // GetNoGroupHostsOk returns a tuple with the NoGroupHosts field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDef) GetNoGroupHostsOk() (bool, bool) { if t == nil || t.NoGroupHosts == nil { return false, false } return *t.NoGroupHosts, true } // HasNoGroupHosts returns a boolean if a field has been set. func (t *TileDef) HasNoGroupHosts() bool { if t != nil && t.NoGroupHosts != nil { return true } return false } // SetNoGroupHosts allocates a new t.NoGroupHosts and returns the pointer to it. func (t *TileDef) SetNoGroupHosts(v bool) { t.NoGroupHosts = &v } // GetNoMetricHosts returns the NoMetricHosts field if non-nil, zero value otherwise. func (t *TileDef) GetNoMetricHosts() bool { if t == nil || t.NoMetricHosts == nil { return false } return *t.NoMetricHosts } // GetNoMetricHostsOk returns a tuple with the NoMetricHosts field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDef) GetNoMetricHostsOk() (bool, bool) { if t == nil || t.NoMetricHosts == nil { return false, false } return *t.NoMetricHosts, true } // HasNoMetricHosts returns a boolean if a field has been set. func (t *TileDef) HasNoMetricHosts() bool { if t != nil && t.NoMetricHosts != nil { return true } return false } // SetNoMetricHosts allocates a new t.NoMetricHosts and returns the pointer to it. func (t *TileDef) SetNoMetricHosts(v bool) { t.NoMetricHosts = &v } // GetPrecision returns the Precision field if non-nil, zero value otherwise. func (t *TileDef) GetPrecision() PrecisionT { if t == nil || t.Precision == nil { return "" } return *t.Precision } // GetPrecisionOk returns a tuple with the Precision field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDef) GetPrecisionOk() (PrecisionT, bool) { if t == nil || t.Precision == nil { return "", false } return *t.Precision, true } // HasPrecision returns a boolean if a field has been set. func (t *TileDef) HasPrecision() bool { if t != nil && t.Precision != nil { return true } return false } // SetPrecision allocates a new t.Precision and returns the pointer to it. func (t *TileDef) SetPrecision(v PrecisionT) { t.Precision = &v } // GetStyle returns the Style field if non-nil, zero value otherwise. func (t *TileDef) GetStyle() TileDefStyle { if t == nil || t.Style == nil { return TileDefStyle{} } return *t.Style } // GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDef) GetStyleOk() (TileDefStyle, bool) { if t == nil || t.Style == nil { return TileDefStyle{}, false } return *t.Style, true } // HasStyle returns a boolean if a field has been set. func (t *TileDef) HasStyle() bool { if t != nil && t.Style != nil { return true } return false } // SetStyle allocates a new t.Style and returns the pointer to it. func (t *TileDef) SetStyle(v TileDefStyle) { t.Style = &v } // GetTextAlign returns the TextAlign field if non-nil, zero value otherwise. func (t *TileDef) GetTextAlign() string { if t == nil || t.TextAlign == nil { return "" } return *t.TextAlign } // GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDef) GetTextAlignOk() (string, bool) { if t == nil || t.TextAlign == nil { return "", false } return *t.TextAlign, true } // HasTextAlign returns a boolean if a field has been set. func (t *TileDef) HasTextAlign() bool { if t != nil && t.TextAlign != nil { return true } return false } // SetTextAlign allocates a new t.TextAlign and returns the pointer to it. func (t *TileDef) SetTextAlign(v string) { t.TextAlign = &v } // GetViz returns the Viz field if non-nil, zero value otherwise. func (t *TileDef) GetViz() string { if t == nil || t.Viz == nil { return "" } return *t.Viz } // GetVizOk returns a tuple with the Viz field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDef) GetVizOk() (string, bool) { if t == nil || t.Viz == nil { return "", false } return *t.Viz, true } // HasViz returns a boolean if a field has been set. func (t *TileDef) HasViz() bool { if t != nil && t.Viz != nil { return true } return false } // SetViz allocates a new t.Viz and returns the pointer to it. func (t *TileDef) SetViz(v string) { t.Viz = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (t *TileDefEvent) GetQuery() string { if t == nil || t.Query == nil { return "" } return *t.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefEvent) GetQueryOk() (string, bool) { if t == nil || t.Query == nil { return "", false } return *t.Query, true } // HasQuery returns a boolean if a field has been set. func (t *TileDefEvent) HasQuery() bool { if t != nil && t.Query != nil { return true } return false } // SetQuery allocates a new t.Query and returns the pointer to it. func (t *TileDefEvent) SetQuery(v string) { t.Query = &v } // GetLabel returns the Label field if non-nil, zero value otherwise. func (t *TileDefMarker) GetLabel() string { if t == nil || t.Label == nil { return "" } return *t.Label } // GetLabelOk returns a tuple with the Label field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefMarker) GetLabelOk() (string, bool) { if t == nil || t.Label == nil { return "", false } return *t.Label, true } // HasLabel returns a boolean if a field has been set. func (t *TileDefMarker) HasLabel() bool { if t != nil && t.Label != nil { return true } return false } // SetLabel allocates a new t.Label and returns the pointer to it. func (t *TileDefMarker) SetLabel(v string) { t.Label = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (t *TileDefMarker) GetType() string { if t == nil || t.Type == nil { return "" } return *t.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefMarker) GetTypeOk() (string, bool) { if t == nil || t.Type == nil { return "", false } return *t.Type, true } // HasType returns a boolean if a field has been set. func (t *TileDefMarker) HasType() bool { if t != nil && t.Type != nil { return true } return false } // SetType allocates a new t.Type and returns the pointer to it. func (t *TileDefMarker) SetType(v string) { t.Type = &v } // GetValue returns the Value field if non-nil, zero value otherwise. func (t *TileDefMarker) GetValue() string { if t == nil || t.Value == nil { return "" } return *t.Value } // GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefMarker) GetValueOk() (string, bool) { if t == nil || t.Value == nil { return "", false } return *t.Value, true } // HasValue returns a boolean if a field has been set. func (t *TileDefMarker) HasValue() bool { if t != nil && t.Value != nil { return true } return false } // SetValue allocates a new t.Value and returns the pointer to it. func (t *TileDefMarker) SetValue(v string) { t.Value = &v } // GetAlias returns the Alias field if non-nil, zero value otherwise. func (t *TileDefMetadata) GetAlias() string { if t == nil || t.Alias == nil { return "" } return *t.Alias } // GetAliasOk returns a tuple with the Alias field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefMetadata) GetAliasOk() (string, bool) { if t == nil || t.Alias == nil { return "", false } return *t.Alias, true } // HasAlias returns a boolean if a field has been set. func (t *TileDefMetadata) HasAlias() bool { if t != nil && t.Alias != nil { return true } return false } // SetAlias allocates a new t.Alias and returns the pointer to it. func (t *TileDefMetadata) SetAlias(v string) { t.Alias = &v } // GetAggregator returns the Aggregator field if non-nil, zero value otherwise. func (t *TileDefRequest) GetAggregator() string { if t == nil || t.Aggregator == nil { return "" } return *t.Aggregator } // GetAggregatorOk returns a tuple with the Aggregator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetAggregatorOk() (string, bool) { if t == nil || t.Aggregator == nil { return "", false } return *t.Aggregator, true } // HasAggregator returns a boolean if a field has been set. func (t *TileDefRequest) HasAggregator() bool { if t != nil && t.Aggregator != nil { return true } return false } // SetAggregator allocates a new t.Aggregator and returns the pointer to it. func (t *TileDefRequest) SetAggregator(v string) { t.Aggregator = &v } // GetChangeType returns the ChangeType field if non-nil, zero value otherwise. func (t *TileDefRequest) GetChangeType() string { if t == nil || t.ChangeType == nil { return "" } return *t.ChangeType } // GetChangeTypeOk returns a tuple with the ChangeType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetChangeTypeOk() (string, bool) { if t == nil || t.ChangeType == nil { return "", false } return *t.ChangeType, true } // HasChangeType returns a boolean if a field has been set. func (t *TileDefRequest) HasChangeType() bool { if t != nil && t.ChangeType != nil { return true } return false } // SetChangeType allocates a new t.ChangeType and returns the pointer to it. func (t *TileDefRequest) SetChangeType(v string) { t.ChangeType = &v } // GetCompareTo returns the CompareTo field if non-nil, zero value otherwise. func (t *TileDefRequest) GetCompareTo() string { if t == nil || t.CompareTo == nil { return "" } return *t.CompareTo } // GetCompareToOk returns a tuple with the CompareTo field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetCompareToOk() (string, bool) { if t == nil || t.CompareTo == nil { return "", false } return *t.CompareTo, true } // HasCompareTo returns a boolean if a field has been set. func (t *TileDefRequest) HasCompareTo() bool { if t != nil && t.CompareTo != nil { return true } return false } // SetCompareTo allocates a new t.CompareTo and returns the pointer to it. func (t *TileDefRequest) SetCompareTo(v string) { t.CompareTo = &v } // GetExtraCol returns the ExtraCol field if non-nil, zero value otherwise. func (t *TileDefRequest) GetExtraCol() string { if t == nil || t.ExtraCol == nil { return "" } return *t.ExtraCol } // GetExtraColOk returns a tuple with the ExtraCol field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetExtraColOk() (string, bool) { if t == nil || t.ExtraCol == nil { return "", false } return *t.ExtraCol, true } // HasExtraCol returns a boolean if a field has been set. func (t *TileDefRequest) HasExtraCol() bool { if t != nil && t.ExtraCol != nil { return true } return false } // SetExtraCol allocates a new t.ExtraCol and returns the pointer to it. func (t *TileDefRequest) SetExtraCol(v string) { t.ExtraCol = &v } // GetIncreaseGood returns the IncreaseGood field if non-nil, zero value otherwise. func (t *TileDefRequest) GetIncreaseGood() bool { if t == nil || t.IncreaseGood == nil { return false } return *t.IncreaseGood } // GetIncreaseGoodOk returns a tuple with the IncreaseGood field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetIncreaseGoodOk() (bool, bool) { if t == nil || t.IncreaseGood == nil { return false, false } return *t.IncreaseGood, true } // HasIncreaseGood returns a boolean if a field has been set. func (t *TileDefRequest) HasIncreaseGood() bool { if t != nil && t.IncreaseGood != nil { return true } return false } // SetIncreaseGood allocates a new t.IncreaseGood and returns the pointer to it. func (t *TileDefRequest) SetIncreaseGood(v bool) { t.IncreaseGood = &v } // GetLimit returns the Limit field if non-nil, zero value otherwise. func (t *TileDefRequest) GetLimit() int { if t == nil || t.Limit == nil { return 0 } return *t.Limit } // GetLimitOk returns a tuple with the Limit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetLimitOk() (int, bool) { if t == nil || t.Limit == nil { return 0, false } return *t.Limit, true } // HasLimit returns a boolean if a field has been set. func (t *TileDefRequest) HasLimit() bool { if t != nil && t.Limit != nil { return true } return false } // SetLimit allocates a new t.Limit and returns the pointer to it. func (t *TileDefRequest) SetLimit(v int) { t.Limit = &v } // GetMetric returns the Metric field if non-nil, zero value otherwise. func (t *TileDefRequest) GetMetric() string { if t == nil || t.Metric == nil { return "" } return *t.Metric } // GetMetricOk returns a tuple with the Metric field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetMetricOk() (string, bool) { if t == nil || t.Metric == nil { return "", false } return *t.Metric, true } // HasMetric returns a boolean if a field has been set. func (t *TileDefRequest) HasMetric() bool { if t != nil && t.Metric != nil { return true } return false } // SetMetric allocates a new t.Metric and returns the pointer to it. func (t *TileDefRequest) SetMetric(v string) { t.Metric = &v } // GetOrderBy returns the OrderBy field if non-nil, zero value otherwise. func (t *TileDefRequest) GetOrderBy() string { if t == nil || t.OrderBy == nil { return "" } return *t.OrderBy } // GetOrderByOk returns a tuple with the OrderBy field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetOrderByOk() (string, bool) { if t == nil || t.OrderBy == nil { return "", false } return *t.OrderBy, true } // HasOrderBy returns a boolean if a field has been set. func (t *TileDefRequest) HasOrderBy() bool { if t != nil && t.OrderBy != nil { return true } return false } // SetOrderBy allocates a new t.OrderBy and returns the pointer to it. func (t *TileDefRequest) SetOrderBy(v string) { t.OrderBy = &v } // GetOrderDir returns the OrderDir field if non-nil, zero value otherwise. func (t *TileDefRequest) GetOrderDir() string { if t == nil || t.OrderDir == nil { return "" } return *t.OrderDir } // GetOrderDirOk returns a tuple with the OrderDir field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetOrderDirOk() (string, bool) { if t == nil || t.OrderDir == nil { return "", false } return *t.OrderDir, true } // HasOrderDir returns a boolean if a field has been set. func (t *TileDefRequest) HasOrderDir() bool { if t != nil && t.OrderDir != nil { return true } return false } // SetOrderDir allocates a new t.OrderDir and returns the pointer to it. func (t *TileDefRequest) SetOrderDir(v string) { t.OrderDir = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (t *TileDefRequest) GetQuery() string { if t == nil || t.Query == nil { return "" } return *t.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetQueryOk() (string, bool) { if t == nil || t.Query == nil { return "", false } return *t.Query, true } // HasQuery returns a boolean if a field has been set. func (t *TileDefRequest) HasQuery() bool { if t != nil && t.Query != nil { return true } return false } // SetQuery allocates a new t.Query and returns the pointer to it. func (t *TileDefRequest) SetQuery(v string) { t.Query = &v } // GetQueryType returns the QueryType field if non-nil, zero value otherwise. func (t *TileDefRequest) GetQueryType() string { if t == nil || t.QueryType == nil { return "" } return *t.QueryType } // GetQueryTypeOk returns a tuple with the QueryType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetQueryTypeOk() (string, bool) { if t == nil || t.QueryType == nil { return "", false } return *t.QueryType, true } // HasQueryType returns a boolean if a field has been set. func (t *TileDefRequest) HasQueryType() bool { if t != nil && t.QueryType != nil { return true } return false } // SetQueryType allocates a new t.QueryType and returns the pointer to it. func (t *TileDefRequest) SetQueryType(v string) { t.QueryType = &v } // GetStyle returns the Style field if non-nil, zero value otherwise. func (t *TileDefRequest) GetStyle() TileDefRequestStyle { if t == nil || t.Style == nil { return TileDefRequestStyle{} } return *t.Style } // GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetStyleOk() (TileDefRequestStyle, bool) { if t == nil || t.Style == nil { return TileDefRequestStyle{}, false } return *t.Style, true } // HasStyle returns a boolean if a field has been set. func (t *TileDefRequest) HasStyle() bool { if t != nil && t.Style != nil { return true } return false } // SetStyle allocates a new t.Style and returns the pointer to it. func (t *TileDefRequest) SetStyle(v TileDefRequestStyle) { t.Style = &v } // GetTextFilter returns the TextFilter field if non-nil, zero value otherwise. func (t *TileDefRequest) GetTextFilter() string { if t == nil || t.TextFilter == nil { return "" } return *t.TextFilter } // GetTextFilterOk returns a tuple with the TextFilter field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetTextFilterOk() (string, bool) { if t == nil || t.TextFilter == nil { return "", false } return *t.TextFilter, true } // HasTextFilter returns a boolean if a field has been set. func (t *TileDefRequest) HasTextFilter() bool { if t != nil && t.TextFilter != nil { return true } return false } // SetTextFilter allocates a new t.TextFilter and returns the pointer to it. func (t *TileDefRequest) SetTextFilter(v string) { t.TextFilter = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (t *TileDefRequest) GetType() string { if t == nil || t.Type == nil { return "" } return *t.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequest) GetTypeOk() (string, bool) { if t == nil || t.Type == nil { return "", false } return *t.Type, true } // HasType returns a boolean if a field has been set. func (t *TileDefRequest) HasType() bool { if t != nil && t.Type != nil { return true } return false } // SetType allocates a new t.Type and returns the pointer to it. func (t *TileDefRequest) SetType(v string) { t.Type = &v } // GetPalette returns the Palette field if non-nil, zero value otherwise. func (t *TileDefRequestStyle) GetPalette() string { if t == nil || t.Palette == nil { return "" } return *t.Palette } // GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequestStyle) GetPaletteOk() (string, bool) { if t == nil || t.Palette == nil { return "", false } return *t.Palette, true } // HasPalette returns a boolean if a field has been set. func (t *TileDefRequestStyle) HasPalette() bool { if t != nil && t.Palette != nil { return true } return false } // SetPalette allocates a new t.Palette and returns the pointer to it. func (t *TileDefRequestStyle) SetPalette(v string) { t.Palette = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (t *TileDefRequestStyle) GetType() string { if t == nil || t.Type == nil { return "" } return *t.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequestStyle) GetTypeOk() (string, bool) { if t == nil || t.Type == nil { return "", false } return *t.Type, true } // HasType returns a boolean if a field has been set. func (t *TileDefRequestStyle) HasType() bool { if t != nil && t.Type != nil { return true } return false } // SetType allocates a new t.Type and returns the pointer to it. func (t *TileDefRequestStyle) SetType(v string) { t.Type = &v } // GetWidth returns the Width field if non-nil, zero value otherwise. func (t *TileDefRequestStyle) GetWidth() string { if t == nil || t.Width == nil { return "" } return *t.Width } // GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefRequestStyle) GetWidthOk() (string, bool) { if t == nil || t.Width == nil { return "", false } return *t.Width, true } // HasWidth returns a boolean if a field has been set. func (t *TileDefRequestStyle) HasWidth() bool { if t != nil && t.Width != nil { return true } return false } // SetWidth allocates a new t.Width and returns the pointer to it. func (t *TileDefRequestStyle) SetWidth(v string) { t.Width = &v } // GetFillMax returns the FillMax field if non-nil, zero value otherwise. func (t *TileDefStyle) GetFillMax() json.Number { if t == nil || t.FillMax == nil { return "" } return *t.FillMax } // GetFillMaxOk returns a tuple with the FillMax field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefStyle) GetFillMaxOk() (json.Number, bool) { if t == nil || t.FillMax == nil { return "", false } return *t.FillMax, true } // HasFillMax returns a boolean if a field has been set. func (t *TileDefStyle) HasFillMax() bool { if t != nil && t.FillMax != nil { return true } return false } // SetFillMax allocates a new t.FillMax and returns the pointer to it. func (t *TileDefStyle) SetFillMax(v json.Number) { t.FillMax = &v } // GetFillMin returns the FillMin field if non-nil, zero value otherwise. func (t *TileDefStyle) GetFillMin() json.Number { if t == nil || t.FillMin == nil { return "" } return *t.FillMin } // GetFillMinOk returns a tuple with the FillMin field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefStyle) GetFillMinOk() (json.Number, bool) { if t == nil || t.FillMin == nil { return "", false } return *t.FillMin, true } // HasFillMin returns a boolean if a field has been set. func (t *TileDefStyle) HasFillMin() bool { if t != nil && t.FillMin != nil { return true } return false } // SetFillMin allocates a new t.FillMin and returns the pointer to it. func (t *TileDefStyle) SetFillMin(v json.Number) { t.FillMin = &v } // GetPalette returns the Palette field if non-nil, zero value otherwise. func (t *TileDefStyle) GetPalette() string { if t == nil || t.Palette == nil { return "" } return *t.Palette } // GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefStyle) GetPaletteOk() (string, bool) { if t == nil || t.Palette == nil { return "", false } return *t.Palette, true } // HasPalette returns a boolean if a field has been set. func (t *TileDefStyle) HasPalette() bool { if t != nil && t.Palette != nil { return true } return false } // SetPalette allocates a new t.Palette and returns the pointer to it. func (t *TileDefStyle) SetPalette(v string) { t.Palette = &v } // GetPaletteFlip returns the PaletteFlip field if non-nil, zero value otherwise. func (t *TileDefStyle) GetPaletteFlip() string { if t == nil || t.PaletteFlip == nil { return "" } return *t.PaletteFlip } // GetPaletteFlipOk returns a tuple with the PaletteFlip field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TileDefStyle) GetPaletteFlipOk() (string, bool) { if t == nil || t.PaletteFlip == nil { return "", false } return *t.PaletteFlip, true } // HasPaletteFlip returns a boolean if a field has been set. func (t *TileDefStyle) HasPaletteFlip() bool { if t != nil && t.PaletteFlip != nil { return true } return false } // SetPaletteFlip allocates a new t.PaletteFlip and returns the pointer to it. func (t *TileDefStyle) SetPaletteFlip(v string) { t.PaletteFlip = &v } // GetLiveSpan returns the LiveSpan field if non-nil, zero value otherwise. func (t *Time) GetLiveSpan() string { if t == nil || t.LiveSpan == nil { return "" } return *t.LiveSpan } // GetLiveSpanOk returns a tuple with the LiveSpan field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *Time) GetLiveSpanOk() (string, bool) { if t == nil || t.LiveSpan == nil { return "", false } return *t.LiveSpan, true } // HasLiveSpan returns a boolean if a field has been set. func (t *Time) HasLiveSpan() bool { if t != nil && t.LiveSpan != nil { return true } return false } // SetLiveSpan allocates a new t.LiveSpan and returns the pointer to it. func (t *Time) SetLiveSpan(v string) { t.LiveSpan = &v } // GetFrom returns the From field if non-nil, zero value otherwise. func (t *TimeRange) GetFrom() json.Number { if t == nil || t.From == nil { return "" } return *t.From } // GetFromOk returns a tuple with the From field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeRange) GetFromOk() (json.Number, bool) { if t == nil || t.From == nil { return "", false } return *t.From, true } // HasFrom returns a boolean if a field has been set. func (t *TimeRange) HasFrom() bool { if t != nil && t.From != nil { return true } return false } // SetFrom allocates a new t.From and returns the pointer to it. func (t *TimeRange) SetFrom(v json.Number) { t.From = &v } // GetLive returns the Live field if non-nil, zero value otherwise. func (t *TimeRange) GetLive() bool { if t == nil || t.Live == nil { return false } return *t.Live } // GetLiveOk returns a tuple with the Live field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeRange) GetLiveOk() (bool, bool) { if t == nil || t.Live == nil { return false, false } return *t.Live, true } // HasLive returns a boolean if a field has been set. func (t *TimeRange) HasLive() bool { if t != nil && t.Live != nil { return true } return false } // SetLive allocates a new t.Live and returns the pointer to it. func (t *TimeRange) SetLive(v bool) { t.Live = &v } // GetTo returns the To field if non-nil, zero value otherwise. func (t *TimeRange) GetTo() json.Number { if t == nil || t.To == nil { return "" } return *t.To } // GetToOk returns a tuple with the To field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeRange) GetToOk() (json.Number, bool) { if t == nil || t.To == nil { return "", false } return *t.To, true } // HasTo returns a boolean if a field has been set. func (t *TimeRange) HasTo() bool { if t != nil && t.To != nil { return true } return false } // SetTo allocates a new t.To and returns the pointer to it. func (t *TimeRange) SetTo(v json.Number) { t.To = &v } // GetLegendSize returns the LegendSize field if non-nil, zero value otherwise. func (t *TimeseriesDefinition) GetLegendSize() string { if t == nil || t.LegendSize == nil { return "" } return *t.LegendSize } // GetLegendSizeOk returns a tuple with the LegendSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesDefinition) GetLegendSizeOk() (string, bool) { if t == nil || t.LegendSize == nil { return "", false } return *t.LegendSize, true } // HasLegendSize returns a boolean if a field has been set. func (t *TimeseriesDefinition) HasLegendSize() bool { if t != nil && t.LegendSize != nil { return true } return false } // SetLegendSize allocates a new t.LegendSize and returns the pointer to it. func (t *TimeseriesDefinition) SetLegendSize(v string) { t.LegendSize = &v } // GetShowLegend returns the ShowLegend field if non-nil, zero value otherwise. func (t *TimeseriesDefinition) GetShowLegend() bool { if t == nil || t.ShowLegend == nil { return false } return *t.ShowLegend } // GetShowLegendOk returns a tuple with the ShowLegend field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesDefinition) GetShowLegendOk() (bool, bool) { if t == nil || t.ShowLegend == nil { return false, false } return *t.ShowLegend, true } // HasShowLegend returns a boolean if a field has been set. func (t *TimeseriesDefinition) HasShowLegend() bool { if t != nil && t.ShowLegend != nil { return true } return false } // SetShowLegend allocates a new t.ShowLegend and returns the pointer to it. func (t *TimeseriesDefinition) SetShowLegend(v bool) { t.ShowLegend = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (t *TimeseriesDefinition) GetTime() WidgetTime { if t == nil || t.Time == nil { return WidgetTime{} } return *t.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesDefinition) GetTimeOk() (WidgetTime, bool) { if t == nil || t.Time == nil { return WidgetTime{}, false } return *t.Time, true } // HasTime returns a boolean if a field has been set. func (t *TimeseriesDefinition) HasTime() bool { if t != nil && t.Time != nil { return true } return false } // SetTime allocates a new t.Time and returns the pointer to it. func (t *TimeseriesDefinition) SetTime(v WidgetTime) { t.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (t *TimeseriesDefinition) GetTitle() string { if t == nil || t.Title == nil { return "" } return *t.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesDefinition) GetTitleOk() (string, bool) { if t == nil || t.Title == nil { return "", false } return *t.Title, true } // HasTitle returns a boolean if a field has been set. func (t *TimeseriesDefinition) HasTitle() bool { if t != nil && t.Title != nil { return true } return false } // SetTitle allocates a new t.Title and returns the pointer to it. func (t *TimeseriesDefinition) SetTitle(v string) { t.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (t *TimeseriesDefinition) GetTitleAlign() string { if t == nil || t.TitleAlign == nil { return "" } return *t.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesDefinition) GetTitleAlignOk() (string, bool) { if t == nil || t.TitleAlign == nil { return "", false } return *t.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (t *TimeseriesDefinition) HasTitleAlign() bool { if t != nil && t.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new t.TitleAlign and returns the pointer to it. func (t *TimeseriesDefinition) SetTitleAlign(v string) { t.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (t *TimeseriesDefinition) GetTitleSize() string { if t == nil || t.TitleSize == nil { return "" } return *t.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesDefinition) GetTitleSizeOk() (string, bool) { if t == nil || t.TitleSize == nil { return "", false } return *t.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (t *TimeseriesDefinition) HasTitleSize() bool { if t != nil && t.TitleSize != nil { return true } return false } // SetTitleSize allocates a new t.TitleSize and returns the pointer to it. func (t *TimeseriesDefinition) SetTitleSize(v string) { t.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (t *TimeseriesDefinition) GetType() string { if t == nil || t.Type == nil { return "" } return *t.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesDefinition) GetTypeOk() (string, bool) { if t == nil || t.Type == nil { return "", false } return *t.Type, true } // HasType returns a boolean if a field has been set. func (t *TimeseriesDefinition) HasType() bool { if t != nil && t.Type != nil { return true } return false } // SetType allocates a new t.Type and returns the pointer to it. func (t *TimeseriesDefinition) SetType(v string) { t.Type = &v } // GetYaxis returns the Yaxis field if non-nil, zero value otherwise. func (t *TimeseriesDefinition) GetYaxis() WidgetAxis { if t == nil || t.Yaxis == nil { return WidgetAxis{} } return *t.Yaxis } // GetYaxisOk returns a tuple with the Yaxis field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesDefinition) GetYaxisOk() (WidgetAxis, bool) { if t == nil || t.Yaxis == nil { return WidgetAxis{}, false } return *t.Yaxis, true } // HasYaxis returns a boolean if a field has been set. func (t *TimeseriesDefinition) HasYaxis() bool { if t != nil && t.Yaxis != nil { return true } return false } // SetYaxis allocates a new t.Yaxis and returns the pointer to it. func (t *TimeseriesDefinition) SetYaxis(v WidgetAxis) { t.Yaxis = &v } // GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise. func (t *TimeseriesRequest) GetApmQuery() WidgetApmOrLogQuery { if t == nil || t.ApmQuery == nil { return WidgetApmOrLogQuery{} } return *t.ApmQuery } // GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) { if t == nil || t.ApmQuery == nil { return WidgetApmOrLogQuery{}, false } return *t.ApmQuery, true } // HasApmQuery returns a boolean if a field has been set. func (t *TimeseriesRequest) HasApmQuery() bool { if t != nil && t.ApmQuery != nil { return true } return false } // SetApmQuery allocates a new t.ApmQuery and returns the pointer to it. func (t *TimeseriesRequest) SetApmQuery(v WidgetApmOrLogQuery) { t.ApmQuery = &v } // GetDisplayType returns the DisplayType field if non-nil, zero value otherwise. func (t *TimeseriesRequest) GetDisplayType() string { if t == nil || t.DisplayType == nil { return "" } return *t.DisplayType } // GetDisplayTypeOk returns a tuple with the DisplayType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesRequest) GetDisplayTypeOk() (string, bool) { if t == nil || t.DisplayType == nil { return "", false } return *t.DisplayType, true } // HasDisplayType returns a boolean if a field has been set. func (t *TimeseriesRequest) HasDisplayType() bool { if t != nil && t.DisplayType != nil { return true } return false } // SetDisplayType allocates a new t.DisplayType and returns the pointer to it. func (t *TimeseriesRequest) SetDisplayType(v string) { t.DisplayType = &v } // GetLogQuery returns the LogQuery field if non-nil, zero value otherwise. func (t *TimeseriesRequest) GetLogQuery() WidgetApmOrLogQuery { if t == nil || t.LogQuery == nil { return WidgetApmOrLogQuery{} } return *t.LogQuery } // GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) { if t == nil || t.LogQuery == nil { return WidgetApmOrLogQuery{}, false } return *t.LogQuery, true } // HasLogQuery returns a boolean if a field has been set. func (t *TimeseriesRequest) HasLogQuery() bool { if t != nil && t.LogQuery != nil { return true } return false } // SetLogQuery allocates a new t.LogQuery and returns the pointer to it. func (t *TimeseriesRequest) SetLogQuery(v WidgetApmOrLogQuery) { t.LogQuery = &v } // GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise. func (t *TimeseriesRequest) GetMetricQuery() string { if t == nil || t.MetricQuery == nil { return "" } return *t.MetricQuery } // GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesRequest) GetMetricQueryOk() (string, bool) { if t == nil || t.MetricQuery == nil { return "", false } return *t.MetricQuery, true } // HasMetricQuery returns a boolean if a field has been set. func (t *TimeseriesRequest) HasMetricQuery() bool { if t != nil && t.MetricQuery != nil { return true } return false } // SetMetricQuery allocates a new t.MetricQuery and returns the pointer to it. func (t *TimeseriesRequest) SetMetricQuery(v string) { t.MetricQuery = &v } // GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise. func (t *TimeseriesRequest) GetProcessQuery() WidgetProcessQuery { if t == nil || t.ProcessQuery == nil { return WidgetProcessQuery{} } return *t.ProcessQuery } // GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) { if t == nil || t.ProcessQuery == nil { return WidgetProcessQuery{}, false } return *t.ProcessQuery, true } // HasProcessQuery returns a boolean if a field has been set. func (t *TimeseriesRequest) HasProcessQuery() bool { if t != nil && t.ProcessQuery != nil { return true } return false } // SetProcessQuery allocates a new t.ProcessQuery and returns the pointer to it. func (t *TimeseriesRequest) SetProcessQuery(v WidgetProcessQuery) { t.ProcessQuery = &v } // GetStyle returns the Style field if non-nil, zero value otherwise. func (t *TimeseriesRequest) GetStyle() TimeseriesRequestStyle { if t == nil || t.Style == nil { return TimeseriesRequestStyle{} } return *t.Style } // GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesRequest) GetStyleOk() (TimeseriesRequestStyle, bool) { if t == nil || t.Style == nil { return TimeseriesRequestStyle{}, false } return *t.Style, true } // HasStyle returns a boolean if a field has been set. func (t *TimeseriesRequest) HasStyle() bool { if t != nil && t.Style != nil { return true } return false } // SetStyle allocates a new t.Style and returns the pointer to it. func (t *TimeseriesRequest) SetStyle(v TimeseriesRequestStyle) { t.Style = &v } // GetLineType returns the LineType field if non-nil, zero value otherwise. func (t *TimeseriesRequestStyle) GetLineType() string { if t == nil || t.LineType == nil { return "" } return *t.LineType } // GetLineTypeOk returns a tuple with the LineType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesRequestStyle) GetLineTypeOk() (string, bool) { if t == nil || t.LineType == nil { return "", false } return *t.LineType, true } // HasLineType returns a boolean if a field has been set. func (t *TimeseriesRequestStyle) HasLineType() bool { if t != nil && t.LineType != nil { return true } return false } // SetLineType allocates a new t.LineType and returns the pointer to it. func (t *TimeseriesRequestStyle) SetLineType(v string) { t.LineType = &v } // GetLineWidth returns the LineWidth field if non-nil, zero value otherwise. func (t *TimeseriesRequestStyle) GetLineWidth() string { if t == nil || t.LineWidth == nil { return "" } return *t.LineWidth } // GetLineWidthOk returns a tuple with the LineWidth field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesRequestStyle) GetLineWidthOk() (string, bool) { if t == nil || t.LineWidth == nil { return "", false } return *t.LineWidth, true } // HasLineWidth returns a boolean if a field has been set. func (t *TimeseriesRequestStyle) HasLineWidth() bool { if t != nil && t.LineWidth != nil { return true } return false } // SetLineWidth allocates a new t.LineWidth and returns the pointer to it. func (t *TimeseriesRequestStyle) SetLineWidth(v string) { t.LineWidth = &v } // GetPalette returns the Palette field if non-nil, zero value otherwise. func (t *TimeseriesRequestStyle) GetPalette() string { if t == nil || t.Palette == nil { return "" } return *t.Palette } // GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TimeseriesRequestStyle) GetPaletteOk() (string, bool) { if t == nil || t.Palette == nil { return "", false } return *t.Palette, true } // HasPalette returns a boolean if a field has been set. func (t *TimeseriesRequestStyle) HasPalette() bool { if t != nil && t.Palette != nil { return true } return false } // SetPalette allocates a new t.Palette and returns the pointer to it. func (t *TimeseriesRequestStyle) SetPalette(v string) { t.Palette = &v } // GetNewStatus returns the NewStatus field if non-nil, zero value otherwise. func (t *ToggleStatus) GetNewStatus() string { if t == nil || t.NewStatus == nil { return "" } return *t.NewStatus } // GetNewStatusOk returns a tuple with the NewStatus field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToggleStatus) GetNewStatusOk() (string, bool) { if t == nil || t.NewStatus == nil { return "", false } return *t.NewStatus, true } // HasNewStatus returns a boolean if a field has been set. func (t *ToggleStatus) HasNewStatus() bool { if t != nil && t.NewStatus != nil { return true } return false } // SetNewStatus allocates a new t.NewStatus and returns the pointer to it. func (t *ToggleStatus) SetNewStatus(v string) { t.NewStatus = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (t *ToplistDefinition) GetTime() WidgetTime { if t == nil || t.Time == nil { return WidgetTime{} } return *t.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToplistDefinition) GetTimeOk() (WidgetTime, bool) { if t == nil || t.Time == nil { return WidgetTime{}, false } return *t.Time, true } // HasTime returns a boolean if a field has been set. func (t *ToplistDefinition) HasTime() bool { if t != nil && t.Time != nil { return true } return false } // SetTime allocates a new t.Time and returns the pointer to it. func (t *ToplistDefinition) SetTime(v WidgetTime) { t.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (t *ToplistDefinition) GetTitle() string { if t == nil || t.Title == nil { return "" } return *t.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToplistDefinition) GetTitleOk() (string, bool) { if t == nil || t.Title == nil { return "", false } return *t.Title, true } // HasTitle returns a boolean if a field has been set. func (t *ToplistDefinition) HasTitle() bool { if t != nil && t.Title != nil { return true } return false } // SetTitle allocates a new t.Title and returns the pointer to it. func (t *ToplistDefinition) SetTitle(v string) { t.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (t *ToplistDefinition) GetTitleAlign() string { if t == nil || t.TitleAlign == nil { return "" } return *t.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToplistDefinition) GetTitleAlignOk() (string, bool) { if t == nil || t.TitleAlign == nil { return "", false } return *t.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (t *ToplistDefinition) HasTitleAlign() bool { if t != nil && t.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new t.TitleAlign and returns the pointer to it. func (t *ToplistDefinition) SetTitleAlign(v string) { t.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (t *ToplistDefinition) GetTitleSize() string { if t == nil || t.TitleSize == nil { return "" } return *t.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToplistDefinition) GetTitleSizeOk() (string, bool) { if t == nil || t.TitleSize == nil { return "", false } return *t.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (t *ToplistDefinition) HasTitleSize() bool { if t != nil && t.TitleSize != nil { return true } return false } // SetTitleSize allocates a new t.TitleSize and returns the pointer to it. func (t *ToplistDefinition) SetTitleSize(v string) { t.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (t *ToplistDefinition) GetType() string { if t == nil || t.Type == nil { return "" } return *t.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToplistDefinition) GetTypeOk() (string, bool) { if t == nil || t.Type == nil { return "", false } return *t.Type, true } // HasType returns a boolean if a field has been set. func (t *ToplistDefinition) HasType() bool { if t != nil && t.Type != nil { return true } return false } // SetType allocates a new t.Type and returns the pointer to it. func (t *ToplistDefinition) SetType(v string) { t.Type = &v } // GetApmQuery returns the ApmQuery field if non-nil, zero value otherwise. func (t *ToplistRequest) GetApmQuery() WidgetApmOrLogQuery { if t == nil || t.ApmQuery == nil { return WidgetApmOrLogQuery{} } return *t.ApmQuery } // GetApmQueryOk returns a tuple with the ApmQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToplistRequest) GetApmQueryOk() (WidgetApmOrLogQuery, bool) { if t == nil || t.ApmQuery == nil { return WidgetApmOrLogQuery{}, false } return *t.ApmQuery, true } // HasApmQuery returns a boolean if a field has been set. func (t *ToplistRequest) HasApmQuery() bool { if t != nil && t.ApmQuery != nil { return true } return false } // SetApmQuery allocates a new t.ApmQuery and returns the pointer to it. func (t *ToplistRequest) SetApmQuery(v WidgetApmOrLogQuery) { t.ApmQuery = &v } // GetLogQuery returns the LogQuery field if non-nil, zero value otherwise. func (t *ToplistRequest) GetLogQuery() WidgetApmOrLogQuery { if t == nil || t.LogQuery == nil { return WidgetApmOrLogQuery{} } return *t.LogQuery } // GetLogQueryOk returns a tuple with the LogQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToplistRequest) GetLogQueryOk() (WidgetApmOrLogQuery, bool) { if t == nil || t.LogQuery == nil { return WidgetApmOrLogQuery{}, false } return *t.LogQuery, true } // HasLogQuery returns a boolean if a field has been set. func (t *ToplistRequest) HasLogQuery() bool { if t != nil && t.LogQuery != nil { return true } return false } // SetLogQuery allocates a new t.LogQuery and returns the pointer to it. func (t *ToplistRequest) SetLogQuery(v WidgetApmOrLogQuery) { t.LogQuery = &v } // GetMetricQuery returns the MetricQuery field if non-nil, zero value otherwise. func (t *ToplistRequest) GetMetricQuery() string { if t == nil || t.MetricQuery == nil { return "" } return *t.MetricQuery } // GetMetricQueryOk returns a tuple with the MetricQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToplistRequest) GetMetricQueryOk() (string, bool) { if t == nil || t.MetricQuery == nil { return "", false } return *t.MetricQuery, true } // HasMetricQuery returns a boolean if a field has been set. func (t *ToplistRequest) HasMetricQuery() bool { if t != nil && t.MetricQuery != nil { return true } return false } // SetMetricQuery allocates a new t.MetricQuery and returns the pointer to it. func (t *ToplistRequest) SetMetricQuery(v string) { t.MetricQuery = &v } // GetProcessQuery returns the ProcessQuery field if non-nil, zero value otherwise. func (t *ToplistRequest) GetProcessQuery() WidgetProcessQuery { if t == nil || t.ProcessQuery == nil { return WidgetProcessQuery{} } return *t.ProcessQuery } // GetProcessQueryOk returns a tuple with the ProcessQuery field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToplistRequest) GetProcessQueryOk() (WidgetProcessQuery, bool) { if t == nil || t.ProcessQuery == nil { return WidgetProcessQuery{}, false } return *t.ProcessQuery, true } // HasProcessQuery returns a boolean if a field has been set. func (t *ToplistRequest) HasProcessQuery() bool { if t != nil && t.ProcessQuery != nil { return true } return false } // SetProcessQuery allocates a new t.ProcessQuery and returns the pointer to it. func (t *ToplistRequest) SetProcessQuery(v WidgetProcessQuery) { t.ProcessQuery = &v } // GetStyle returns the Style field if non-nil, zero value otherwise. func (t *ToplistRequest) GetStyle() WidgetRequestStyle { if t == nil || t.Style == nil { return WidgetRequestStyle{} } return *t.Style } // GetStyleOk returns a tuple with the Style field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *ToplistRequest) GetStyleOk() (WidgetRequestStyle, bool) { if t == nil || t.Style == nil { return WidgetRequestStyle{}, false } return *t.Style, true } // HasStyle returns a boolean if a field has been set. func (t *ToplistRequest) HasStyle() bool { if t != nil && t.Style != nil { return true } return false } // SetStyle allocates a new t.Style and returns the pointer to it. func (t *ToplistRequest) SetStyle(v WidgetRequestStyle) { t.Style = &v } // GetDisplayFormat returns the DisplayFormat field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetDisplayFormat() string { if t == nil || t.DisplayFormat == nil { return "" } return *t.DisplayFormat } // GetDisplayFormatOk returns a tuple with the DisplayFormat field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetDisplayFormatOk() (string, bool) { if t == nil || t.DisplayFormat == nil { return "", false } return *t.DisplayFormat, true } // HasDisplayFormat returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasDisplayFormat() bool { if t != nil && t.DisplayFormat != nil { return true } return false } // SetDisplayFormat allocates a new t.DisplayFormat and returns the pointer to it. func (t *TraceServiceDefinition) SetDisplayFormat(v string) { t.DisplayFormat = &v } // GetEnv returns the Env field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetEnv() string { if t == nil || t.Env == nil { return "" } return *t.Env } // GetEnvOk returns a tuple with the Env field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetEnvOk() (string, bool) { if t == nil || t.Env == nil { return "", false } return *t.Env, true } // HasEnv returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasEnv() bool { if t != nil && t.Env != nil { return true } return false } // SetEnv allocates a new t.Env and returns the pointer to it. func (t *TraceServiceDefinition) SetEnv(v string) { t.Env = &v } // GetService returns the Service field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetService() string { if t == nil || t.Service == nil { return "" } return *t.Service } // GetServiceOk returns a tuple with the Service field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetServiceOk() (string, bool) { if t == nil || t.Service == nil { return "", false } return *t.Service, true } // HasService returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasService() bool { if t != nil && t.Service != nil { return true } return false } // SetService allocates a new t.Service and returns the pointer to it. func (t *TraceServiceDefinition) SetService(v string) { t.Service = &v } // GetShowBreakdown returns the ShowBreakdown field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetShowBreakdown() bool { if t == nil || t.ShowBreakdown == nil { return false } return *t.ShowBreakdown } // GetShowBreakdownOk returns a tuple with the ShowBreakdown field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetShowBreakdownOk() (bool, bool) { if t == nil || t.ShowBreakdown == nil { return false, false } return *t.ShowBreakdown, true } // HasShowBreakdown returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasShowBreakdown() bool { if t != nil && t.ShowBreakdown != nil { return true } return false } // SetShowBreakdown allocates a new t.ShowBreakdown and returns the pointer to it. func (t *TraceServiceDefinition) SetShowBreakdown(v bool) { t.ShowBreakdown = &v } // GetShowDistribution returns the ShowDistribution field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetShowDistribution() bool { if t == nil || t.ShowDistribution == nil { return false } return *t.ShowDistribution } // GetShowDistributionOk returns a tuple with the ShowDistribution field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetShowDistributionOk() (bool, bool) { if t == nil || t.ShowDistribution == nil { return false, false } return *t.ShowDistribution, true } // HasShowDistribution returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasShowDistribution() bool { if t != nil && t.ShowDistribution != nil { return true } return false } // SetShowDistribution allocates a new t.ShowDistribution and returns the pointer to it. func (t *TraceServiceDefinition) SetShowDistribution(v bool) { t.ShowDistribution = &v } // GetShowErrors returns the ShowErrors field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetShowErrors() bool { if t == nil || t.ShowErrors == nil { return false } return *t.ShowErrors } // GetShowErrorsOk returns a tuple with the ShowErrors field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetShowErrorsOk() (bool, bool) { if t == nil || t.ShowErrors == nil { return false, false } return *t.ShowErrors, true } // HasShowErrors returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasShowErrors() bool { if t != nil && t.ShowErrors != nil { return true } return false } // SetShowErrors allocates a new t.ShowErrors and returns the pointer to it. func (t *TraceServiceDefinition) SetShowErrors(v bool) { t.ShowErrors = &v } // GetShowHits returns the ShowHits field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetShowHits() bool { if t == nil || t.ShowHits == nil { return false } return *t.ShowHits } // GetShowHitsOk returns a tuple with the ShowHits field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetShowHitsOk() (bool, bool) { if t == nil || t.ShowHits == nil { return false, false } return *t.ShowHits, true } // HasShowHits returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasShowHits() bool { if t != nil && t.ShowHits != nil { return true } return false } // SetShowHits allocates a new t.ShowHits and returns the pointer to it. func (t *TraceServiceDefinition) SetShowHits(v bool) { t.ShowHits = &v } // GetShowLatency returns the ShowLatency field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetShowLatency() bool { if t == nil || t.ShowLatency == nil { return false } return *t.ShowLatency } // GetShowLatencyOk returns a tuple with the ShowLatency field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetShowLatencyOk() (bool, bool) { if t == nil || t.ShowLatency == nil { return false, false } return *t.ShowLatency, true } // HasShowLatency returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasShowLatency() bool { if t != nil && t.ShowLatency != nil { return true } return false } // SetShowLatency allocates a new t.ShowLatency and returns the pointer to it. func (t *TraceServiceDefinition) SetShowLatency(v bool) { t.ShowLatency = &v } // GetShowResourceList returns the ShowResourceList field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetShowResourceList() bool { if t == nil || t.ShowResourceList == nil { return false } return *t.ShowResourceList } // GetShowResourceListOk returns a tuple with the ShowResourceList field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetShowResourceListOk() (bool, bool) { if t == nil || t.ShowResourceList == nil { return false, false } return *t.ShowResourceList, true } // HasShowResourceList returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasShowResourceList() bool { if t != nil && t.ShowResourceList != nil { return true } return false } // SetShowResourceList allocates a new t.ShowResourceList and returns the pointer to it. func (t *TraceServiceDefinition) SetShowResourceList(v bool) { t.ShowResourceList = &v } // GetSizeFormat returns the SizeFormat field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetSizeFormat() string { if t == nil || t.SizeFormat == nil { return "" } return *t.SizeFormat } // GetSizeFormatOk returns a tuple with the SizeFormat field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetSizeFormatOk() (string, bool) { if t == nil || t.SizeFormat == nil { return "", false } return *t.SizeFormat, true } // HasSizeFormat returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasSizeFormat() bool { if t != nil && t.SizeFormat != nil { return true } return false } // SetSizeFormat allocates a new t.SizeFormat and returns the pointer to it. func (t *TraceServiceDefinition) SetSizeFormat(v string) { t.SizeFormat = &v } // GetSpanName returns the SpanName field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetSpanName() string { if t == nil || t.SpanName == nil { return "" } return *t.SpanName } // GetSpanNameOk returns a tuple with the SpanName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetSpanNameOk() (string, bool) { if t == nil || t.SpanName == nil { return "", false } return *t.SpanName, true } // HasSpanName returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasSpanName() bool { if t != nil && t.SpanName != nil { return true } return false } // SetSpanName allocates a new t.SpanName and returns the pointer to it. func (t *TraceServiceDefinition) SetSpanName(v string) { t.SpanName = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetTime() WidgetTime { if t == nil || t.Time == nil { return WidgetTime{} } return *t.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetTimeOk() (WidgetTime, bool) { if t == nil || t.Time == nil { return WidgetTime{}, false } return *t.Time, true } // HasTime returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasTime() bool { if t != nil && t.Time != nil { return true } return false } // SetTime allocates a new t.Time and returns the pointer to it. func (t *TraceServiceDefinition) SetTime(v WidgetTime) { t.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetTitle() string { if t == nil || t.Title == nil { return "" } return *t.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetTitleOk() (string, bool) { if t == nil || t.Title == nil { return "", false } return *t.Title, true } // HasTitle returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasTitle() bool { if t != nil && t.Title != nil { return true } return false } // SetTitle allocates a new t.Title and returns the pointer to it. func (t *TraceServiceDefinition) SetTitle(v string) { t.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetTitleAlign() string { if t == nil || t.TitleAlign == nil { return "" } return *t.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetTitleAlignOk() (string, bool) { if t == nil || t.TitleAlign == nil { return "", false } return *t.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasTitleAlign() bool { if t != nil && t.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new t.TitleAlign and returns the pointer to it. func (t *TraceServiceDefinition) SetTitleAlign(v string) { t.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetTitleSize() string { if t == nil || t.TitleSize == nil { return "" } return *t.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetTitleSizeOk() (string, bool) { if t == nil || t.TitleSize == nil { return "", false } return *t.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasTitleSize() bool { if t != nil && t.TitleSize != nil { return true } return false } // SetTitleSize allocates a new t.TitleSize and returns the pointer to it. func (t *TraceServiceDefinition) SetTitleSize(v string) { t.TitleSize = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (t *TraceServiceDefinition) GetType() string { if t == nil || t.Type == nil { return "" } return *t.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TraceServiceDefinition) GetTypeOk() (string, bool) { if t == nil || t.Type == nil { return "", false } return *t.Type, true } // HasType returns a boolean if a field has been set. func (t *TraceServiceDefinition) HasType() bool { if t != nil && t.Type != nil { return true } return false } // SetType allocates a new t.Type and returns the pointer to it. func (t *TraceServiceDefinition) SetType(v string) { t.Type = &v } // GetFromTs returns the FromTs field if non-nil, zero value otherwise. func (t *TriggeringValue) GetFromTs() int { if t == nil || t.FromTs == nil { return 0 } return *t.FromTs } // GetFromTsOk returns a tuple with the FromTs field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TriggeringValue) GetFromTsOk() (int, bool) { if t == nil || t.FromTs == nil { return 0, false } return *t.FromTs, true } // HasFromTs returns a boolean if a field has been set. func (t *TriggeringValue) HasFromTs() bool { if t != nil && t.FromTs != nil { return true } return false } // SetFromTs allocates a new t.FromTs and returns the pointer to it. func (t *TriggeringValue) SetFromTs(v int) { t.FromTs = &v } // GetToTs returns the ToTs field if non-nil, zero value otherwise. func (t *TriggeringValue) GetToTs() int { if t == nil || t.ToTs == nil { return 0 } return *t.ToTs } // GetToTsOk returns a tuple with the ToTs field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TriggeringValue) GetToTsOk() (int, bool) { if t == nil || t.ToTs == nil { return 0, false } return *t.ToTs, true } // HasToTs returns a boolean if a field has been set. func (t *TriggeringValue) HasToTs() bool { if t != nil && t.ToTs != nil { return true } return false } // SetToTs allocates a new t.ToTs and returns the pointer to it. func (t *TriggeringValue) SetToTs(v int) { t.ToTs = &v } // GetValue returns the Value field if non-nil, zero value otherwise. func (t *TriggeringValue) GetValue() int { if t == nil || t.Value == nil { return 0 } return *t.Value } // GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (t *TriggeringValue) GetValueOk() (int, bool) { if t == nil || t.Value == nil { return 0, false } return *t.Value, true } // HasValue returns a boolean if a field has been set. func (t *TriggeringValue) HasValue() bool { if t != nil && t.Value != nil { return true } return false } // SetValue allocates a new t.Value and returns the pointer to it. func (t *TriggeringValue) SetValue(v int) { t.Value = &v } // GetAllScopes returns the AllScopes field if non-nil, zero value otherwise. func (u *UnmuteMonitorScopes) GetAllScopes() bool { if u == nil || u.AllScopes == nil { return false } return *u.AllScopes } // GetAllScopesOk returns a tuple with the AllScopes field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (u *UnmuteMonitorScopes) GetAllScopesOk() (bool, bool) { if u == nil || u.AllScopes == nil { return false, false } return *u.AllScopes, true } // HasAllScopes returns a boolean if a field has been set. func (u *UnmuteMonitorScopes) HasAllScopes() bool { if u != nil && u.AllScopes != nil { return true } return false } // SetAllScopes allocates a new u.AllScopes and returns the pointer to it. func (u *UnmuteMonitorScopes) SetAllScopes(v bool) { u.AllScopes = &v } // GetScope returns the Scope field if non-nil, zero value otherwise. func (u *UnmuteMonitorScopes) GetScope() string { if u == nil || u.Scope == nil { return "" } return *u.Scope } // GetScopeOk returns a tuple with the Scope field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (u *UnmuteMonitorScopes) GetScopeOk() (string, bool) { if u == nil || u.Scope == nil { return "", false } return *u.Scope, true } // HasScope returns a boolean if a field has been set. func (u *UnmuteMonitorScopes) HasScope() bool { if u != nil && u.Scope != nil { return true } return false } // SetScope allocates a new u.Scope and returns the pointer to it. func (u *UnmuteMonitorScopes) SetScope(v string) { u.Scope = &v } // GetAccessRole returns the AccessRole field if non-nil, zero value otherwise. func (u *User) GetAccessRole() string { if u == nil || u.AccessRole == nil { return "" } return *u.AccessRole } // GetAccessRoleOk returns a tuple with the AccessRole field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (u *User) GetAccessRoleOk() (string, bool) { if u == nil || u.AccessRole == nil { return "", false } return *u.AccessRole, true } // HasAccessRole returns a boolean if a field has been set. func (u *User) HasAccessRole() bool { if u != nil && u.AccessRole != nil { return true } return false } // SetAccessRole allocates a new u.AccessRole and returns the pointer to it. func (u *User) SetAccessRole(v string) { u.AccessRole = &v } // GetDisabled returns the Disabled field if non-nil, zero value otherwise. func (u *User) GetDisabled() bool { if u == nil || u.Disabled == nil { return false } return *u.Disabled } // GetDisabledOk returns a tuple with the Disabled field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (u *User) GetDisabledOk() (bool, bool) { if u == nil || u.Disabled == nil { return false, false } return *u.Disabled, true } // HasDisabled returns a boolean if a field has been set. func (u *User) HasDisabled() bool { if u != nil && u.Disabled != nil { return true } return false } // SetDisabled allocates a new u.Disabled and returns the pointer to it. func (u *User) SetDisabled(v bool) { u.Disabled = &v } // GetEmail returns the Email field if non-nil, zero value otherwise. func (u *User) GetEmail() string { if u == nil || u.Email == nil { return "" } return *u.Email } // GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (u *User) GetEmailOk() (string, bool) { if u == nil || u.Email == nil { return "", false } return *u.Email, true } // HasEmail returns a boolean if a field has been set. func (u *User) HasEmail() bool { if u != nil && u.Email != nil { return true } return false } // SetEmail allocates a new u.Email and returns the pointer to it. func (u *User) SetEmail(v string) { u.Email = &v } // GetHandle returns the Handle field if non-nil, zero value otherwise. func (u *User) GetHandle() string { if u == nil || u.Handle == nil { return "" } return *u.Handle } // GetHandleOk returns a tuple with the Handle field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (u *User) GetHandleOk() (string, bool) { if u == nil || u.Handle == nil { return "", false } return *u.Handle, true } // HasHandle returns a boolean if a field has been set. func (u *User) HasHandle() bool { if u != nil && u.Handle != nil { return true } return false } // SetHandle allocates a new u.Handle and returns the pointer to it. func (u *User) SetHandle(v string) { u.Handle = &v } // GetIsAdmin returns the IsAdmin field if non-nil, zero value otherwise. func (u *User) GetIsAdmin() bool { if u == nil || u.IsAdmin == nil { return false } return *u.IsAdmin } // GetIsAdminOk returns a tuple with the IsAdmin field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (u *User) GetIsAdminOk() (bool, bool) { if u == nil || u.IsAdmin == nil { return false, false } return *u.IsAdmin, true } // HasIsAdmin returns a boolean if a field has been set. func (u *User) HasIsAdmin() bool { if u != nil && u.IsAdmin != nil { return true } return false } // SetIsAdmin allocates a new u.IsAdmin and returns the pointer to it. func (u *User) SetIsAdmin(v bool) { u.IsAdmin = &v } // GetName returns the Name field if non-nil, zero value otherwise. func (u *User) GetName() string { if u == nil || u.Name == nil { return "" } return *u.Name } // GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (u *User) GetNameOk() (string, bool) { if u == nil || u.Name == nil { return "", false } return *u.Name, true } // HasName returns a boolean if a field has been set. func (u *User) HasName() bool { if u != nil && u.Name != nil { return true } return false } // SetName allocates a new u.Name and returns the pointer to it. func (u *User) SetName(v string) { u.Name = &v } // GetRole returns the Role field if non-nil, zero value otherwise. func (u *User) GetRole() string { if u == nil || u.Role == nil { return "" } return *u.Role } // GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (u *User) GetRoleOk() (string, bool) { if u == nil || u.Role == nil { return "", false } return *u.Role, true } // HasRole returns a boolean if a field has been set. func (u *User) HasRole() bool { if u != nil && u.Role != nil { return true } return false } // SetRole allocates a new u.Role and returns the pointer to it. func (u *User) SetRole(v string) { u.Role = &v } // GetVerified returns the Verified field if non-nil, zero value otherwise. func (u *User) GetVerified() bool { if u == nil || u.Verified == nil { return false } return *u.Verified } // GetVerifiedOk returns a tuple with the Verified field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (u *User) GetVerifiedOk() (bool, bool) { if u == nil || u.Verified == nil { return false, false } return *u.Verified, true } // HasVerified returns a boolean if a field has been set. func (u *User) HasVerified() bool { if u != nil && u.Verified != nil { return true } return false } // SetVerified allocates a new u.Verified and returns the pointer to it. func (u *User) SetVerified(v bool) { u.Verified = &v } // GetAlertID returns the AlertID field if non-nil, zero value otherwise. func (w *Widget) GetAlertID() int { if w == nil || w.AlertID == nil { return 0 } return *w.AlertID } // GetAlertIDOk returns a tuple with the AlertID field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetAlertIDOk() (int, bool) { if w == nil || w.AlertID == nil { return 0, false } return *w.AlertID, true } // HasAlertID returns a boolean if a field has been set. func (w *Widget) HasAlertID() bool { if w != nil && w.AlertID != nil { return true } return false } // SetAlertID allocates a new w.AlertID and returns the pointer to it. func (w *Widget) SetAlertID(v int) { w.AlertID = &v } // GetAutoRefresh returns the AutoRefresh field if non-nil, zero value otherwise. func (w *Widget) GetAutoRefresh() bool { if w == nil || w.AutoRefresh == nil { return false } return *w.AutoRefresh } // GetAutoRefreshOk returns a tuple with the AutoRefresh field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetAutoRefreshOk() (bool, bool) { if w == nil || w.AutoRefresh == nil { return false, false } return *w.AutoRefresh, true } // HasAutoRefresh returns a boolean if a field has been set. func (w *Widget) HasAutoRefresh() bool { if w != nil && w.AutoRefresh != nil { return true } return false } // SetAutoRefresh allocates a new w.AutoRefresh and returns the pointer to it. func (w *Widget) SetAutoRefresh(v bool) { w.AutoRefresh = &v } // GetBgcolor returns the Bgcolor field if non-nil, zero value otherwise. func (w *Widget) GetBgcolor() string { if w == nil || w.Bgcolor == nil { return "" } return *w.Bgcolor } // GetBgcolorOk returns a tuple with the Bgcolor field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetBgcolorOk() (string, bool) { if w == nil || w.Bgcolor == nil { return "", false } return *w.Bgcolor, true } // HasBgcolor returns a boolean if a field has been set. func (w *Widget) HasBgcolor() bool { if w != nil && w.Bgcolor != nil { return true } return false } // SetBgcolor allocates a new w.Bgcolor and returns the pointer to it. func (w *Widget) SetBgcolor(v string) { w.Bgcolor = &v } // GetCheck returns the Check field if non-nil, zero value otherwise. func (w *Widget) GetCheck() string { if w == nil || w.Check == nil { return "" } return *w.Check } // GetCheckOk returns a tuple with the Check field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetCheckOk() (string, bool) { if w == nil || w.Check == nil { return "", false } return *w.Check, true } // HasCheck returns a boolean if a field has been set. func (w *Widget) HasCheck() bool { if w != nil && w.Check != nil { return true } return false } // SetCheck allocates a new w.Check and returns the pointer to it. func (w *Widget) SetCheck(v string) { w.Check = &v } // GetColor returns the Color field if non-nil, zero value otherwise. func (w *Widget) GetColor() string { if w == nil || w.Color == nil { return "" } return *w.Color } // GetColorOk returns a tuple with the Color field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetColorOk() (string, bool) { if w == nil || w.Color == nil { return "", false } return *w.Color, true } // HasColor returns a boolean if a field has been set. func (w *Widget) HasColor() bool { if w != nil && w.Color != nil { return true } return false } // SetColor allocates a new w.Color and returns the pointer to it. func (w *Widget) SetColor(v string) { w.Color = &v } // GetColorPreference returns the ColorPreference field if non-nil, zero value otherwise. func (w *Widget) GetColorPreference() string { if w == nil || w.ColorPreference == nil { return "" } return *w.ColorPreference } // GetColorPreferenceOk returns a tuple with the ColorPreference field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetColorPreferenceOk() (string, bool) { if w == nil || w.ColorPreference == nil { return "", false } return *w.ColorPreference, true } // HasColorPreference returns a boolean if a field has been set. func (w *Widget) HasColorPreference() bool { if w != nil && w.ColorPreference != nil { return true } return false } // SetColorPreference allocates a new w.ColorPreference and returns the pointer to it. func (w *Widget) SetColorPreference(v string) { w.ColorPreference = &v } // GetColumns returns the Columns field if non-nil, zero value otherwise. func (w *Widget) GetColumns() string { if w == nil || w.Columns == nil { return "" } return *w.Columns } // GetColumnsOk returns a tuple with the Columns field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetColumnsOk() (string, bool) { if w == nil || w.Columns == nil { return "", false } return *w.Columns, true } // HasColumns returns a boolean if a field has been set. func (w *Widget) HasColumns() bool { if w != nil && w.Columns != nil { return true } return false } // SetColumns allocates a new w.Columns and returns the pointer to it. func (w *Widget) SetColumns(v string) { w.Columns = &v } // GetDisplayFormat returns the DisplayFormat field if non-nil, zero value otherwise. func (w *Widget) GetDisplayFormat() string { if w == nil || w.DisplayFormat == nil { return "" } return *w.DisplayFormat } // GetDisplayFormatOk returns a tuple with the DisplayFormat field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetDisplayFormatOk() (string, bool) { if w == nil || w.DisplayFormat == nil { return "", false } return *w.DisplayFormat, true } // HasDisplayFormat returns a boolean if a field has been set. func (w *Widget) HasDisplayFormat() bool { if w != nil && w.DisplayFormat != nil { return true } return false } // SetDisplayFormat allocates a new w.DisplayFormat and returns the pointer to it. func (w *Widget) SetDisplayFormat(v string) { w.DisplayFormat = &v } // GetEnv returns the Env field if non-nil, zero value otherwise. func (w *Widget) GetEnv() string { if w == nil || w.Env == nil { return "" } return *w.Env } // GetEnvOk returns a tuple with the Env field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetEnvOk() (string, bool) { if w == nil || w.Env == nil { return "", false } return *w.Env, true } // HasEnv returns a boolean if a field has been set. func (w *Widget) HasEnv() bool { if w != nil && w.Env != nil { return true } return false } // SetEnv allocates a new w.Env and returns the pointer to it. func (w *Widget) SetEnv(v string) { w.Env = &v } // GetEventSize returns the EventSize field if non-nil, zero value otherwise. func (w *Widget) GetEventSize() string { if w == nil || w.EventSize == nil { return "" } return *w.EventSize } // GetEventSizeOk returns a tuple with the EventSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetEventSizeOk() (string, bool) { if w == nil || w.EventSize == nil { return "", false } return *w.EventSize, true } // HasEventSize returns a boolean if a field has been set. func (w *Widget) HasEventSize() bool { if w != nil && w.EventSize != nil { return true } return false } // SetEventSize allocates a new w.EventSize and returns the pointer to it. func (w *Widget) SetEventSize(v string) { w.EventSize = &v } // GetFontSize returns the FontSize field if non-nil, zero value otherwise. func (w *Widget) GetFontSize() string { if w == nil || w.FontSize == nil { return "" } return *w.FontSize } // GetFontSizeOk returns a tuple with the FontSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetFontSizeOk() (string, bool) { if w == nil || w.FontSize == nil { return "", false } return *w.FontSize, true } // HasFontSize returns a boolean if a field has been set. func (w *Widget) HasFontSize() bool { if w != nil && w.FontSize != nil { return true } return false } // SetFontSize allocates a new w.FontSize and returns the pointer to it. func (w *Widget) SetFontSize(v string) { w.FontSize = &v } // GetGroup returns the Group field if non-nil, zero value otherwise. func (w *Widget) GetGroup() string { if w == nil || w.Group == nil { return "" } return *w.Group } // GetGroupOk returns a tuple with the Group field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetGroupOk() (string, bool) { if w == nil || w.Group == nil { return "", false } return *w.Group, true } // HasGroup returns a boolean if a field has been set. func (w *Widget) HasGroup() bool { if w != nil && w.Group != nil { return true } return false } // SetGroup allocates a new w.Group and returns the pointer to it. func (w *Widget) SetGroup(v string) { w.Group = &v } // GetGrouping returns the Grouping field if non-nil, zero value otherwise. func (w *Widget) GetGrouping() string { if w == nil || w.Grouping == nil { return "" } return *w.Grouping } // GetGroupingOk returns a tuple with the Grouping field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetGroupingOk() (string, bool) { if w == nil || w.Grouping == nil { return "", false } return *w.Grouping, true } // HasGrouping returns a boolean if a field has been set. func (w *Widget) HasGrouping() bool { if w != nil && w.Grouping != nil { return true } return false } // SetGrouping allocates a new w.Grouping and returns the pointer to it. func (w *Widget) SetGrouping(v string) { w.Grouping = &v } // GetHeight returns the Height field if non-nil, zero value otherwise. func (w *Widget) GetHeight() int { if w == nil || w.Height == nil { return 0 } return *w.Height } // GetHeightOk returns a tuple with the Height field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetHeightOk() (int, bool) { if w == nil || w.Height == nil { return 0, false } return *w.Height, true } // HasHeight returns a boolean if a field has been set. func (w *Widget) HasHeight() bool { if w != nil && w.Height != nil { return true } return false } // SetHeight allocates a new w.Height and returns the pointer to it. func (w *Widget) SetHeight(v int) { w.Height = &v } // GetHideZeroCounts returns the HideZeroCounts field if non-nil, zero value otherwise. func (w *Widget) GetHideZeroCounts() bool { if w == nil || w.HideZeroCounts == nil { return false } return *w.HideZeroCounts } // GetHideZeroCountsOk returns a tuple with the HideZeroCounts field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetHideZeroCountsOk() (bool, bool) { if w == nil || w.HideZeroCounts == nil { return false, false } return *w.HideZeroCounts, true } // HasHideZeroCounts returns a boolean if a field has been set. func (w *Widget) HasHideZeroCounts() bool { if w != nil && w.HideZeroCounts != nil { return true } return false } // SetHideZeroCounts allocates a new w.HideZeroCounts and returns the pointer to it. func (w *Widget) SetHideZeroCounts(v bool) { w.HideZeroCounts = &v } // GetHTML returns the HTML field if non-nil, zero value otherwise. func (w *Widget) GetHTML() string { if w == nil || w.HTML == nil { return "" } return *w.HTML } // GetHTMLOk returns a tuple with the HTML field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetHTMLOk() (string, bool) { if w == nil || w.HTML == nil { return "", false } return *w.HTML, true } // HasHTML returns a boolean if a field has been set. func (w *Widget) HasHTML() bool { if w != nil && w.HTML != nil { return true } return false } // SetHTML allocates a new w.HTML and returns the pointer to it. func (w *Widget) SetHTML(v string) { w.HTML = &v } // GetLayoutVersion returns the LayoutVersion field if non-nil, zero value otherwise. func (w *Widget) GetLayoutVersion() string { if w == nil || w.LayoutVersion == nil { return "" } return *w.LayoutVersion } // GetLayoutVersionOk returns a tuple with the LayoutVersion field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetLayoutVersionOk() (string, bool) { if w == nil || w.LayoutVersion == nil { return "", false } return *w.LayoutVersion, true } // HasLayoutVersion returns a boolean if a field has been set. func (w *Widget) HasLayoutVersion() bool { if w != nil && w.LayoutVersion != nil { return true } return false } // SetLayoutVersion allocates a new w.LayoutVersion and returns the pointer to it. func (w *Widget) SetLayoutVersion(v string) { w.LayoutVersion = &v } // GetLegend returns the Legend field if non-nil, zero value otherwise. func (w *Widget) GetLegend() bool { if w == nil || w.Legend == nil { return false } return *w.Legend } // GetLegendOk returns a tuple with the Legend field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetLegendOk() (bool, bool) { if w == nil || w.Legend == nil { return false, false } return *w.Legend, true } // HasLegend returns a boolean if a field has been set. func (w *Widget) HasLegend() bool { if w != nil && w.Legend != nil { return true } return false } // SetLegend allocates a new w.Legend and returns the pointer to it. func (w *Widget) SetLegend(v bool) { w.Legend = &v } // GetLegendSize returns the LegendSize field if non-nil, zero value otherwise. func (w *Widget) GetLegendSize() string { if w == nil || w.LegendSize == nil { return "" } return *w.LegendSize } // GetLegendSizeOk returns a tuple with the LegendSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetLegendSizeOk() (string, bool) { if w == nil || w.LegendSize == nil { return "", false } return *w.LegendSize, true } // HasLegendSize returns a boolean if a field has been set. func (w *Widget) HasLegendSize() bool { if w != nil && w.LegendSize != nil { return true } return false } // SetLegendSize allocates a new w.LegendSize and returns the pointer to it. func (w *Widget) SetLegendSize(v string) { w.LegendSize = &v } // GetLogset returns the Logset field if non-nil, zero value otherwise. func (w *Widget) GetLogset() string { if w == nil || w.Logset == nil { return "" } return *w.Logset } // GetLogsetOk returns a tuple with the Logset field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetLogsetOk() (string, bool) { if w == nil || w.Logset == nil { return "", false } return *w.Logset, true } // HasLogset returns a boolean if a field has been set. func (w *Widget) HasLogset() bool { if w != nil && w.Logset != nil { return true } return false } // SetLogset allocates a new w.Logset and returns the pointer to it. func (w *Widget) SetLogset(v string) { w.Logset = &v } // GetManageStatusShowTitle returns the ManageStatusShowTitle field if non-nil, zero value otherwise. func (w *Widget) GetManageStatusShowTitle() bool { if w == nil || w.ManageStatusShowTitle == nil { return false } return *w.ManageStatusShowTitle } // GetManageStatusShowTitleOk returns a tuple with the ManageStatusShowTitle field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetManageStatusShowTitleOk() (bool, bool) { if w == nil || w.ManageStatusShowTitle == nil { return false, false } return *w.ManageStatusShowTitle, true } // HasManageStatusShowTitle returns a boolean if a field has been set. func (w *Widget) HasManageStatusShowTitle() bool { if w != nil && w.ManageStatusShowTitle != nil { return true } return false } // SetManageStatusShowTitle allocates a new w.ManageStatusShowTitle and returns the pointer to it. func (w *Widget) SetManageStatusShowTitle(v bool) { w.ManageStatusShowTitle = &v } // GetManageStatusTitleAlign returns the ManageStatusTitleAlign field if non-nil, zero value otherwise. func (w *Widget) GetManageStatusTitleAlign() string { if w == nil || w.ManageStatusTitleAlign == nil { return "" } return *w.ManageStatusTitleAlign } // GetManageStatusTitleAlignOk returns a tuple with the ManageStatusTitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetManageStatusTitleAlignOk() (string, bool) { if w == nil || w.ManageStatusTitleAlign == nil { return "", false } return *w.ManageStatusTitleAlign, true } // HasManageStatusTitleAlign returns a boolean if a field has been set. func (w *Widget) HasManageStatusTitleAlign() bool { if w != nil && w.ManageStatusTitleAlign != nil { return true } return false } // SetManageStatusTitleAlign allocates a new w.ManageStatusTitleAlign and returns the pointer to it. func (w *Widget) SetManageStatusTitleAlign(v string) { w.ManageStatusTitleAlign = &v } // GetManageStatusTitleSize returns the ManageStatusTitleSize field if non-nil, zero value otherwise. func (w *Widget) GetManageStatusTitleSize() string { if w == nil || w.ManageStatusTitleSize == nil { return "" } return *w.ManageStatusTitleSize } // GetManageStatusTitleSizeOk returns a tuple with the ManageStatusTitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetManageStatusTitleSizeOk() (string, bool) { if w == nil || w.ManageStatusTitleSize == nil { return "", false } return *w.ManageStatusTitleSize, true } // HasManageStatusTitleSize returns a boolean if a field has been set. func (w *Widget) HasManageStatusTitleSize() bool { if w != nil && w.ManageStatusTitleSize != nil { return true } return false } // SetManageStatusTitleSize allocates a new w.ManageStatusTitleSize and returns the pointer to it. func (w *Widget) SetManageStatusTitleSize(v string) { w.ManageStatusTitleSize = &v } // GetManageStatusTitleText returns the ManageStatusTitleText field if non-nil, zero value otherwise. func (w *Widget) GetManageStatusTitleText() string { if w == nil || w.ManageStatusTitleText == nil { return "" } return *w.ManageStatusTitleText } // GetManageStatusTitleTextOk returns a tuple with the ManageStatusTitleText field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetManageStatusTitleTextOk() (string, bool) { if w == nil || w.ManageStatusTitleText == nil { return "", false } return *w.ManageStatusTitleText, true } // HasManageStatusTitleText returns a boolean if a field has been set. func (w *Widget) HasManageStatusTitleText() bool { if w != nil && w.ManageStatusTitleText != nil { return true } return false } // SetManageStatusTitleText allocates a new w.ManageStatusTitleText and returns the pointer to it. func (w *Widget) SetManageStatusTitleText(v string) { w.ManageStatusTitleText = &v } // GetMargin returns the Margin field if non-nil, zero value otherwise. func (w *Widget) GetMargin() string { if w == nil || w.Margin == nil { return "" } return *w.Margin } // GetMarginOk returns a tuple with the Margin field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetMarginOk() (string, bool) { if w == nil || w.Margin == nil { return "", false } return *w.Margin, true } // HasMargin returns a boolean if a field has been set. func (w *Widget) HasMargin() bool { if w != nil && w.Margin != nil { return true } return false } // SetMargin allocates a new w.Margin and returns the pointer to it. func (w *Widget) SetMargin(v string) { w.Margin = &v } // GetMonitor returns the Monitor field if non-nil, zero value otherwise. func (w *Widget) GetMonitor() ScreenboardMonitor { if w == nil || w.Monitor == nil { return ScreenboardMonitor{} } return *w.Monitor } // GetMonitorOk returns a tuple with the Monitor field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetMonitorOk() (ScreenboardMonitor, bool) { if w == nil || w.Monitor == nil { return ScreenboardMonitor{}, false } return *w.Monitor, true } // HasMonitor returns a boolean if a field has been set. func (w *Widget) HasMonitor() bool { if w != nil && w.Monitor != nil { return true } return false } // SetMonitor allocates a new w.Monitor and returns the pointer to it. func (w *Widget) SetMonitor(v ScreenboardMonitor) { w.Monitor = &v } // GetMustShowBreakdown returns the MustShowBreakdown field if non-nil, zero value otherwise. func (w *Widget) GetMustShowBreakdown() bool { if w == nil || w.MustShowBreakdown == nil { return false } return *w.MustShowBreakdown } // GetMustShowBreakdownOk returns a tuple with the MustShowBreakdown field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetMustShowBreakdownOk() (bool, bool) { if w == nil || w.MustShowBreakdown == nil { return false, false } return *w.MustShowBreakdown, true } // HasMustShowBreakdown returns a boolean if a field has been set. func (w *Widget) HasMustShowBreakdown() bool { if w != nil && w.MustShowBreakdown != nil { return true } return false } // SetMustShowBreakdown allocates a new w.MustShowBreakdown and returns the pointer to it. func (w *Widget) SetMustShowBreakdown(v bool) { w.MustShowBreakdown = &v } // GetMustShowDistribution returns the MustShowDistribution field if non-nil, zero value otherwise. func (w *Widget) GetMustShowDistribution() bool { if w == nil || w.MustShowDistribution == nil { return false } return *w.MustShowDistribution } // GetMustShowDistributionOk returns a tuple with the MustShowDistribution field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetMustShowDistributionOk() (bool, bool) { if w == nil || w.MustShowDistribution == nil { return false, false } return *w.MustShowDistribution, true } // HasMustShowDistribution returns a boolean if a field has been set. func (w *Widget) HasMustShowDistribution() bool { if w != nil && w.MustShowDistribution != nil { return true } return false } // SetMustShowDistribution allocates a new w.MustShowDistribution and returns the pointer to it. func (w *Widget) SetMustShowDistribution(v bool) { w.MustShowDistribution = &v } // GetMustShowErrors returns the MustShowErrors field if non-nil, zero value otherwise. func (w *Widget) GetMustShowErrors() bool { if w == nil || w.MustShowErrors == nil { return false } return *w.MustShowErrors } // GetMustShowErrorsOk returns a tuple with the MustShowErrors field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetMustShowErrorsOk() (bool, bool) { if w == nil || w.MustShowErrors == nil { return false, false } return *w.MustShowErrors, true } // HasMustShowErrors returns a boolean if a field has been set. func (w *Widget) HasMustShowErrors() bool { if w != nil && w.MustShowErrors != nil { return true } return false } // SetMustShowErrors allocates a new w.MustShowErrors and returns the pointer to it. func (w *Widget) SetMustShowErrors(v bool) { w.MustShowErrors = &v } // GetMustShowHits returns the MustShowHits field if non-nil, zero value otherwise. func (w *Widget) GetMustShowHits() bool { if w == nil || w.MustShowHits == nil { return false } return *w.MustShowHits } // GetMustShowHitsOk returns a tuple with the MustShowHits field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetMustShowHitsOk() (bool, bool) { if w == nil || w.MustShowHits == nil { return false, false } return *w.MustShowHits, true } // HasMustShowHits returns a boolean if a field has been set. func (w *Widget) HasMustShowHits() bool { if w != nil && w.MustShowHits != nil { return true } return false } // SetMustShowHits allocates a new w.MustShowHits and returns the pointer to it. func (w *Widget) SetMustShowHits(v bool) { w.MustShowHits = &v } // GetMustShowLatency returns the MustShowLatency field if non-nil, zero value otherwise. func (w *Widget) GetMustShowLatency() bool { if w == nil || w.MustShowLatency == nil { return false } return *w.MustShowLatency } // GetMustShowLatencyOk returns a tuple with the MustShowLatency field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetMustShowLatencyOk() (bool, bool) { if w == nil || w.MustShowLatency == nil { return false, false } return *w.MustShowLatency, true } // HasMustShowLatency returns a boolean if a field has been set. func (w *Widget) HasMustShowLatency() bool { if w != nil && w.MustShowLatency != nil { return true } return false } // SetMustShowLatency allocates a new w.MustShowLatency and returns the pointer to it. func (w *Widget) SetMustShowLatency(v bool) { w.MustShowLatency = &v } // GetMustShowResourceList returns the MustShowResourceList field if non-nil, zero value otherwise. func (w *Widget) GetMustShowResourceList() bool { if w == nil || w.MustShowResourceList == nil { return false } return *w.MustShowResourceList } // GetMustShowResourceListOk returns a tuple with the MustShowResourceList field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetMustShowResourceListOk() (bool, bool) { if w == nil || w.MustShowResourceList == nil { return false, false } return *w.MustShowResourceList, true } // HasMustShowResourceList returns a boolean if a field has been set. func (w *Widget) HasMustShowResourceList() bool { if w != nil && w.MustShowResourceList != nil { return true } return false } // SetMustShowResourceList allocates a new w.MustShowResourceList and returns the pointer to it. func (w *Widget) SetMustShowResourceList(v bool) { w.MustShowResourceList = &v } // GetParams returns the Params field if non-nil, zero value otherwise. func (w *Widget) GetParams() Params { if w == nil || w.Params == nil { return Params{} } return *w.Params } // GetParamsOk returns a tuple with the Params field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetParamsOk() (Params, bool) { if w == nil || w.Params == nil { return Params{}, false } return *w.Params, true } // HasParams returns a boolean if a field has been set. func (w *Widget) HasParams() bool { if w != nil && w.Params != nil { return true } return false } // SetParams allocates a new w.Params and returns the pointer to it. func (w *Widget) SetParams(v Params) { w.Params = &v } // GetPrecision returns the Precision field if non-nil, zero value otherwise. func (w *Widget) GetPrecision() PrecisionT { if w == nil || w.Precision == nil { return "" } return *w.Precision } // GetPrecisionOk returns a tuple with the Precision field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetPrecisionOk() (PrecisionT, bool) { if w == nil || w.Precision == nil { return "", false } return *w.Precision, true } // HasPrecision returns a boolean if a field has been set. func (w *Widget) HasPrecision() bool { if w != nil && w.Precision != nil { return true } return false } // SetPrecision allocates a new w.Precision and returns the pointer to it. func (w *Widget) SetPrecision(v PrecisionT) { w.Precision = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (w *Widget) GetQuery() string { if w == nil || w.Query == nil { return "" } return *w.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetQueryOk() (string, bool) { if w == nil || w.Query == nil { return "", false } return *w.Query, true } // HasQuery returns a boolean if a field has been set. func (w *Widget) HasQuery() bool { if w != nil && w.Query != nil { return true } return false } // SetQuery allocates a new w.Query and returns the pointer to it. func (w *Widget) SetQuery(v string) { w.Query = &v } // GetServiceName returns the ServiceName field if non-nil, zero value otherwise. func (w *Widget) GetServiceName() string { if w == nil || w.ServiceName == nil { return "" } return *w.ServiceName } // GetServiceNameOk returns a tuple with the ServiceName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetServiceNameOk() (string, bool) { if w == nil || w.ServiceName == nil { return "", false } return *w.ServiceName, true } // HasServiceName returns a boolean if a field has been set. func (w *Widget) HasServiceName() bool { if w != nil && w.ServiceName != nil { return true } return false } // SetServiceName allocates a new w.ServiceName and returns the pointer to it. func (w *Widget) SetServiceName(v string) { w.ServiceName = &v } // GetServiceService returns the ServiceService field if non-nil, zero value otherwise. func (w *Widget) GetServiceService() string { if w == nil || w.ServiceService == nil { return "" } return *w.ServiceService } // GetServiceServiceOk returns a tuple with the ServiceService field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetServiceServiceOk() (string, bool) { if w == nil || w.ServiceService == nil { return "", false } return *w.ServiceService, true } // HasServiceService returns a boolean if a field has been set. func (w *Widget) HasServiceService() bool { if w != nil && w.ServiceService != nil { return true } return false } // SetServiceService allocates a new w.ServiceService and returns the pointer to it. func (w *Widget) SetServiceService(v string) { w.ServiceService = &v } // GetSizeVersion returns the SizeVersion field if non-nil, zero value otherwise. func (w *Widget) GetSizeVersion() string { if w == nil || w.SizeVersion == nil { return "" } return *w.SizeVersion } // GetSizeVersionOk returns a tuple with the SizeVersion field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetSizeVersionOk() (string, bool) { if w == nil || w.SizeVersion == nil { return "", false } return *w.SizeVersion, true } // HasSizeVersion returns a boolean if a field has been set. func (w *Widget) HasSizeVersion() bool { if w != nil && w.SizeVersion != nil { return true } return false } // SetSizeVersion allocates a new w.SizeVersion and returns the pointer to it. func (w *Widget) SetSizeVersion(v string) { w.SizeVersion = &v } // GetSizing returns the Sizing field if non-nil, zero value otherwise. func (w *Widget) GetSizing() string { if w == nil || w.Sizing == nil { return "" } return *w.Sizing } // GetSizingOk returns a tuple with the Sizing field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetSizingOk() (string, bool) { if w == nil || w.Sizing == nil { return "", false } return *w.Sizing, true } // HasSizing returns a boolean if a field has been set. func (w *Widget) HasSizing() bool { if w != nil && w.Sizing != nil { return true } return false } // SetSizing allocates a new w.Sizing and returns the pointer to it. func (w *Widget) SetSizing(v string) { w.Sizing = &v } // GetText returns the Text field if non-nil, zero value otherwise. func (w *Widget) GetText() string { if w == nil || w.Text == nil { return "" } return *w.Text } // GetTextOk returns a tuple with the Text field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTextOk() (string, bool) { if w == nil || w.Text == nil { return "", false } return *w.Text, true } // HasText returns a boolean if a field has been set. func (w *Widget) HasText() bool { if w != nil && w.Text != nil { return true } return false } // SetText allocates a new w.Text and returns the pointer to it. func (w *Widget) SetText(v string) { w.Text = &v } // GetTextAlign returns the TextAlign field if non-nil, zero value otherwise. func (w *Widget) GetTextAlign() string { if w == nil || w.TextAlign == nil { return "" } return *w.TextAlign } // GetTextAlignOk returns a tuple with the TextAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTextAlignOk() (string, bool) { if w == nil || w.TextAlign == nil { return "", false } return *w.TextAlign, true } // HasTextAlign returns a boolean if a field has been set. func (w *Widget) HasTextAlign() bool { if w != nil && w.TextAlign != nil { return true } return false } // SetTextAlign allocates a new w.TextAlign and returns the pointer to it. func (w *Widget) SetTextAlign(v string) { w.TextAlign = &v } // GetTextSize returns the TextSize field if non-nil, zero value otherwise. func (w *Widget) GetTextSize() string { if w == nil || w.TextSize == nil { return "" } return *w.TextSize } // GetTextSizeOk returns a tuple with the TextSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTextSizeOk() (string, bool) { if w == nil || w.TextSize == nil { return "", false } return *w.TextSize, true } // HasTextSize returns a boolean if a field has been set. func (w *Widget) HasTextSize() bool { if w != nil && w.TextSize != nil { return true } return false } // SetTextSize allocates a new w.TextSize and returns the pointer to it. func (w *Widget) SetTextSize(v string) { w.TextSize = &v } // GetTick returns the Tick field if non-nil, zero value otherwise. func (w *Widget) GetTick() bool { if w == nil || w.Tick == nil { return false } return *w.Tick } // GetTickOk returns a tuple with the Tick field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTickOk() (bool, bool) { if w == nil || w.Tick == nil { return false, false } return *w.Tick, true } // HasTick returns a boolean if a field has been set. func (w *Widget) HasTick() bool { if w != nil && w.Tick != nil { return true } return false } // SetTick allocates a new w.Tick and returns the pointer to it. func (w *Widget) SetTick(v bool) { w.Tick = &v } // GetTickEdge returns the TickEdge field if non-nil, zero value otherwise. func (w *Widget) GetTickEdge() string { if w == nil || w.TickEdge == nil { return "" } return *w.TickEdge } // GetTickEdgeOk returns a tuple with the TickEdge field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTickEdgeOk() (string, bool) { if w == nil || w.TickEdge == nil { return "", false } return *w.TickEdge, true } // HasTickEdge returns a boolean if a field has been set. func (w *Widget) HasTickEdge() bool { if w != nil && w.TickEdge != nil { return true } return false } // SetTickEdge allocates a new w.TickEdge and returns the pointer to it. func (w *Widget) SetTickEdge(v string) { w.TickEdge = &v } // GetTickPos returns the TickPos field if non-nil, zero value otherwise. func (w *Widget) GetTickPos() string { if w == nil || w.TickPos == nil { return "" } return *w.TickPos } // GetTickPosOk returns a tuple with the TickPos field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTickPosOk() (string, bool) { if w == nil || w.TickPos == nil { return "", false } return *w.TickPos, true } // HasTickPos returns a boolean if a field has been set. func (w *Widget) HasTickPos() bool { if w != nil && w.TickPos != nil { return true } return false } // SetTickPos allocates a new w.TickPos and returns the pointer to it. func (w *Widget) SetTickPos(v string) { w.TickPos = &v } // GetTileDef returns the TileDef field if non-nil, zero value otherwise. func (w *Widget) GetTileDef() TileDef { if w == nil || w.TileDef == nil { return TileDef{} } return *w.TileDef } // GetTileDefOk returns a tuple with the TileDef field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTileDefOk() (TileDef, bool) { if w == nil || w.TileDef == nil { return TileDef{}, false } return *w.TileDef, true } // HasTileDef returns a boolean if a field has been set. func (w *Widget) HasTileDef() bool { if w != nil && w.TileDef != nil { return true } return false } // SetTileDef allocates a new w.TileDef and returns the pointer to it. func (w *Widget) SetTileDef(v TileDef) { w.TileDef = &v } // GetTime returns the Time field if non-nil, zero value otherwise. func (w *Widget) GetTime() Time { if w == nil || w.Time == nil { return Time{} } return *w.Time } // GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTimeOk() (Time, bool) { if w == nil || w.Time == nil { return Time{}, false } return *w.Time, true } // HasTime returns a boolean if a field has been set. func (w *Widget) HasTime() bool { if w != nil && w.Time != nil { return true } return false } // SetTime allocates a new w.Time and returns the pointer to it. func (w *Widget) SetTime(v Time) { w.Time = &v } // GetTitle returns the Title field if non-nil, zero value otherwise. func (w *Widget) GetTitle() bool { if w == nil || w.Title == nil { return false } return *w.Title } // GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTitleOk() (bool, bool) { if w == nil || w.Title == nil { return false, false } return *w.Title, true } // HasTitle returns a boolean if a field has been set. func (w *Widget) HasTitle() bool { if w != nil && w.Title != nil { return true } return false } // SetTitle allocates a new w.Title and returns the pointer to it. func (w *Widget) SetTitle(v bool) { w.Title = &v } // GetTitleAlign returns the TitleAlign field if non-nil, zero value otherwise. func (w *Widget) GetTitleAlign() string { if w == nil || w.TitleAlign == nil { return "" } return *w.TitleAlign } // GetTitleAlignOk returns a tuple with the TitleAlign field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTitleAlignOk() (string, bool) { if w == nil || w.TitleAlign == nil { return "", false } return *w.TitleAlign, true } // HasTitleAlign returns a boolean if a field has been set. func (w *Widget) HasTitleAlign() bool { if w != nil && w.TitleAlign != nil { return true } return false } // SetTitleAlign allocates a new w.TitleAlign and returns the pointer to it. func (w *Widget) SetTitleAlign(v string) { w.TitleAlign = &v } // GetTitleSize returns the TitleSize field if non-nil, zero value otherwise. func (w *Widget) GetTitleSize() int { if w == nil || w.TitleSize == nil { return 0 } return *w.TitleSize } // GetTitleSizeOk returns a tuple with the TitleSize field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTitleSizeOk() (int, bool) { if w == nil || w.TitleSize == nil { return 0, false } return *w.TitleSize, true } // HasTitleSize returns a boolean if a field has been set. func (w *Widget) HasTitleSize() bool { if w != nil && w.TitleSize != nil { return true } return false } // SetTitleSize allocates a new w.TitleSize and returns the pointer to it. func (w *Widget) SetTitleSize(v int) { w.TitleSize = &v } // GetTitleText returns the TitleText field if non-nil, zero value otherwise. func (w *Widget) GetTitleText() string { if w == nil || w.TitleText == nil { return "" } return *w.TitleText } // GetTitleTextOk returns a tuple with the TitleText field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTitleTextOk() (string, bool) { if w == nil || w.TitleText == nil { return "", false } return *w.TitleText, true } // HasTitleText returns a boolean if a field has been set. func (w *Widget) HasTitleText() bool { if w != nil && w.TitleText != nil { return true } return false } // SetTitleText allocates a new w.TitleText and returns the pointer to it. func (w *Widget) SetTitleText(v string) { w.TitleText = &v } // GetType returns the Type field if non-nil, zero value otherwise. func (w *Widget) GetType() string { if w == nil || w.Type == nil { return "" } return *w.Type } // GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetTypeOk() (string, bool) { if w == nil || w.Type == nil { return "", false } return *w.Type, true } // HasType returns a boolean if a field has been set. func (w *Widget) HasType() bool { if w != nil && w.Type != nil { return true } return false } // SetType allocates a new w.Type and returns the pointer to it. func (w *Widget) SetType(v string) { w.Type = &v } // GetUnit returns the Unit field if non-nil, zero value otherwise. func (w *Widget) GetUnit() string { if w == nil || w.Unit == nil { return "" } return *w.Unit } // GetUnitOk returns a tuple with the Unit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetUnitOk() (string, bool) { if w == nil || w.Unit == nil { return "", false } return *w.Unit, true } // HasUnit returns a boolean if a field has been set. func (w *Widget) HasUnit() bool { if w != nil && w.Unit != nil { return true } return false } // SetUnit allocates a new w.Unit and returns the pointer to it. func (w *Widget) SetUnit(v string) { w.Unit = &v } // GetURL returns the URL field if non-nil, zero value otherwise. func (w *Widget) GetURL() string { if w == nil || w.URL == nil { return "" } return *w.URL } // GetURLOk returns a tuple with the URL field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetURLOk() (string, bool) { if w == nil || w.URL == nil { return "", false } return *w.URL, true } // HasURL returns a boolean if a field has been set. func (w *Widget) HasURL() bool { if w != nil && w.URL != nil { return true } return false } // SetURL allocates a new w.URL and returns the pointer to it. func (w *Widget) SetURL(v string) { w.URL = &v } // GetVizType returns the VizType field if non-nil, zero value otherwise. func (w *Widget) GetVizType() string { if w == nil || w.VizType == nil { return "" } return *w.VizType } // GetVizTypeOk returns a tuple with the VizType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetVizTypeOk() (string, bool) { if w == nil || w.VizType == nil { return "", false } return *w.VizType, true } // HasVizType returns a boolean if a field has been set. func (w *Widget) HasVizType() bool { if w != nil && w.VizType != nil { return true } return false } // SetVizType allocates a new w.VizType and returns the pointer to it. func (w *Widget) SetVizType(v string) { w.VizType = &v } // GetWidth returns the Width field if non-nil, zero value otherwise. func (w *Widget) GetWidth() int { if w == nil || w.Width == nil { return 0 } return *w.Width } // GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetWidthOk() (int, bool) { if w == nil || w.Width == nil { return 0, false } return *w.Width, true } // HasWidth returns a boolean if a field has been set. func (w *Widget) HasWidth() bool { if w != nil && w.Width != nil { return true } return false } // SetWidth allocates a new w.Width and returns the pointer to it. func (w *Widget) SetWidth(v int) { w.Width = &v } // GetX returns the X field if non-nil, zero value otherwise. func (w *Widget) GetX() int { if w == nil || w.X == nil { return 0 } return *w.X } // GetXOk returns a tuple with the X field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetXOk() (int, bool) { if w == nil || w.X == nil { return 0, false } return *w.X, true } // HasX returns a boolean if a field has been set. func (w *Widget) HasX() bool { if w != nil && w.X != nil { return true } return false } // SetX allocates a new w.X and returns the pointer to it. func (w *Widget) SetX(v int) { w.X = &v } // GetY returns the Y field if non-nil, zero value otherwise. func (w *Widget) GetY() int { if w == nil || w.Y == nil { return 0 } return *w.Y } // GetYOk returns a tuple with the Y field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *Widget) GetYOk() (int, bool) { if w == nil || w.Y == nil { return 0, false } return *w.Y, true } // HasY returns a boolean if a field has been set. func (w *Widget) HasY() bool { if w != nil && w.Y != nil { return true } return false } // SetY allocates a new w.Y and returns the pointer to it. func (w *Widget) SetY(v int) { w.Y = &v } // GetCompute returns the Compute field if non-nil, zero value otherwise. func (w *WidgetApmOrLogQuery) GetCompute() ApmOrLogQueryCompute { if w == nil || w.Compute == nil { return ApmOrLogQueryCompute{} } return *w.Compute } // GetComputeOk returns a tuple with the Compute field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetApmOrLogQuery) GetComputeOk() (ApmOrLogQueryCompute, bool) { if w == nil || w.Compute == nil { return ApmOrLogQueryCompute{}, false } return *w.Compute, true } // HasCompute returns a boolean if a field has been set. func (w *WidgetApmOrLogQuery) HasCompute() bool { if w != nil && w.Compute != nil { return true } return false } // SetCompute allocates a new w.Compute and returns the pointer to it. func (w *WidgetApmOrLogQuery) SetCompute(v ApmOrLogQueryCompute) { w.Compute = &v } // GetIndex returns the Index field if non-nil, zero value otherwise. func (w *WidgetApmOrLogQuery) GetIndex() string { if w == nil || w.Index == nil { return "" } return *w.Index } // GetIndexOk returns a tuple with the Index field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetApmOrLogQuery) GetIndexOk() (string, bool) { if w == nil || w.Index == nil { return "", false } return *w.Index, true } // HasIndex returns a boolean if a field has been set. func (w *WidgetApmOrLogQuery) HasIndex() bool { if w != nil && w.Index != nil { return true } return false } // SetIndex allocates a new w.Index and returns the pointer to it. func (w *WidgetApmOrLogQuery) SetIndex(v string) { w.Index = &v } // GetSearch returns the Search field if non-nil, zero value otherwise. func (w *WidgetApmOrLogQuery) GetSearch() ApmOrLogQuerySearch { if w == nil || w.Search == nil { return ApmOrLogQuerySearch{} } return *w.Search } // GetSearchOk returns a tuple with the Search field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetApmOrLogQuery) GetSearchOk() (ApmOrLogQuerySearch, bool) { if w == nil || w.Search == nil { return ApmOrLogQuerySearch{}, false } return *w.Search, true } // HasSearch returns a boolean if a field has been set. func (w *WidgetApmOrLogQuery) HasSearch() bool { if w != nil && w.Search != nil { return true } return false } // SetSearch allocates a new w.Search and returns the pointer to it. func (w *WidgetApmOrLogQuery) SetSearch(v ApmOrLogQuerySearch) { w.Search = &v } // GetIncludeZero returns the IncludeZero field if non-nil, zero value otherwise. func (w *WidgetAxis) GetIncludeZero() bool { if w == nil || w.IncludeZero == nil { return false } return *w.IncludeZero } // GetIncludeZeroOk returns a tuple with the IncludeZero field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetAxis) GetIncludeZeroOk() (bool, bool) { if w == nil || w.IncludeZero == nil { return false, false } return *w.IncludeZero, true } // HasIncludeZero returns a boolean if a field has been set. func (w *WidgetAxis) HasIncludeZero() bool { if w != nil && w.IncludeZero != nil { return true } return false } // SetIncludeZero allocates a new w.IncludeZero and returns the pointer to it. func (w *WidgetAxis) SetIncludeZero(v bool) { w.IncludeZero = &v } // GetLabel returns the Label field if non-nil, zero value otherwise. func (w *WidgetAxis) GetLabel() string { if w == nil || w.Label == nil { return "" } return *w.Label } // GetLabelOk returns a tuple with the Label field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetAxis) GetLabelOk() (string, bool) { if w == nil || w.Label == nil { return "", false } return *w.Label, true } // HasLabel returns a boolean if a field has been set. func (w *WidgetAxis) HasLabel() bool { if w != nil && w.Label != nil { return true } return false } // SetLabel allocates a new w.Label and returns the pointer to it. func (w *WidgetAxis) SetLabel(v string) { w.Label = &v } // GetMax returns the Max field if non-nil, zero value otherwise. func (w *WidgetAxis) GetMax() string { if w == nil || w.Max == nil { return "" } return *w.Max } // GetMaxOk returns a tuple with the Max field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetAxis) GetMaxOk() (string, bool) { if w == nil || w.Max == nil { return "", false } return *w.Max, true } // HasMax returns a boolean if a field has been set. func (w *WidgetAxis) HasMax() bool { if w != nil && w.Max != nil { return true } return false } // SetMax allocates a new w.Max and returns the pointer to it. func (w *WidgetAxis) SetMax(v string) { w.Max = &v } // GetMin returns the Min field if non-nil, zero value otherwise. func (w *WidgetAxis) GetMin() string { if w == nil || w.Min == nil { return "" } return *w.Min } // GetMinOk returns a tuple with the Min field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetAxis) GetMinOk() (string, bool) { if w == nil || w.Min == nil { return "", false } return *w.Min, true } // HasMin returns a boolean if a field has been set. func (w *WidgetAxis) HasMin() bool { if w != nil && w.Min != nil { return true } return false } // SetMin allocates a new w.Min and returns the pointer to it. func (w *WidgetAxis) SetMin(v string) { w.Min = &v } // GetScale returns the Scale field if non-nil, zero value otherwise. func (w *WidgetAxis) GetScale() string { if w == nil || w.Scale == nil { return "" } return *w.Scale } // GetScaleOk returns a tuple with the Scale field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetAxis) GetScaleOk() (string, bool) { if w == nil || w.Scale == nil { return "", false } return *w.Scale, true } // HasScale returns a boolean if a field has been set. func (w *WidgetAxis) HasScale() bool { if w != nil && w.Scale != nil { return true } return false } // SetScale allocates a new w.Scale and returns the pointer to it. func (w *WidgetAxis) SetScale(v string) { w.Scale = &v } // GetComparator returns the Comparator field if non-nil, zero value otherwise. func (w *WidgetConditionalFormat) GetComparator() string { if w == nil || w.Comparator == nil { return "" } return *w.Comparator } // GetComparatorOk returns a tuple with the Comparator field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetConditionalFormat) GetComparatorOk() (string, bool) { if w == nil || w.Comparator == nil { return "", false } return *w.Comparator, true } // HasComparator returns a boolean if a field has been set. func (w *WidgetConditionalFormat) HasComparator() bool { if w != nil && w.Comparator != nil { return true } return false } // SetComparator allocates a new w.Comparator and returns the pointer to it. func (w *WidgetConditionalFormat) SetComparator(v string) { w.Comparator = &v } // GetCustomBgColor returns the CustomBgColor field if non-nil, zero value otherwise. func (w *WidgetConditionalFormat) GetCustomBgColor() string { if w == nil || w.CustomBgColor == nil { return "" } return *w.CustomBgColor } // GetCustomBgColorOk returns a tuple with the CustomBgColor field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetConditionalFormat) GetCustomBgColorOk() (string, bool) { if w == nil || w.CustomBgColor == nil { return "", false } return *w.CustomBgColor, true } // HasCustomBgColor returns a boolean if a field has been set. func (w *WidgetConditionalFormat) HasCustomBgColor() bool { if w != nil && w.CustomBgColor != nil { return true } return false } // SetCustomBgColor allocates a new w.CustomBgColor and returns the pointer to it. func (w *WidgetConditionalFormat) SetCustomBgColor(v string) { w.CustomBgColor = &v } // GetCustomFgColor returns the CustomFgColor field if non-nil, zero value otherwise. func (w *WidgetConditionalFormat) GetCustomFgColor() string { if w == nil || w.CustomFgColor == nil { return "" } return *w.CustomFgColor } // GetCustomFgColorOk returns a tuple with the CustomFgColor field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetConditionalFormat) GetCustomFgColorOk() (string, bool) { if w == nil || w.CustomFgColor == nil { return "", false } return *w.CustomFgColor, true } // HasCustomFgColor returns a boolean if a field has been set. func (w *WidgetConditionalFormat) HasCustomFgColor() bool { if w != nil && w.CustomFgColor != nil { return true } return false } // SetCustomFgColor allocates a new w.CustomFgColor and returns the pointer to it. func (w *WidgetConditionalFormat) SetCustomFgColor(v string) { w.CustomFgColor = &v } // GetHideValue returns the HideValue field if non-nil, zero value otherwise. func (w *WidgetConditionalFormat) GetHideValue() bool { if w == nil || w.HideValue == nil { return false } return *w.HideValue } // GetHideValueOk returns a tuple with the HideValue field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetConditionalFormat) GetHideValueOk() (bool, bool) { if w == nil || w.HideValue == nil { return false, false } return *w.HideValue, true } // HasHideValue returns a boolean if a field has been set. func (w *WidgetConditionalFormat) HasHideValue() bool { if w != nil && w.HideValue != nil { return true } return false } // SetHideValue allocates a new w.HideValue and returns the pointer to it. func (w *WidgetConditionalFormat) SetHideValue(v bool) { w.HideValue = &v } // GetImageUrl returns the ImageUrl field if non-nil, zero value otherwise. func (w *WidgetConditionalFormat) GetImageUrl() string { if w == nil || w.ImageUrl == nil { return "" } return *w.ImageUrl } // GetImageUrlOk returns a tuple with the ImageUrl field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetConditionalFormat) GetImageUrlOk() (string, bool) { if w == nil || w.ImageUrl == nil { return "", false } return *w.ImageUrl, true } // HasImageUrl returns a boolean if a field has been set. func (w *WidgetConditionalFormat) HasImageUrl() bool { if w != nil && w.ImageUrl != nil { return true } return false } // SetImageUrl allocates a new w.ImageUrl and returns the pointer to it. func (w *WidgetConditionalFormat) SetImageUrl(v string) { w.ImageUrl = &v } // GetPalette returns the Palette field if non-nil, zero value otherwise. func (w *WidgetConditionalFormat) GetPalette() string { if w == nil || w.Palette == nil { return "" } return *w.Palette } // GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetConditionalFormat) GetPaletteOk() (string, bool) { if w == nil || w.Palette == nil { return "", false } return *w.Palette, true } // HasPalette returns a boolean if a field has been set. func (w *WidgetConditionalFormat) HasPalette() bool { if w != nil && w.Palette != nil { return true } return false } // SetPalette allocates a new w.Palette and returns the pointer to it. func (w *WidgetConditionalFormat) SetPalette(v string) { w.Palette = &v } // GetTimeframe returns the Timeframe field if non-nil, zero value otherwise. func (w *WidgetConditionalFormat) GetTimeframe() string { if w == nil || w.Timeframe == nil { return "" } return *w.Timeframe } // GetTimeframeOk returns a tuple with the Timeframe field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetConditionalFormat) GetTimeframeOk() (string, bool) { if w == nil || w.Timeframe == nil { return "", false } return *w.Timeframe, true } // HasTimeframe returns a boolean if a field has been set. func (w *WidgetConditionalFormat) HasTimeframe() bool { if w != nil && w.Timeframe != nil { return true } return false } // SetTimeframe allocates a new w.Timeframe and returns the pointer to it. func (w *WidgetConditionalFormat) SetTimeframe(v string) { w.Timeframe = &v } // GetValue returns the Value field if non-nil, zero value otherwise. func (w *WidgetConditionalFormat) GetValue() float64 { if w == nil || w.Value == nil { return 0 } return *w.Value } // GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetConditionalFormat) GetValueOk() (float64, bool) { if w == nil || w.Value == nil { return 0, false } return *w.Value, true } // HasValue returns a boolean if a field has been set. func (w *WidgetConditionalFormat) HasValue() bool { if w != nil && w.Value != nil { return true } return false } // SetValue allocates a new w.Value and returns the pointer to it. func (w *WidgetConditionalFormat) SetValue(v float64) { w.Value = &v } // GetQuery returns the Query field if non-nil, zero value otherwise. func (w *WidgetEvent) GetQuery() string { if w == nil || w.Query == nil { return "" } return *w.Query } // GetQueryOk returns a tuple with the Query field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetEvent) GetQueryOk() (string, bool) { if w == nil || w.Query == nil { return "", false } return *w.Query, true } // HasQuery returns a boolean if a field has been set. func (w *WidgetEvent) HasQuery() bool { if w != nil && w.Query != nil { return true } return false } // SetQuery allocates a new w.Query and returns the pointer to it. func (w *WidgetEvent) SetQuery(v string) { w.Query = &v } // GetHeight returns the Height field if non-nil, zero value otherwise. func (w *WidgetLayout) GetHeight() float64 { if w == nil || w.Height == nil { return 0 } return *w.Height } // GetHeightOk returns a tuple with the Height field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetLayout) GetHeightOk() (float64, bool) { if w == nil || w.Height == nil { return 0, false } return *w.Height, true } // HasHeight returns a boolean if a field has been set. func (w *WidgetLayout) HasHeight() bool { if w != nil && w.Height != nil { return true } return false } // SetHeight allocates a new w.Height and returns the pointer to it. func (w *WidgetLayout) SetHeight(v float64) { w.Height = &v } // GetWidth returns the Width field if non-nil, zero value otherwise. func (w *WidgetLayout) GetWidth() float64 { if w == nil || w.Width == nil { return 0 } return *w.Width } // GetWidthOk returns a tuple with the Width field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetLayout) GetWidthOk() (float64, bool) { if w == nil || w.Width == nil { return 0, false } return *w.Width, true } // HasWidth returns a boolean if a field has been set. func (w *WidgetLayout) HasWidth() bool { if w != nil && w.Width != nil { return true } return false } // SetWidth allocates a new w.Width and returns the pointer to it. func (w *WidgetLayout) SetWidth(v float64) { w.Width = &v } // GetX returns the X field if non-nil, zero value otherwise. func (w *WidgetLayout) GetX() float64 { if w == nil || w.X == nil { return 0 } return *w.X } // GetXOk returns a tuple with the X field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetLayout) GetXOk() (float64, bool) { if w == nil || w.X == nil { return 0, false } return *w.X, true } // HasX returns a boolean if a field has been set. func (w *WidgetLayout) HasX() bool { if w != nil && w.X != nil { return true } return false } // SetX allocates a new w.X and returns the pointer to it. func (w *WidgetLayout) SetX(v float64) { w.X = &v } // GetY returns the Y field if non-nil, zero value otherwise. func (w *WidgetLayout) GetY() float64 { if w == nil || w.Y == nil { return 0 } return *w.Y } // GetYOk returns a tuple with the Y field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetLayout) GetYOk() (float64, bool) { if w == nil || w.Y == nil { return 0, false } return *w.Y, true } // HasY returns a boolean if a field has been set. func (w *WidgetLayout) HasY() bool { if w != nil && w.Y != nil { return true } return false } // SetY allocates a new w.Y and returns the pointer to it. func (w *WidgetLayout) SetY(v float64) { w.Y = &v } // GetDisplayType returns the DisplayType field if non-nil, zero value otherwise. func (w *WidgetMarker) GetDisplayType() string { if w == nil || w.DisplayType == nil { return "" } return *w.DisplayType } // GetDisplayTypeOk returns a tuple with the DisplayType field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetMarker) GetDisplayTypeOk() (string, bool) { if w == nil || w.DisplayType == nil { return "", false } return *w.DisplayType, true } // HasDisplayType returns a boolean if a field has been set. func (w *WidgetMarker) HasDisplayType() bool { if w != nil && w.DisplayType != nil { return true } return false } // SetDisplayType allocates a new w.DisplayType and returns the pointer to it. func (w *WidgetMarker) SetDisplayType(v string) { w.DisplayType = &v } // GetLabel returns the Label field if non-nil, zero value otherwise. func (w *WidgetMarker) GetLabel() string { if w == nil || w.Label == nil { return "" } return *w.Label } // GetLabelOk returns a tuple with the Label field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetMarker) GetLabelOk() (string, bool) { if w == nil || w.Label == nil { return "", false } return *w.Label, true } // HasLabel returns a boolean if a field has been set. func (w *WidgetMarker) HasLabel() bool { if w != nil && w.Label != nil { return true } return false } // SetLabel allocates a new w.Label and returns the pointer to it. func (w *WidgetMarker) SetLabel(v string) { w.Label = &v } // GetValue returns the Value field if non-nil, zero value otherwise. func (w *WidgetMarker) GetValue() string { if w == nil || w.Value == nil { return "" } return *w.Value } // GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetMarker) GetValueOk() (string, bool) { if w == nil || w.Value == nil { return "", false } return *w.Value, true } // HasValue returns a boolean if a field has been set. func (w *WidgetMarker) HasValue() bool { if w != nil && w.Value != nil { return true } return false } // SetValue allocates a new w.Value and returns the pointer to it. func (w *WidgetMarker) SetValue(v string) { w.Value = &v } // GetAliasName returns the AliasName field if non-nil, zero value otherwise. func (w *WidgetMetadata) GetAliasName() string { if w == nil || w.AliasName == nil { return "" } return *w.AliasName } // GetAliasNameOk returns a tuple with the AliasName field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetMetadata) GetAliasNameOk() (string, bool) { if w == nil || w.AliasName == nil { return "", false } return *w.AliasName, true } // HasAliasName returns a boolean if a field has been set. func (w *WidgetMetadata) HasAliasName() bool { if w != nil && w.AliasName != nil { return true } return false } // SetAliasName allocates a new w.AliasName and returns the pointer to it. func (w *WidgetMetadata) SetAliasName(v string) { w.AliasName = &v } // GetExpression returns the Expression field if non-nil, zero value otherwise. func (w *WidgetMetadata) GetExpression() string { if w == nil || w.Expression == nil { return "" } return *w.Expression } // GetExpressionOk returns a tuple with the Expression field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetMetadata) GetExpressionOk() (string, bool) { if w == nil || w.Expression == nil { return "", false } return *w.Expression, true } // HasExpression returns a boolean if a field has been set. func (w *WidgetMetadata) HasExpression() bool { if w != nil && w.Expression != nil { return true } return false } // SetExpression allocates a new w.Expression and returns the pointer to it. func (w *WidgetMetadata) SetExpression(v string) { w.Expression = &v } // GetLimit returns the Limit field if non-nil, zero value otherwise. func (w *WidgetProcessQuery) GetLimit() int { if w == nil || w.Limit == nil { return 0 } return *w.Limit } // GetLimitOk returns a tuple with the Limit field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetProcessQuery) GetLimitOk() (int, bool) { if w == nil || w.Limit == nil { return 0, false } return *w.Limit, true } // HasLimit returns a boolean if a field has been set. func (w *WidgetProcessQuery) HasLimit() bool { if w != nil && w.Limit != nil { return true } return false } // SetLimit allocates a new w.Limit and returns the pointer to it. func (w *WidgetProcessQuery) SetLimit(v int) { w.Limit = &v } // GetMetric returns the Metric field if non-nil, zero value otherwise. func (w *WidgetProcessQuery) GetMetric() string { if w == nil || w.Metric == nil { return "" } return *w.Metric } // GetMetricOk returns a tuple with the Metric field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetProcessQuery) GetMetricOk() (string, bool) { if w == nil || w.Metric == nil { return "", false } return *w.Metric, true } // HasMetric returns a boolean if a field has been set. func (w *WidgetProcessQuery) HasMetric() bool { if w != nil && w.Metric != nil { return true } return false } // SetMetric allocates a new w.Metric and returns the pointer to it. func (w *WidgetProcessQuery) SetMetric(v string) { w.Metric = &v } // GetSearchBy returns the SearchBy field if non-nil, zero value otherwise. func (w *WidgetProcessQuery) GetSearchBy() string { if w == nil || w.SearchBy == nil { return "" } return *w.SearchBy } // GetSearchByOk returns a tuple with the SearchBy field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetProcessQuery) GetSearchByOk() (string, bool) { if w == nil || w.SearchBy == nil { return "", false } return *w.SearchBy, true } // HasSearchBy returns a boolean if a field has been set. func (w *WidgetProcessQuery) HasSearchBy() bool { if w != nil && w.SearchBy != nil { return true } return false } // SetSearchBy allocates a new w.SearchBy and returns the pointer to it. func (w *WidgetProcessQuery) SetSearchBy(v string) { w.SearchBy = &v } // GetPalette returns the Palette field if non-nil, zero value otherwise. func (w *WidgetRequestStyle) GetPalette() string { if w == nil || w.Palette == nil { return "" } return *w.Palette } // GetPaletteOk returns a tuple with the Palette field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetRequestStyle) GetPaletteOk() (string, bool) { if w == nil || w.Palette == nil { return "", false } return *w.Palette, true } // HasPalette returns a boolean if a field has been set. func (w *WidgetRequestStyle) HasPalette() bool { if w != nil && w.Palette != nil { return true } return false } // SetPalette allocates a new w.Palette and returns the pointer to it. func (w *WidgetRequestStyle) SetPalette(v string) { w.Palette = &v } // GetLiveSpan returns the LiveSpan field if non-nil, zero value otherwise. func (w *WidgetTime) GetLiveSpan() string { if w == nil || w.LiveSpan == nil { return "" } return *w.LiveSpan } // GetLiveSpanOk returns a tuple with the LiveSpan field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (w *WidgetTime) GetLiveSpanOk() (string, bool) { if w == nil || w.LiveSpan == nil { return "", false } return *w.LiveSpan, true } // HasLiveSpan returns a boolean if a field has been set. func (w *WidgetTime) HasLiveSpan() bool { if w != nil && w.LiveSpan != nil { return true } return false } // SetLiveSpan allocates a new w.LiveSpan and returns the pointer to it. func (w *WidgetTime) SetLiveSpan(v string) { w.LiveSpan = &v } // GetIncludeUnits returns the IncludeUnits field if non-nil, zero value otherwise. func (y *Yaxis) GetIncludeUnits() bool { if y == nil || y.IncludeUnits == nil { return false } return *y.IncludeUnits } // GetIncludeUnitsOk returns a tuple with the IncludeUnits field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (y *Yaxis) GetIncludeUnitsOk() (bool, bool) { if y == nil || y.IncludeUnits == nil { return false, false } return *y.IncludeUnits, true } // HasIncludeUnits returns a boolean if a field has been set. func (y *Yaxis) HasIncludeUnits() bool { if y != nil && y.IncludeUnits != nil { return true } return false } // SetIncludeUnits allocates a new y.IncludeUnits and returns the pointer to it. func (y *Yaxis) SetIncludeUnits(v bool) { y.IncludeUnits = &v } // GetIncludeZero returns the IncludeZero field if non-nil, zero value otherwise. func (y *Yaxis) GetIncludeZero() bool { if y == nil || y.IncludeZero == nil { return false } return *y.IncludeZero } // GetIncludeZeroOk returns a tuple with the IncludeZero field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (y *Yaxis) GetIncludeZeroOk() (bool, bool) { if y == nil || y.IncludeZero == nil { return false, false } return *y.IncludeZero, true } // HasIncludeZero returns a boolean if a field has been set. func (y *Yaxis) HasIncludeZero() bool { if y != nil && y.IncludeZero != nil { return true } return false } // SetIncludeZero allocates a new y.IncludeZero and returns the pointer to it. func (y *Yaxis) SetIncludeZero(v bool) { y.IncludeZero = &v } // GetMax returns the Max field if non-nil, zero value otherwise. func (y *Yaxis) GetMax() float64 { if y == nil || y.Max == nil { return 0 } return *y.Max } // GetMaxOk returns a tuple with the Max field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (y *Yaxis) GetMaxOk() (float64, bool) { if y == nil || y.Max == nil { return 0, false } return *y.Max, true } // HasMax returns a boolean if a field has been set. func (y *Yaxis) HasMax() bool { if y != nil && y.Max != nil { return true } return false } // SetMax allocates a new y.Max and returns the pointer to it. func (y *Yaxis) SetMax(v float64) { y.Max = &v } // GetMin returns the Min field if non-nil, zero value otherwise. func (y *Yaxis) GetMin() float64 { if y == nil || y.Min == nil { return 0 } return *y.Min } // GetMinOk returns a tuple with the Min field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (y *Yaxis) GetMinOk() (float64, bool) { if y == nil || y.Min == nil { return 0, false } return *y.Min, true } // HasMin returns a boolean if a field has been set. func (y *Yaxis) HasMin() bool { if y != nil && y.Min != nil { return true } return false } // SetMin allocates a new y.Min and returns the pointer to it. func (y *Yaxis) SetMin(v float64) { y.Min = &v } // GetScale returns the Scale field if non-nil, zero value otherwise. func (y *Yaxis) GetScale() string { if y == nil || y.Scale == nil { return "" } return *y.Scale } // GetScaleOk returns a tuple with the Scale field if it's non-nil, zero value otherwise // and a boolean to check if the value has been set. func (y *Yaxis) GetScaleOk() (string, bool) { if y == nil || y.Scale == nil { return "", false } return *y.Scale, true } // HasScale returns a boolean if a field has been set. func (y *Yaxis) HasScale() bool { if y != nil && y.Scale != nil { return true } return false } // SetScale allocates a new y.Scale and returns the pointer to it. func (y *Yaxis) SetScale(v string) { y.Scale = &v }