PaginatedCollection

data class PaginatedCollection<T>(val items: List<T>, val totalPages: Long, val totalItems: Long, val currentPage: Long)

Constructors

Link copied to clipboard
constructor(items: List<T>, totalPages: Long, totalItems: Long, currentPage: Long)

Properties

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