ParkingDynamicDataResponse

data class ParkingDynamicDataResponse(    val available: Boolean,     val numberOfEmptySpots: Int? = null,     val availabilityTrend: AvailabilityTrend? = null)

Response of the parking dynamic data search.

Parameters

available

true if there is an available spot at the parking point of interest.

numberOfEmptySpots

Optional field specifying the number of available parking spots.

availabilityTrend

Prediction on availability.

Constructors

Link copied to clipboard
fun ParkingDynamicDataResponse(    available: Boolean,     numberOfEmptySpots: Int? = null,     availabilityTrend: AvailabilityTrend? = null)

Properties

Link copied to clipboard
val availabilityTrend: AvailabilityTrend? = null
Link copied to clipboard
val available: Boolean
Link copied to clipboard
val numberOfEmptySpots: Int? = null