Dock

data class Dock(val id: Int = INT_INVALID, val name: String = EMPTY_STR, val pickupTime: String = EMPTY_STR, val deliveryTime: String = EMPTY_STR, val objectId: Int = INT_INVALID, val portId: Int = INT_INVALID, val liftTruck: Int = INT_INVALID, val additionalInfo: JsonObject = JsonObject(mapOf()), val skillIds: List<Int> = emptyList(), val status: PlaceStatusType = PlaceStatusType.UNKNOWN, val fleet: FleetType = FleetType.UNKNOWN, val loadType: LoadType = LoadType.UNKNOWN, val companyId: Int = INT_INVALID, val addedOnDate: String = EMPTY_STR, val updateOnDate: String = EMPTY_STR)

Dock is the data model for a dock.

Constructors

Link copied to clipboard
constructor(id: Int = INT_INVALID, name: String = EMPTY_STR, pickupTime: String = EMPTY_STR, deliveryTime: String = EMPTY_STR, objectId: Int = INT_INVALID, portId: Int = INT_INVALID, liftTruck: Int = INT_INVALID, additionalInfo: JsonObject = JsonObject(mapOf()), skillIds: List<Int> = emptyList(), status: PlaceStatusType = PlaceStatusType.UNKNOWN, fleet: FleetType = FleetType.UNKNOWN, loadType: LoadType = LoadType.UNKNOWN, companyId: Int = INT_INVALID, addedOnDate: String = EMPTY_STR, updateOnDate: String = EMPTY_STR)

Properties

Link copied to clipboard

String is the date and time when the dock was added. It is in YYYY-MM-DD 'T' HH:MM:SS format.

Link copied to clipboard
val additionalInfo: JsonObject

JsonObject is the additional information about the dock.

Link copied to clipboard

Int is the unique identifier of the related company.

Link copied to clipboard

String is the delivery time on the dock. It is in HH:MM:SS format.

Link copied to clipboard

FleetType is the fleet type.

Link copied to clipboard
val id: Int

Int is the unique identifier.

Link copied to clipboard

Int is the number of lift trucks on the dock.

Link copied to clipboard

LoadType is the load type.

Link copied to clipboard

String is the name of the dock.

Link copied to clipboard

Int is the unique identifier of the related object for additional information of the dock.

Link copied to clipboard

String is the pickup time on the dock. It is in HH:MM:SS format.

Link copied to clipboard
val portId: Int

Int is the unique identifier of the related port.

Link copied to clipboard

List<Int> is the list of unique identifiers of the assigned skills to the dock.

Link copied to clipboard

PlaceStatusType is the status of the dock.

Link copied to clipboard

String is the date and time when the dock was last updated. It is in YYYY-MM-DD 'T' HH:MM:SS format.