PageQuery

data class PageQuery(@Json(name = "pageNumber") val pageNumber: Int? = 0, @Json(name = "pageSize") val pageSize: Int? = null)

Parameters

pageNumber

The index of the page to retrieve. The first page's index is zero.

pageSize

The maximum number of elements to include in the fetched page.

Constructors

Link copied to clipboard
constructor(@Json(name = "pageNumber") pageNumber: Int? = 0, @Json(name = "pageSize") pageSize: Int? = null)

Properties

Link copied to clipboard
val pageNumber: Int? = 0
Link copied to clipboard
val pageSize: Int? = null