Pagination

@Serializable
data class Pagination(val cursor: String? = null, val limit: Long? = null)

Pagination options for controlling the number of results returned.

Constructors

Link copied to clipboard
constructor(cursor: String? = null, limit: Long? = null)

Properties

Link copied to clipboard

Continuation token from a previous response for fetching the next page. When provided, startLedger and endLedger must be omitted.

Link copied to clipboard
val limit: Long?

Maximum number of events to return (default 100, max 10000).