Package-level declarations

Types

Link copied to clipboard
data class Company(val id: Int = INT_INVALID, val name: String = EMPTY_STR)

Company is the data model for a company.

Link copied to clipboard
data class CompanyFilters(val ids: List<Int>? = null, val names: List<String>? = null)

CompanyFilters is a data class that represents the filters to apply on the API search to get the Company registers.

Link copied to clipboard
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.