Price

data class Price(val startTime: Calendar, val duration: Duration, @Size(min = 1) val fees: List<Fee>)

The fees for parking for a certain period of time in the parking place.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
constructor(startTime: Calendar, duration: Duration, @Size(min = 1) fees: List<Fee>)

Properties

Link copied to clipboard

The amount of time for which the parking spot is reserved.

Link copied to clipboard
val fees: List<Fee>

Detailed information of the Fee for the reserved parking spot.

Link copied to clipboard

The parking starting time.