Cursor

@Serializable
data class Cursor(val before: String? = null, val after: String? = null)(source)

The cursor to use as key to find the next (or previous) page of items.

Parameters

before

The cursor to use as key to find the previous page of items.

after

The cursor to use as key to find the next page of items.

Constructors

Link copied to clipboard
constructor(before: String? = null, after: String? = null)

Properties

Link copied to clipboard
val after: String? = null
Link copied to clipboard
val before: String? = null