Skip to content

Latest commit

 

History

History
192 lines (103 loc) · 5.19 KB

File metadata and controls

192 lines (103 loc) · 5.19 KB

FullComponent

Properties

Name Type Description Notes
TypeName string
Icon Pointer to string [optional]
Data ComponentData
Highlights Pointer to ComponentTypeHighlights [optional]
Actions []ComponentAction
BoundMetrics []BoundMetric
BoundTraces Pointer to BoundTraces [optional]

Methods

NewFullComponent

func NewFullComponent(typeName string, data ComponentData, actions []ComponentAction, boundMetrics []BoundMetric, ) *FullComponent

NewFullComponent instantiates a new FullComponent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewFullComponentWithDefaults

func NewFullComponentWithDefaults() *FullComponent

NewFullComponentWithDefaults instantiates a new FullComponent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetTypeName

func (o *FullComponent) GetTypeName() string

GetTypeName returns the TypeName field if non-nil, zero value otherwise.

GetTypeNameOk

func (o *FullComponent) GetTypeNameOk() (*string, bool)

GetTypeNameOk returns a tuple with the TypeName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTypeName

func (o *FullComponent) SetTypeName(v string)

SetTypeName sets TypeName field to given value.

GetIcon

func (o *FullComponent) GetIcon() string

GetIcon returns the Icon field if non-nil, zero value otherwise.

GetIconOk

func (o *FullComponent) GetIconOk() (*string, bool)

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.

SetIcon

func (o *FullComponent) SetIcon(v string)

SetIcon sets Icon field to given value.

HasIcon

func (o *FullComponent) HasIcon() bool

HasIcon returns a boolean if a field has been set.

GetData

func (o *FullComponent) GetData() ComponentData

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

func (o *FullComponent) GetDataOk() (*ComponentData, bool)

GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetData

func (o *FullComponent) SetData(v ComponentData)

SetData sets Data field to given value.

GetHighlights

func (o *FullComponent) GetHighlights() ComponentTypeHighlights

GetHighlights returns the Highlights field if non-nil, zero value otherwise.

GetHighlightsOk

func (o *FullComponent) GetHighlightsOk() (*ComponentTypeHighlights, bool)

GetHighlightsOk returns a tuple with the Highlights field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetHighlights

func (o *FullComponent) SetHighlights(v ComponentTypeHighlights)

SetHighlights sets Highlights field to given value.

HasHighlights

func (o *FullComponent) HasHighlights() bool

HasHighlights returns a boolean if a field has been set.

GetActions

func (o *FullComponent) GetActions() []ComponentAction

GetActions returns the Actions field if non-nil, zero value otherwise.

GetActionsOk

func (o *FullComponent) GetActionsOk() (*[]ComponentAction, bool)

GetActionsOk returns a tuple with the Actions field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetActions

func (o *FullComponent) SetActions(v []ComponentAction)

SetActions sets Actions field to given value.

GetBoundMetrics

func (o *FullComponent) GetBoundMetrics() []BoundMetric

GetBoundMetrics returns the BoundMetrics field if non-nil, zero value otherwise.

GetBoundMetricsOk

func (o *FullComponent) GetBoundMetricsOk() (*[]BoundMetric, bool)

GetBoundMetricsOk returns a tuple with the BoundMetrics field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetBoundMetrics

func (o *FullComponent) SetBoundMetrics(v []BoundMetric)

SetBoundMetrics sets BoundMetrics field to given value.

GetBoundTraces

func (o *FullComponent) GetBoundTraces() BoundTraces

GetBoundTraces returns the BoundTraces field if non-nil, zero value otherwise.

GetBoundTracesOk

func (o *FullComponent) GetBoundTracesOk() (*BoundTraces, bool)

GetBoundTracesOk returns a tuple with the BoundTraces field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetBoundTraces

func (o *FullComponent) SetBoundTraces(v BoundTraces)

SetBoundTraces sets BoundTraces field to given value.

HasBoundTraces

func (o *FullComponent) HasBoundTraces() bool

HasBoundTraces returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]