Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.55 KB

File metadata and controls

93 lines (50 loc) · 2.55 KB

PaginationModel

Properties

Name Type Description Notes
PageSize int32
PageNumber int32
HasNextPage bool

Methods

NewPaginationModel

func NewPaginationModel(pageSize int32, pageNumber int32, hasNextPage bool, ) *PaginationModel

NewPaginationModel instantiates a new PaginationModel 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

NewPaginationModelWithDefaults

func NewPaginationModelWithDefaults() *PaginationModel

NewPaginationModelWithDefaults instantiates a new PaginationModel 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

GetPageSize

func (o *PaginationModel) GetPageSize() int32

GetPageSize returns the PageSize field if non-nil, zero value otherwise.

GetPageSizeOk

func (o *PaginationModel) GetPageSizeOk() (*int32, bool)

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

SetPageSize

func (o *PaginationModel) SetPageSize(v int32)

SetPageSize sets PageSize field to given value.

GetPageNumber

func (o *PaginationModel) GetPageNumber() int32

GetPageNumber returns the PageNumber field if non-nil, zero value otherwise.

GetPageNumberOk

func (o *PaginationModel) GetPageNumberOk() (*int32, bool)

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

SetPageNumber

func (o *PaginationModel) SetPageNumber(v int32)

SetPageNumber sets PageNumber field to given value.

GetHasNextPage

func (o *PaginationModel) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field if non-nil, zero value otherwise.

GetHasNextPageOk

func (o *PaginationModel) GetHasNextPageOk() (*bool, bool)

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

SetHasNextPage

func (o *PaginationModel) SetHasNextPage(v bool)

SetHasNextPage sets HasNextPage field to given value.

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