ScrollPage

@Serializable
data class ScrollPage(val points: List<Record>, val nextPageOffset: PointId? = null)

One page of scroll results plus the cursor to the next page.

Constructors

Link copied to clipboard
constructor(points: List<Record>, nextPageOffset: PointId? = null)

Properties

Link copied to clipboard
@SerialName(value = "next_page_offset")
val nextPageOffset: PointId?

Cursor for the next page, or null when the stream is exhausted.

Link copied to clipboard
@SerialName(value = "points")
val points: List<Record>