Skip to content

Latest commit

 

History

History
154 lines (85 loc) · 3.93 KB

SettingTagModel.md

File metadata and controls

154 lines (85 loc) · 3.93 KB

SettingTagModel

Properties

Name Type Description Notes
SettingTagId Pointer to int64 [optional]
TagId Pointer to int64 [optional]
Name Pointer to NullableString [optional]
Color Pointer to NullableString [optional]

Methods

NewSettingTagModel

func NewSettingTagModel() *SettingTagModel

NewSettingTagModel instantiates a new SettingTagModel 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

NewSettingTagModelWithDefaults

func NewSettingTagModelWithDefaults() *SettingTagModel

NewSettingTagModelWithDefaults instantiates a new SettingTagModel 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

GetSettingTagId

func (o *SettingTagModel) GetSettingTagId() int64

GetSettingTagId returns the SettingTagId field if non-nil, zero value otherwise.

GetSettingTagIdOk

func (o *SettingTagModel) GetSettingTagIdOk() (*int64, bool)

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

SetSettingTagId

func (o *SettingTagModel) SetSettingTagId(v int64)

SetSettingTagId sets SettingTagId field to given value.

HasSettingTagId

func (o *SettingTagModel) HasSettingTagId() bool

HasSettingTagId returns a boolean if a field has been set.

GetTagId

func (o *SettingTagModel) GetTagId() int64

GetTagId returns the TagId field if non-nil, zero value otherwise.

GetTagIdOk

func (o *SettingTagModel) GetTagIdOk() (*int64, bool)

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

SetTagId

func (o *SettingTagModel) SetTagId(v int64)

SetTagId sets TagId field to given value.

HasTagId

func (o *SettingTagModel) HasTagId() bool

HasTagId returns a boolean if a field has been set.

GetName

func (o *SettingTagModel) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *SettingTagModel) GetNameOk() (*string, bool)

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

SetName

func (o *SettingTagModel) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *SettingTagModel) HasName() bool

HasName returns a boolean if a field has been set.

SetNameNil

func (o *SettingTagModel) SetNameNil(b bool)

SetNameNil sets the value for Name to be an explicit nil

UnsetName

func (o *SettingTagModel) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

GetColor

func (o *SettingTagModel) GetColor() string

GetColor returns the Color field if non-nil, zero value otherwise.

GetColorOk

func (o *SettingTagModel) GetColorOk() (*string, bool)

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

SetColor

func (o *SettingTagModel) SetColor(v string)

SetColor sets Color field to given value.

HasColor

func (o *SettingTagModel) HasColor() bool

HasColor returns a boolean if a field has been set.

SetColorNil

func (o *SettingTagModel) SetColorNil(b bool)

SetColorNil sets the value for Color to be an explicit nil

UnsetColor

func (o *SettingTagModel) UnsetColor()

UnsetColor ensures that no value is present for Color, not even an explicit nil

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