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
JsonObject is the additional information about the dock.
Link copied to clipboard
String is the delivery time on the dock. It is in HH:MM:SS format.
Link copied to clipboard
String is the pickup time on the dock. It is in HH:MM:SS format.
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.