Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 5.15 KB

TagPointDataArray.md

File metadata and controls

186 lines (101 loc) · 5.15 KB

TagPointDataArray

Properties

Name Type Description Notes
AlarmStatus Pointer to string Generic label for the tag point [optional]
ReadingTime Pointer to string date time when the tag point value was read from the device. [optional]
TagDisplayName Pointer to string Generic label for the tag point [optional]
TagId Pointer to string ID for the tagPoint - Unique Identifier for the Tag Point [optional]
Uom Pointer to string Unit of measure for the data value for the tag point [optional]
Value Pointer to string Current data value for the tag point [optional]

Methods

NewTagPointDataArray

func NewTagPointDataArray() *TagPointDataArray

NewTagPointDataArray instantiates a new TagPointDataArray 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

NewTagPointDataArrayWithDefaults

func NewTagPointDataArrayWithDefaults() *TagPointDataArray

NewTagPointDataArrayWithDefaults instantiates a new TagPointDataArray 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

GetAlarmStatus

func (o *TagPointDataArray) GetAlarmStatus() string

GetAlarmStatus returns the AlarmStatus field if non-nil, zero value otherwise.

GetAlarmStatusOk

func (o *TagPointDataArray) GetAlarmStatusOk() (*string, bool)

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

SetAlarmStatus

func (o *TagPointDataArray) SetAlarmStatus(v string)

SetAlarmStatus sets AlarmStatus field to given value.

HasAlarmStatus

func (o *TagPointDataArray) HasAlarmStatus() bool

HasAlarmStatus returns a boolean if a field has been set.

GetReadingTime

func (o *TagPointDataArray) GetReadingTime() string

GetReadingTime returns the ReadingTime field if non-nil, zero value otherwise.

GetReadingTimeOk

func (o *TagPointDataArray) GetReadingTimeOk() (*string, bool)

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

SetReadingTime

func (o *TagPointDataArray) SetReadingTime(v string)

SetReadingTime sets ReadingTime field to given value.

HasReadingTime

func (o *TagPointDataArray) HasReadingTime() bool

HasReadingTime returns a boolean if a field has been set.

GetTagDisplayName

func (o *TagPointDataArray) GetTagDisplayName() string

GetTagDisplayName returns the TagDisplayName field if non-nil, zero value otherwise.

GetTagDisplayNameOk

func (o *TagPointDataArray) GetTagDisplayNameOk() (*string, bool)

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

SetTagDisplayName

func (o *TagPointDataArray) SetTagDisplayName(v string)

SetTagDisplayName sets TagDisplayName field to given value.

HasTagDisplayName

func (o *TagPointDataArray) HasTagDisplayName() bool

HasTagDisplayName returns a boolean if a field has been set.

GetTagId

func (o *TagPointDataArray) GetTagId() string

GetTagId returns the TagId field if non-nil, zero value otherwise.

GetTagIdOk

func (o *TagPointDataArray) GetTagIdOk() (*string, bool)

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

SetTagId

func (o *TagPointDataArray) SetTagId(v string)

SetTagId sets TagId field to given value.

HasTagId

func (o *TagPointDataArray) HasTagId() bool

HasTagId returns a boolean if a field has been set.

GetUom

func (o *TagPointDataArray) GetUom() string

GetUom returns the Uom field if non-nil, zero value otherwise.

GetUomOk

func (o *TagPointDataArray) GetUomOk() (*string, bool)

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

SetUom

func (o *TagPointDataArray) SetUom(v string)

SetUom sets Uom field to given value.

HasUom

func (o *TagPointDataArray) HasUom() bool

HasUom returns a boolean if a field has been set.

GetValue

func (o *TagPointDataArray) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *TagPointDataArray) GetValueOk() (*string, bool)

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.

SetValue

func (o *TagPointDataArray) SetValue(v string)

SetValue sets Value field to given value.

HasValue

func (o *TagPointDataArray) HasValue() bool

HasValue returns a boolean if a field has been set.

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