Skip to content

Latest commit

 

History

History
65 lines (34 loc) · 1.69 KB

NewPicklist.md

File metadata and controls

65 lines (34 loc) · 1.69 KB

NewPicklist

Properties

Name Type Description Notes
Type Pointer to string The type of allowed values in the picklist. If the type `time` is chosen, it must be an RFC3339 timestamp string.
Values Pointer to []string The list of allowed values provided by this picklist.

Methods

GetType

func (o *NewPicklist) GetType() string

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

GetTypeOk

func (o *NewPicklist) 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.

HasType

func (o *NewPicklist) HasType() bool

HasType returns a boolean if a field has been set.

SetType

func (o *NewPicklist) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

GetValues

func (o *NewPicklist) GetValues() []string

GetValues returns the Values field if non-nil, zero value otherwise.

GetValuesOk

func (o *NewPicklist) GetValuesOk() ([]string, bool)

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

HasValues

func (o *NewPicklist) HasValues() bool

HasValues returns a boolean if a field has been set.

SetValues

func (o *NewPicklist) SetValues(v []string)

SetValues gets a reference to the given []string and assigns it to the Values field.

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