Variable

Properties

NameTypeDescriptionNotes
KeyPointer to string[optional]
DescriptionPointer to NullableStringThe description of the variable. New in version 2.4.0[optional]
ValuePointer to string[optional]

Methods

NewVariable

func NewVariable() *Variable

NewVariable instantiates a new Variable 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

NewVariableWithDefaults

func NewVariableWithDefaults() *Variable

NewVariableWithDefaults instantiates a new Variable 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

GetKey

func (o *Variable) GetKey() string

GetKey returns the Key field if non-nil, zero value otherwise.

GetKeyOk

func (o *Variable) GetKeyOk() (*string, bool)

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.

SetKey

func (o *Variable) SetKey(v string)

SetKey sets Key field to given value.

HasKey

func (o *Variable) HasKey() bool

HasKey returns a boolean if a field has been set.

GetDescription

func (o *Variable) GetDescription() string

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

GetDescriptionOk

func (o *Variable) 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 *Variable) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *Variable) HasDescription() bool

HasDescription returns a boolean if a field has been set.

SetDescriptionNil

func (o *Variable) SetDescriptionNil(b bool)

SetDescriptionNil sets the value for Description to be an explicit nil

UnsetDescription

func (o *Variable) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

GetValue

func (o *Variable) GetValue() string

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

GetValueOk

func (o *Variable) 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 *Variable) SetValue(v string)

SetValue sets Value field to given value.

HasValue

func (o *Variable) HasValue() bool

HasValue returns a boolean if a field has been set.

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