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.

Parameters

startTime

The parking starting time.

duration

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

fees

Detailed information of the Fee for the reserved parking spot.

Constructors

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

Properties

Link copied to clipboard
Link copied to clipboard
val fees: List<Fee>
Link copied to clipboard