Name | Type | Description | Notes |
---|---|---|---|
Key | Pointer to string | [optional] | |
Description | Pointer to NullableString | The description of the variable. New in version 2.4.0 | [optional] |
Value | Pointer to string | [optional] |
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
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
func (o *Variable) GetKey() string
GetKey returns the Key field if non-nil, zero value otherwise.
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.
func (o *Variable) SetKey(v string)
SetKey sets Key field to given value.
func (o *Variable) HasKey() bool
HasKey returns a boolean if a field has been set.
func (o *Variable) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
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.
func (o *Variable) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *Variable) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *Variable) SetDescriptionNil(b bool)
SetDescriptionNil sets the value for Description to be an explicit nil
func (o *Variable) UnsetDescription()
UnsetDescription ensures that no value is present for Description, not even an explicit nil
func (o *Variable) GetValue() string
GetValue returns the Value field if non-nil, zero value otherwise.
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.
func (o *Variable) SetValue(v string)
SetValue sets Value field to given value.
func (o *Variable) HasValue() bool
HasValue returns a boolean if a field has been set.