Skip to content

Latest commit

 

History

History
135 lines (72 loc) · 3.42 KB

File metadata and controls

135 lines (72 loc) · 3.42 KB

PersesGridItem

Properties

Name Type Description Notes
X int32 The x-coordinate of the item in the grid.
Y int32 The y-coordinate of the item in the grid.
Width int32 The width of the item in the grid.
Height int32 The height of the item in the grid.
Content PersesJSONRef

Methods

NewPersesGridItem

func NewPersesGridItem(x int32, y int32, width int32, height int32, content PersesJSONRef, ) *PersesGridItem

NewPersesGridItem instantiates a new PersesGridItem 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

NewPersesGridItemWithDefaults

func NewPersesGridItemWithDefaults() *PersesGridItem

NewPersesGridItemWithDefaults instantiates a new PersesGridItem 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

GetX

func (o *PersesGridItem) GetX() int32

GetX returns the X field if non-nil, zero value otherwise.

GetXOk

func (o *PersesGridItem) GetXOk() (*int32, bool)

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

SetX

func (o *PersesGridItem) SetX(v int32)

SetX sets X field to given value.

GetY

func (o *PersesGridItem) GetY() int32

GetY returns the Y field if non-nil, zero value otherwise.

GetYOk

func (o *PersesGridItem) GetYOk() (*int32, bool)

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

SetY

func (o *PersesGridItem) SetY(v int32)

SetY sets Y field to given value.

GetWidth

func (o *PersesGridItem) GetWidth() int32

GetWidth returns the Width field if non-nil, zero value otherwise.

GetWidthOk

func (o *PersesGridItem) GetWidthOk() (*int32, bool)

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

SetWidth

func (o *PersesGridItem) SetWidth(v int32)

SetWidth sets Width field to given value.

GetHeight

func (o *PersesGridItem) GetHeight() int32

GetHeight returns the Height field if non-nil, zero value otherwise.

GetHeightOk

func (o *PersesGridItem) GetHeightOk() (*int32, bool)

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

SetHeight

func (o *PersesGridItem) SetHeight(v int32)

SetHeight sets Height field to given value.

GetContent

func (o *PersesGridItem) GetContent() PersesJSONRef

GetContent returns the Content field if non-nil, zero value otherwise.

GetContentOk

func (o *PersesGridItem) GetContentOk() (*PersesJSONRef, bool)

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

SetContent

func (o *PersesGridItem) SetContent(v PersesJSONRef)

SetContent sets Content field to given value.

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