SearchResult

@Serializable
data class SearchResult<T>(val total: Int, val perPage: Int, val order: Int, val results: List<T>)(source)

Constructors

Link copied to clipboard
constructor(total: Int, perPage: Int, order: Int, results: List<T>)

Properties

Link copied to clipboard
val order: Int
Link copied to clipboard
Link copied to clipboard
val results: List<T>
Link copied to clipboard
val total: Int