Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.92 KB

PaginationData.md

File metadata and controls

72 lines (39 loc) · 1.92 KB

PaginationData

Properties

Name Type Description Notes
Page float32
PageSize float32

Methods

NewPaginationData

func NewPaginationData(page float32, pageSize float32, ) *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() float32

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

GetPageOk

func (o *PaginationData) GetPageOk() (*float32, 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 float32)

SetPage sets Page field to given value.

GetPageSize

func (o *PaginationData) GetPageSize() float32

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

GetPageSizeOk

func (o *PaginationData) GetPageSizeOk() (*float32, 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 *PaginationData) SetPageSize(v float32)

SetPageSize sets PageSize field to given value.

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