PaginationArgs

data class PaginationArgs(val offset: Int? = null, val limit: Int? = null)

Controls the number of results that are returned and the starting position of those results.

Constructors

Link copied to clipboard
constructor(offset: Int? = null, limit: Int? = null)

Properties

Link copied to clipboard
val limit: Int? = null

Specifies the maximum number of items or records to return in a query result. Default is 25.

Link copied to clipboard
val offset: Int? = null

Specifies the starting position of the query result within the set of data. Default is 0.