Skip to content

Latest commit

History

History
212 lines (115 loc) 路 5.18 KB

ListsModelV1.md

File metadata and controls

212 lines (115 loc) 路 5.18 KB

ListsModelV1

Properties

Name Type Description Notes
ListId Pointer to int64 [optional]
Title Pointer to string [optional]
Description Pointer to string [optional]
Type Pointer to string [optional]
Icon Pointer to string [optional]
Custom Pointer to bool [optional]
Options Pointer to ListsModelV1Options [optional]

Methods

NewListsModelV1

func NewListsModelV1() *ListsModelV1

NewListsModelV1 instantiates a new ListsModelV1 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

NewListsModelV1WithDefaults

func NewListsModelV1WithDefaults() *ListsModelV1

NewListsModelV1WithDefaults instantiates a new ListsModelV1 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

GetListId

func (o *ListsModelV1) GetListId() int64

GetListId returns the ListId field if non-nil, zero value otherwise.

GetListIdOk

func (o *ListsModelV1) GetListIdOk() (*int64, bool)

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

SetListId

func (o *ListsModelV1) SetListId(v int64)

SetListId sets ListId field to given value.

HasListId

func (o *ListsModelV1) HasListId() bool

HasListId returns a boolean if a field has been set.

GetTitle

func (o *ListsModelV1) GetTitle() string

GetTitle returns the Title field if non-nil, zero value otherwise.

GetTitleOk

func (o *ListsModelV1) GetTitleOk() (*string, bool)

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

SetTitle

func (o *ListsModelV1) SetTitle(v string)

SetTitle sets Title field to given value.

HasTitle

func (o *ListsModelV1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

GetDescription

func (o *ListsModelV1) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *ListsModelV1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetType

func (o *ListsModelV1) GetType() string

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

GetTypeOk

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

SetType

func (o *ListsModelV1) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *ListsModelV1) HasType() bool

HasType returns a boolean if a field has been set.

GetIcon

func (o *ListsModelV1) GetIcon() string

GetIcon returns the Icon field if non-nil, zero value otherwise.

GetIconOk

func (o *ListsModelV1) GetIconOk() (*string, bool)

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

SetIcon

func (o *ListsModelV1) SetIcon(v string)

SetIcon sets Icon field to given value.

HasIcon

func (o *ListsModelV1) HasIcon() bool

HasIcon returns a boolean if a field has been set.

GetCustom

func (o *ListsModelV1) GetCustom() bool

GetCustom returns the Custom field if non-nil, zero value otherwise.

GetCustomOk

func (o *ListsModelV1) GetCustomOk() (*bool, bool)

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

SetCustom

func (o *ListsModelV1) SetCustom(v bool)

SetCustom sets Custom field to given value.

HasCustom

func (o *ListsModelV1) HasCustom() bool

HasCustom returns a boolean if a field has been set.

GetOptions

func (o *ListsModelV1) GetOptions() ListsModelV1Options

GetOptions returns the Options field if non-nil, zero value otherwise.

GetOptionsOk

func (o *ListsModelV1) GetOptionsOk() (*ListsModelV1Options, bool)

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

SetOptions

func (o *ListsModelV1) SetOptions(v ListsModelV1Options)

SetOptions sets Options field to given value.

HasOptions

func (o *ListsModelV1) HasOptions() bool

HasOptions returns a boolean if a field has been set.

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