Package-level declarations

Types

Link copied to clipboard
data class Schedule(val id: Int = INT_INVALID, val orderId: Int = INT_INVALID, val dockId: Int = INT_INVALID, val sequence: Int = INT_INVALID, val stateName: String = EMPTY_STR, val job: JobType = JobType.UNKNOWN, val dateInit: String = EMPTY_STR, val dateEnd: String = EMPTY_STR, val hourInit: String = EMPTY_STR, val hourEnd: String = EMPTY_STR, val capacityInfo: List<CapacityInfo> = emptyList(), val arrivalQueueDate: String = EMPTY_STR, val arrivalQueueHour: String = EMPTY_STR, val dateEventInit: String = EMPTY_STR, val hourEventInit: String = EMPTY_STR, val dateEventEnd: String = EMPTY_STR, val hourEventEnd: String = EMPTY_STR, val companyId: Int = INT_INVALID, val addedOnDate: String = EMPTY_STR, val updateOnDate: String = EMPTY_STR)

Schedule is the data model for the schedule.

Link copied to clipboard
data class ScheduleFilters(val ids: List<Int>? = null, val orderIds: List<Int>? = null, val dockIds: List<Int>? = null, val sequences: List<Int>? = null, val stateNames: List<String>? = null, val jobs: List<JobType>? = null, val dateInit: List<String>? = null, val dateEnd: List<String>? = null, val hourInit: List<String>? = null, val hourEnd: List<String>? = null, val arrivalQueueDate: List<String>? = null, val arrivalQueueHour: List<String>? = null, val dateEventInit: List<String>? = null, val hourEventInit: List<String>? = null, val dateEventEnd: List<String>? = null, val hourEventEnd: List<String>? = null, val companyIds: List<Int>? = null, val addedOnDates: List<String>? = null, val updateOnDates: List<String>? = null)

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

Link copied to clipboard
data class ScheduleOrderSort(val id: ApiSortType? = null, val orderId: ApiSortType? = null, val dockId: ApiSortType? = null, val sequence: ApiSortType? = null, val stateName: ApiSortType? = null, val job: ApiSortType? = null, val dateInit: ApiSortType? = null, val dateEnd: ApiSortType? = null, val hourInit: ApiSortType? = null, val hourEnd: ApiSortType? = null, val capacityInfo: ApiSortType? = null, val arrivalQueueDate: ApiSortType? = null, val arrivalQueueHour: ApiSortType? = null, val dateEventInit: ApiSortType? = null, val hourEventInit: ApiSortType? = null, val dateEventEnd: ApiSortType? = null, val hourEventEnd: ApiSortType? = null, val companyId: ApiSortType? = null, val addedOnDate: ApiSortType? = null, val updateOnDate: ApiSortType? = null)

ScheduleOrderSort is a data class that represents the order to sort the Schedule registers on the API.