Name | Type | Description | Notes |
---|---|---|---|
Page | int32 | ||
PageSize | int32 | ||
Rows | []map[string]interface{} | ||
TotalRows | int32 |
func NewPaginationSchema(page int32, pageSize int32, rows []map[string]interface{}, totalRows int32, ) *PaginationSchema
NewPaginationSchema instantiates a new PaginationSchema 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
func NewPaginationSchemaWithDefaults() *PaginationSchema
NewPaginationSchemaWithDefaults instantiates a new PaginationSchema 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
func (o *PaginationSchema) GetPage() int32
GetPage returns the Page field if non-nil, zero value otherwise.
func (o *PaginationSchema) 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.
func (o *PaginationSchema) SetPage(v int32)
SetPage sets Page field to given value.
func (o *PaginationSchema) GetPageSize() int32
GetPageSize returns the PageSize field if non-nil, zero value otherwise.
func (o *PaginationSchema) 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.
func (o *PaginationSchema) SetPageSize(v int32)
SetPageSize sets PageSize field to given value.
func (o *PaginationSchema) GetRows() []map[string]interface{}
GetRows returns the Rows field if non-nil, zero value otherwise.
func (o *PaginationSchema) GetRowsOk() (*[]map[string]interface{}, bool)
GetRowsOk returns a tuple with the Rows field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PaginationSchema) SetRows(v []map[string]interface{})
SetRows sets Rows field to given value.
func (o *PaginationSchema) GetTotalRows() int32
GetTotalRows returns the TotalRows field if non-nil, zero value otherwise.
func (o *PaginationSchema) GetTotalRowsOk() (*int32, bool)
GetTotalRowsOk returns a tuple with the TotalRows field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PaginationSchema) SetTotalRows(v int32)
SetTotalRows sets TotalRows field to given value.