Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.44 KB

Tag.md

File metadata and controls

134 lines (73 loc) · 3.44 KB

Tag

Properties

Name Type Description Notes
TagId Pointer to int32 [optional] [readonly]
TagName string
Tagcolor int32
TagAssignedToUserId Pointer to NullableInt32 [optional]

Methods

NewTag

func NewTag(tagName string, tagcolor int32, ) *Tag

NewTag instantiates a new Tag 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

NewTagWithDefaults

func NewTagWithDefaults() *Tag

NewTagWithDefaults instantiates a new Tag 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

GetTagId

func (o *Tag) GetTagId() int32

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

GetTagIdOk

func (o *Tag) GetTagIdOk() (*int32, 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 *Tag) SetTagId(v int32)

SetTagId sets TagId field to given value.

HasTagId

func (o *Tag) HasTagId() bool

HasTagId returns a boolean if a field has been set.

GetTagName

func (o *Tag) GetTagName() string

GetTagName returns the TagName field if non-nil, zero value otherwise.

GetTagNameOk

func (o *Tag) GetTagNameOk() (*string, bool)

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

SetTagName

func (o *Tag) SetTagName(v string)

SetTagName sets TagName field to given value.

GetTagcolor

func (o *Tag) GetTagcolor() int32

GetTagcolor returns the Tagcolor field if non-nil, zero value otherwise.

GetTagcolorOk

func (o *Tag) GetTagcolorOk() (*int32, bool)

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

SetTagcolor

func (o *Tag) SetTagcolor(v int32)

SetTagcolor sets Tagcolor field to given value.

GetTagAssignedToUserId

func (o *Tag) GetTagAssignedToUserId() int32

GetTagAssignedToUserId returns the TagAssignedToUserId field if non-nil, zero value otherwise.

GetTagAssignedToUserIdOk

func (o *Tag) GetTagAssignedToUserIdOk() (*int32, bool)

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

SetTagAssignedToUserId

func (o *Tag) SetTagAssignedToUserId(v int32)

SetTagAssignedToUserId sets TagAssignedToUserId field to given value.

HasTagAssignedToUserId

func (o *Tag) HasTagAssignedToUserId() bool

HasTagAssignedToUserId returns a boolean if a field has been set.

SetTagAssignedToUserIdNil

func (o *Tag) SetTagAssignedToUserIdNil(b bool)

SetTagAssignedToUserIdNil sets the value for TagAssignedToUserId to be an explicit nil

UnsetTagAssignedToUserId

func (o *Tag) UnsetTagAssignedToUserId()

UnsetTagAssignedToUserId ensures that no value is present for TagAssignedToUserId, not even an explicit nil

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