OrderedPaginatedResult

open class OrderedPaginatedResult<T, R>(val ordering: List<R>, total: Int, limit: Int, page: Int, list: List<T>) : PaginatedResult<T>

Constructors

Link copied to clipboard
constructor(ordering: List<R>, total: Int, limit: Int, page: Int, list: List<T>)

Properties

Link copied to clipboard
val limit: Int
Link copied to clipboard
val list: List<T>
Link copied to clipboard
Link copied to clipboard
val page: Int
Link copied to clipboard
val total: Int

Functions

Link copied to clipboard
open override fun toString(): String