Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.08 KB

File metadata and controls

134 lines (73 loc) · 3.08 KB

View

Properties

Name Type Description Notes
Id Pointer to int32 [optional]
Title Pointer to string [optional]
ProjectId Pointer to int32 [optional]
Position Pointer to int32 [optional]

Methods

NewView

func NewView() *View

NewView instantiates a new View 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

NewViewWithDefaults

func NewViewWithDefaults() *View

NewViewWithDefaults instantiates a new View 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

GetId

func (o *View) GetId() int32

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *View) GetIdOk() (*int32, bool)

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

SetId

func (o *View) SetId(v int32)

SetId sets Id field to given value.

HasId

func (o *View) HasId() bool

HasId returns a boolean if a field has been set.

GetTitle

func (o *View) GetTitle() string

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

GetTitleOk

func (o *View) 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 *View) SetTitle(v string)

SetTitle sets Title field to given value.

HasTitle

func (o *View) HasTitle() bool

HasTitle returns a boolean if a field has been set.

GetProjectId

func (o *View) GetProjectId() int32

GetProjectId returns the ProjectId field if non-nil, zero value otherwise.

GetProjectIdOk

func (o *View) GetProjectIdOk() (*int32, bool)

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

SetProjectId

func (o *View) SetProjectId(v int32)

SetProjectId sets ProjectId field to given value.

HasProjectId

func (o *View) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

GetPosition

func (o *View) GetPosition() int32

GetPosition returns the Position field if non-nil, zero value otherwise.

GetPositionOk

func (o *View) GetPositionOk() (*int32, bool)

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

SetPosition

func (o *View) SetPosition(v int32)

SetPosition sets Position field to given value.

HasPosition

func (o *View) HasPosition() bool

HasPosition returns a boolean if a field has been set.

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