OrderData

data class OrderData(val id: Int, val routeId: Int, val companyId: Int, val state: OrderState, val priority: Int, val totalOperators: Int, val identifier: String, val businessUnit: String, val shipment: List<ShipmentInfo>, val dateInit: String, val edaOrigin: String, val edaDestination: String, val etaDestination: String, val skillId: List<Int>, val fleet: FleetType, val loadType: LoadType, val resourceId: List<Int>, val truckId: Int, val operatorId: List<Int>, val addedOn: String, val updateOn: String)

OrderData is the data model for the order.

Constructors

Link copied to clipboard
constructor(id: Int, routeId: Int, companyId: Int, state: OrderState, priority: Int, totalOperators: Int, identifier: String, businessUnit: String, shipment: List<ShipmentInfo>, dateInit: String, edaOrigin: String, edaDestination: String, etaDestination: String, skillId: List<Int>, fleet: FleetType, loadType: LoadType, resourceId: List<Int>, truckId: Int, operatorId: List<Int>, addedOn: String, updateOn: String)

Properties

Link copied to clipboard

String The added on.

Link copied to clipboard

String The business unit.

Link copied to clipboard

Int The company id.

Link copied to clipboard

String The date init.

Link copied to clipboard

String The eda destination.

Link copied to clipboard

String The eda origin.

Link copied to clipboard

String The eta destination.

Link copied to clipboard

FleetType The fleet type.

Link copied to clipboard
val id: Int

Int The order record id.

Link copied to clipboard

String The identifier.

Link copied to clipboard

LoadType The load type.

Link copied to clipboard

List<Int> The operator id.

Link copied to clipboard

Int The priority.

Link copied to clipboard

List<Int> The resource id.

Link copied to clipboard

Int The route id.

Link copied to clipboard
Link copied to clipboard

List<Int> The skill id.

Link copied to clipboard

OrderState The state name. Current state of the order.

Link copied to clipboard

Int The total operators.

Link copied to clipboard

Int The truck id.

Link copied to clipboard

String The update on.