Paged

data class Paged<T>(items: List<T>, hasNextPage: Boolean, nextPageKey: String?)

Functions

nextPageKey
Link copied to clipboard
fun nextPageKey(): String?

If there is a next page available the next page key will not be null.

Properties

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