CompanyOrderSort

data class CompanyOrderSort(val id: ApiSortType? = null, val name: ApiSortType? = null)

CompanyOrderSort is a data class that represents the order to sort the Company registers on the API.

Constructors

Link copied to clipboard
constructor(id: ApiSortType? = null, name: ApiSortType? = null)

Properties

Link copied to clipboard
val id: ApiSortType? = null

ApiSortType if wants to sort by the id property. If null, it will not be sorted by the id property.

Link copied to clipboard
val name: ApiSortType? = null

ApiSortType if wants to sort by the name property. If null, it will not be sorted by the name property.