Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.08 KB

Page.md

File metadata and controls

134 lines (73 loc) · 3.08 KB

Page

Properties

Name Type Description Notes
Skip Pointer to int32 [optional]
Limit Pointer to int32 [optional]
Count Pointer to int32 [optional]
ObjectType Pointer to string [optional]

Methods

NewPage

func NewPage() *Page

NewPage instantiates a new Page 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

NewPageWithDefaults

func NewPageWithDefaults() *Page

NewPageWithDefaults instantiates a new Page 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

GetSkip

func (o *Page) GetSkip() int32

GetSkip returns the Skip field if non-nil, zero value otherwise.

GetSkipOk

func (o *Page) GetSkipOk() (*int32, bool)

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

SetSkip

func (o *Page) SetSkip(v int32)

SetSkip sets Skip field to given value.

HasSkip

func (o *Page) HasSkip() bool

HasSkip returns a boolean if a field has been set.

GetLimit

func (o *Page) GetLimit() int32

GetLimit returns the Limit field if non-nil, zero value otherwise.

GetLimitOk

func (o *Page) GetLimitOk() (*int32, bool)

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

SetLimit

func (o *Page) SetLimit(v int32)

SetLimit sets Limit field to given value.

HasLimit

func (o *Page) HasLimit() bool

HasLimit returns a boolean if a field has been set.

GetCount

func (o *Page) GetCount() int32

GetCount returns the Count field if non-nil, zero value otherwise.

GetCountOk

func (o *Page) GetCountOk() (*int32, bool)

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

SetCount

func (o *Page) SetCount(v int32)

SetCount sets Count field to given value.

HasCount

func (o *Page) HasCount() bool

HasCount returns a boolean if a field has been set.

GetObjectType

func (o *Page) GetObjectType() string

GetObjectType returns the ObjectType field if non-nil, zero value otherwise.

GetObjectTypeOk

func (o *Page) GetObjectTypeOk() (*string, bool)

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

SetObjectType

func (o *Page) SetObjectType(v string)

SetObjectType sets ObjectType field to given value.

HasObjectType

func (o *Page) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

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