Package-level declarations

Types

Link copied to clipboard
data class Port(val id: Int = INT_INVALID, val name: String = EMPTY_STR, val description: String = EMPTY_STR, val identification: String = EMPTY_STR, val country: String = EMPTY_STR, val department: String = EMPTY_STR, val city: String = EMPTY_STR, val address: String = EMPTY_STR, val latitude: Double = DOUBLE_INVALID, val longitude: Double = DOUBLE_INVALID, val dockIds: List<Int> = emptyList(), val entranceRadiusMeters: Int = INT_INVALID, val departureRadiusMeters: Int = INT_INVALID, val status: PlaceStatusType = PlaceStatusType.UNKNOWN, val companyId: Int = INT_INVALID, val addedOnDate: String = EMPTY_STR, val updateOnDate: String = EMPTY_STR)

Port is the data model for a port.

Link copied to clipboard
data class PortFilters(val ids: List<Int>? = null, val names: List<String>? = null, val descriptions: List<String>? = null, val identifications: List<String>? = null, val countries: List<String>? = null, val departments: List<String>? = null, val cities: List<String>? = null, val address: List<String>? = null, val latitudes: List<Double>? = null, val longitudes: List<Double>? = null, val dockIds: List<Int>? = null, val entranceRadiusMeters: List<Int>? = null, val departureRadiusMeters: List<Int>? = null, val status: List<PlaceStatusType>? = null, val companyIds: List<Int>? = null, val addedOnDates: List<String>? = null, val updateOnDates: List<String>? = null)

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

Link copied to clipboard
data class PortOrderSort(val id: ApiSortType? = null, val name: ApiSortType? = null, val description: ApiSortType? = null, val identification: ApiSortType? = null, val country: ApiSortType? = null, val department: ApiSortType? = null, val city: ApiSortType? = null, val address: ApiSortType? = null, val latitude: ApiSortType? = null, val longitude: ApiSortType? = null, val dockIds: ApiSortType? = null, val entranceRadiusMeters: ApiSortType? = null, val departureRadiusMeters: ApiSortType? = null, val status: ApiSortType? = null, val companyId: ApiSortType? = null, val addedOnDate: ApiSortType? = null, val updateOnDate: ApiSortType? = null)

PortOrderSort is a data class that represents the order to sort the Port registers on the API.