Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.08 KB

File metadata and controls

82 lines (45 loc) · 2.08 KB

OptionsArray

Properties

Name Type Description Notes
Label Pointer to string [optional]
Value Pointer to string [optional]

Methods

NewOptionsArray

func NewOptionsArray() *OptionsArray

NewOptionsArray instantiates a new OptionsArray 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

NewOptionsArrayWithDefaults

func NewOptionsArrayWithDefaults() *OptionsArray

NewOptionsArrayWithDefaults instantiates a new OptionsArray 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

GetLabel

func (o *OptionsArray) GetLabel() string

GetLabel returns the Label field if non-nil, zero value otherwise.

GetLabelOk

func (o *OptionsArray) GetLabelOk() (*string, bool)

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

SetLabel

func (o *OptionsArray) SetLabel(v string)

SetLabel sets Label field to given value.

HasLabel

func (o *OptionsArray) HasLabel() bool

HasLabel returns a boolean if a field has been set.

GetValue

func (o *OptionsArray) GetValue() string

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

GetValueOk

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

SetValue sets Value field to given value.

HasValue

func (o *OptionsArray) HasValue() bool

HasValue returns a boolean if a field has been set.

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