Rate

data class Rate(val isFreeOutsideHours: Boolean, val currency: Currency, val rateDetails: List<RateDetails>, val additionalTaxRateInPercent: Double? = null, val classifier: RateClassifier? = 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 RateDetails 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 Rate(isFreeOutsideHours: Boolean, currency: Currency, rateDetails: List<RateDetails>, additionalTaxRateInPercent: Double? = null, classifier: RateClassifier? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard