KandraPage

data class KandraPage<T>(val items: List<T>, val nextPageToken: String?, val hasMore: Boolean)

A single page of query results with a token for fetching the next page.

Parameters

nextPageToken

base64-encoded paging state; null if this is the last page

hasMore

true when more results exist beyond this page

Constructors

Link copied to clipboard
constructor(items: List<T>, nextPageToken: String?, hasMore: Boolean)

Properties

Link copied to clipboard
Link copied to clipboard
val items: List<T>
Link copied to clipboard