ArrivalTimeSlot

data class ArrivalTimeSlot(val start: Instant, val end: Instant? = null)

Describes when the driver is expected to arrive at the destination. Use start alone for an exact target time, or start together with end for a time window.

Constructors

Link copied to clipboard
constructor(start: Instant, end: Instant? = null)

Properties

Link copied to clipboard
val end: Instant? = null
Link copied to clipboard