Skip to content

Latest commit

 

History

History
138 lines (77 loc) · 3.52 KB

Condition.md

File metadata and controls

138 lines (77 loc) · 3.52 KB

Condition

Properties

Name Type Description Notes
Attribute Pointer to NullableString [optional]
Operator Pointer to NullableString [optional]
Value Pointer to NullableString [optional]

Methods

NewCondition

func NewCondition() *Condition

NewCondition instantiates a new Condition 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

NewConditionWithDefaults

func NewConditionWithDefaults() *Condition

NewConditionWithDefaults instantiates a new Condition 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

GetAttribute

func (o *Condition) GetAttribute() string

GetAttribute returns the Attribute field if non-nil, zero value otherwise.

GetAttributeOk

func (o *Condition) GetAttributeOk() (*string, bool)

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

SetAttribute

func (o *Condition) SetAttribute(v string)

SetAttribute sets Attribute field to given value.

HasAttribute

func (o *Condition) HasAttribute() bool

HasAttribute returns a boolean if a field has been set.

SetAttributeNil

func (o *Condition) SetAttributeNil(b bool)

SetAttributeNil sets the value for Attribute to be an explicit nil

UnsetAttribute

func (o *Condition) UnsetAttribute()

UnsetAttribute ensures that no value is present for Attribute, not even an explicit nil

GetOperator

func (o *Condition) GetOperator() string

GetOperator returns the Operator field if non-nil, zero value otherwise.

GetOperatorOk

func (o *Condition) GetOperatorOk() (*string, bool)

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

SetOperator

func (o *Condition) SetOperator(v string)

SetOperator sets Operator field to given value.

HasOperator

func (o *Condition) HasOperator() bool

HasOperator returns a boolean if a field has been set.

SetOperatorNil

func (o *Condition) SetOperatorNil(b bool)

SetOperatorNil sets the value for Operator to be an explicit nil

UnsetOperator

func (o *Condition) UnsetOperator()

UnsetOperator ensures that no value is present for Operator, not even an explicit nil

GetValue

func (o *Condition) GetValue() string

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

GetValueOk

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

SetValue sets Value field to given value.

HasValue

func (o *Condition) HasValue() bool

HasValue returns a boolean if a field has been set.

SetValueNil

func (o *Condition) SetValueNil(b bool)

SetValueNil sets the value for Value to be an explicit nil

UnsetValue

func (o *Condition) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

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