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.

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
fun Price(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