PaginatedRequestParams

data class PaginatedRequestParams(val cursor: String? = null, val meta: RequestMeta? = null) : RequestParams(source)

Common parameters for paginated requests.

Constructors

Link copied to clipboard
constructor(cursor: String? = null, meta: RequestMeta? = null)

Properties

Link copied to clipboard

An opaque token representing the current pagination position. If provided, the server should return results starting after this cursor.

Link copied to clipboard
@SerialName(value = "_meta")
open override val meta: RequestMeta?

Optional metadata for this request. May include a progressToken for out-of-band progress notifications.