Paged

interface Paged<out Token, out ItemType> : Iterable<ItemType>

Represents a Paged response

Properties

Link copied to clipboard
abstract val items: List<ItemType>

Functions

Link copied to clipboard
open operator override fun iterator(): Iterator<ItemType>
Link copied to clipboard
abstract fun token(): Token?