Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.71 KB

File metadata and controls

108 lines (59 loc) · 2.71 KB

PaginationData

Properties

Name Type Description Notes
Page Pointer to int32 [optional]
Pages Pointer to int32 [optional]
PerPage Pointer to int32 [optional]

Methods

NewPaginationData

func NewPaginationData() *PaginationData

NewPaginationData instantiates a new PaginationData 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

NewPaginationDataWithDefaults

func NewPaginationDataWithDefaults() *PaginationData

NewPaginationDataWithDefaults instantiates a new PaginationData 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

GetPage

func (o *PaginationData) GetPage() int32

GetPage returns the Page field if non-nil, zero value otherwise.

GetPageOk

func (o *PaginationData) GetPageOk() (*int32, bool)

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

SetPage

func (o *PaginationData) SetPage(v int32)

SetPage sets Page field to given value.

HasPage

func (o *PaginationData) HasPage() bool

HasPage returns a boolean if a field has been set.

GetPages

func (o *PaginationData) GetPages() int32

GetPages returns the Pages field if non-nil, zero value otherwise.

GetPagesOk

func (o *PaginationData) GetPagesOk() (*int32, bool)

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

SetPages

func (o *PaginationData) SetPages(v int32)

SetPages sets Pages field to given value.

HasPages

func (o *PaginationData) HasPages() bool

HasPages returns a boolean if a field has been set.

GetPerPage

func (o *PaginationData) GetPerPage() int32

GetPerPage returns the PerPage field if non-nil, zero value otherwise.

GetPerPageOk

func (o *PaginationData) GetPerPageOk() (*int32, bool)

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

SetPerPage

func (o *PaginationData) SetPerPage(v int32)

SetPerPage sets PerPage field to given value.

HasPerPage

func (o *PaginationData) HasPerPage() bool

HasPerPage returns a boolean if a field has been set.

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