ResultPage

data class ResultPage<T : Any>(val results: List<T>, val nextPagination: Pagination?)

A page of results.

Constructors

Link copied to clipboard
constructor(results: List<T>, nextPagination: Pagination?)

Properties

Link copied to clipboard

Next Pagination (if any), that can be used to retrieve the next page. This will be null if this page is the last page.

Link copied to clipboard

The actual items of that page.