SortParam

data class SortParam(@Json(name = "direction") val direction: Int? = null, @Json(name = "field") val field: String? = null)

Parameters

direction

Direction of sorting, -1 for descending, 1 for ascending

field Name of field to sort by

Constructors

Link copied to clipboard
constructor(@Json(name = "direction") direction: Int? = null, @Json(name = "field") field: String? = null)

Properties

Link copied to clipboard
val direction: Int? = null
Link copied to clipboard
val field: String? = null