ParkingPriceResponse

data class ParkingPriceResponse(@Size(min = 1) val rates: List<Rate>, val paymentDetails: PaymentDetails? = null, val parkingPrice: Price? = null, val additionalInfo: String? = null)

Response of a parking price request from ParkingDetailProvider.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
constructor(@Size(min = 1) rates: List<Rate>, paymentDetails: PaymentDetails? = null, parkingPrice: Price? = null, additionalInfo: String? = null)

Properties

Link copied to clipboard
val additionalInfo: String? = null

Any additional info which could be relevant, presented in local language.

Link copied to clipboard
val parkingPrice: Price? = null

Details of the Price.

Link copied to clipboard

Details of the payment procedure.

Link copied to clipboard

Details of the parking rates.