ParkingPriceResponse
data class ParkingPriceResponse(val paymentDetails: ParkingPaymentDetails, val rates: List<ParkingRate> = emptyList(), val parkingPrice: ParkingPrice? = null, val additionalInfo: String? = null)
Describes the details of a single result item returned by the Parking Price API.
Parameters
paymentDetails
Details of the payment procedure.
rates
Details of the parking rates.
parkingPrice
Details of the ParkingPrice.
additionalInfo
Any additional info which could be relevant, presented in local language.
Constructors
Link copied to clipboard
fun ParkingPriceResponse(paymentDetails: ParkingPaymentDetails, rates: List<ParkingRate> = emptyList(), parkingPrice: ParkingPrice? = null, additionalInfo: String? = null)