ParkingRateDetails
data class ParkingRateDetails(val parkingPeriods: List<ParkingTimePeriod> = emptyList(), val offeredTickets: List<ParkingTicket> = emptyList())
Price details for a single parking service type.
Parameters
parkingPeriods
Days and hours when the ticket price applies.
offeredTickets
Defines the tickets offered by this parking location.
Constructors
Link copied to clipboard
fun ParkingRateDetails(parkingPeriods: List<ParkingTimePeriod> = emptyList(), offeredTickets: List<ParkingTicket> = emptyList())