Skip to content

Latest commit

 

History

History
145 lines (78 loc) · 3.87 KB

File metadata and controls

145 lines (78 loc) · 3.87 KB

MonitorFunction

Properties

Name Type Description Notes
Id int64
Name string
Identifier Pointer to string [optional]
Description Pointer to string [optional]
LastUpdateTimestamp int64

Methods

NewMonitorFunction

func NewMonitorFunction(id int64, name string, lastUpdateTimestamp int64, ) *MonitorFunction

NewMonitorFunction instantiates a new MonitorFunction 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

NewMonitorFunctionWithDefaults

func NewMonitorFunctionWithDefaults() *MonitorFunction

NewMonitorFunctionWithDefaults instantiates a new MonitorFunction 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

GetId

func (o *MonitorFunction) GetId() int64

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *MonitorFunction) GetIdOk() (*int64, bool)

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.

SetId

func (o *MonitorFunction) SetId(v int64)

SetId sets Id field to given value.

GetName

func (o *MonitorFunction) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *MonitorFunction) GetNameOk() (*string, bool)

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.

SetName

func (o *MonitorFunction) SetName(v string)

SetName sets Name field to given value.

GetIdentifier

func (o *MonitorFunction) GetIdentifier() string

GetIdentifier returns the Identifier field if non-nil, zero value otherwise.

GetIdentifierOk

func (o *MonitorFunction) GetIdentifierOk() (*string, bool)

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

SetIdentifier

func (o *MonitorFunction) SetIdentifier(v string)

SetIdentifier sets Identifier field to given value.

HasIdentifier

func (o *MonitorFunction) HasIdentifier() bool

HasIdentifier returns a boolean if a field has been set.

GetDescription

func (o *MonitorFunction) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *MonitorFunction) GetDescriptionOk() (*string, bool)

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.

SetDescription

func (o *MonitorFunction) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *MonitorFunction) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetLastUpdateTimestamp

func (o *MonitorFunction) GetLastUpdateTimestamp() int64

GetLastUpdateTimestamp returns the LastUpdateTimestamp field if non-nil, zero value otherwise.

GetLastUpdateTimestampOk

func (o *MonitorFunction) GetLastUpdateTimestampOk() (*int64, bool)

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

SetLastUpdateTimestamp

func (o *MonitorFunction) SetLastUpdateTimestamp(v int64)

SetLastUpdateTimestamp sets LastUpdateTimestamp field to given value.

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