PNBoundedPage

data class PNBoundedPage(val start: Long? = null, val end: Long? = null, val limit: Int? = null)

The paging object used for pagination

Parameters

start

Timetoken denoting the start of the range requested (return values will be less than start).

end

Timetoken denoting the end of the range requested (return values will be greater than or equal to end).

limit

Specifies the number of items to return in response.

Constructors

Link copied to clipboard
constructor(start: Long? = null, end: Long? = null, limit: Int? = null)

Properties

Link copied to clipboard
val end: Long?
Link copied to clipboard
val limit: Int?
Link copied to clipboard
val start: Long?