Skip to content

Latest commit

 

History

History
145 lines (78 loc) · 3.84 KB

File metadata and controls

145 lines (78 loc) · 3.84 KB

ArgumentBooleanVal

Properties

Name Type Description Notes
Type string
Id Pointer to int64 [optional]
LastUpdateTimestamp Pointer to int64 [optional]
Parameter int64
Value bool

Methods

NewArgumentBooleanVal

func NewArgumentBooleanVal(type_ string, parameter int64, value bool, ) *ArgumentBooleanVal

NewArgumentBooleanVal instantiates a new ArgumentBooleanVal 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

NewArgumentBooleanValWithDefaults

func NewArgumentBooleanValWithDefaults() *ArgumentBooleanVal

NewArgumentBooleanValWithDefaults instantiates a new ArgumentBooleanVal 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

GetType

func (o *ArgumentBooleanVal) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *ArgumentBooleanVal) GetTypeOk() (*string, bool)

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.

SetType

func (o *ArgumentBooleanVal) SetType(v string)

SetType sets Type field to given value.

GetId

func (o *ArgumentBooleanVal) GetId() int64

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

GetIdOk

func (o *ArgumentBooleanVal) 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 *ArgumentBooleanVal) SetId(v int64)

SetId sets Id field to given value.

HasId

func (o *ArgumentBooleanVal) HasId() bool

HasId returns a boolean if a field has been set.

GetLastUpdateTimestamp

func (o *ArgumentBooleanVal) GetLastUpdateTimestamp() int64

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

GetLastUpdateTimestampOk

func (o *ArgumentBooleanVal) 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 *ArgumentBooleanVal) SetLastUpdateTimestamp(v int64)

SetLastUpdateTimestamp sets LastUpdateTimestamp field to given value.

HasLastUpdateTimestamp

func (o *ArgumentBooleanVal) HasLastUpdateTimestamp() bool

HasLastUpdateTimestamp returns a boolean if a field has been set.

GetParameter

func (o *ArgumentBooleanVal) GetParameter() int64

GetParameter returns the Parameter field if non-nil, zero value otherwise.

GetParameterOk

func (o *ArgumentBooleanVal) GetParameterOk() (*int64, bool)

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

SetParameter

func (o *ArgumentBooleanVal) SetParameter(v int64)

SetParameter sets Parameter field to given value.

GetValue

func (o *ArgumentBooleanVal) GetValue() bool

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

GetValueOk

func (o *ArgumentBooleanVal) GetValueOk() (*bool, 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 *ArgumentBooleanVal) SetValue(v bool)

SetValue sets Value field to given value.

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