Cursor

data class Cursor(before: String?, after: String?)

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

Cursor
Link copied to clipboard
common
fun Cursor(before: String? = null, after: String? = null)
The cursor to use as key to find the previous page of items.

Functions

component1
Link copied to clipboard
common
operator fun component1(): String?
component2
Link copied to clipboard
common
operator fun component2(): String?
copy
Link copied to clipboard
common
fun copy(before: String? = null, after: String? = null): Cursor
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

after
Link copied to clipboard
common
val after: String? = null
The cursor to use as key to find the next page of items.
before
Link copied to clipboard
common
val before: String? = null
The cursor to use as key to find the previous page of items.

Sources

(source)
Link copied to clipboard