PageV2¶
Represents a single ‘page’ of results
data class PageV2<T>(
    val itemsPerPage: Int,
    val items: List<T>,
    val next: String?,
)
Every page contains the items from the current result set, along with information which allows the client to fetch additional information.
Properties
itemsPerPage: Int
Int
items: List<T>
List<T>NOTE: The amount of items might differ from itemsPerPage, even if there are more results. The only reliable way to
check if the end of results has been reached is by checking i next == null.
next: String?
String?