ParkingRate
data class ParkingRate(val isFreeOutsideHours: Boolean, val currency: Currency, val rateDetails: List<ParkingRateDetails> = emptyList(), val additionalTaxRateInPercent: Double? = null, val classifier: ParkingRateClassifier? = null)
The corresponding duration of a single rate, and the hours when the rate applies. Support for unique combinations of rates and hours, such as rates that fluctuate during different hours of the day or different days of the week.
Parameters
isFreeOutsideHours
Indicates whether no charge parking is available outside the specified hour ranges.
currency
The payment currency.
rateDetails
List of ParkingRateDetails for a single parking service type.
additionalTaxRateInPercent
Additional tax rate that may not be included in the listed price.
classifier
Constructors
Link copied to clipboard
fun ParkingRate(isFreeOutsideHours: Boolean, currency: Currency, rateDetails: List<ParkingRateDetails> = emptyList(), additionalTaxRateInPercent: Double? = null, classifier: ParkingRateClassifier? = null)