EvChargingStationsAvailabilityOptions

data class EvChargingStationsAvailabilityOptions(    val chargingStationId: String,     val connectorTypeSet: Set<String> = emptySet(),     val minPowerKw: Double? = null,     val maxPowerKw: Double? = null)

Contains the parameters to use in an EV Charging Stations Availability search.

Parameters

chargingStationId

The target charging station ID.

connectorTypeSet

A set of connector types to restrict the results to the availability of those specific connector types. See https://developer.tomtom.com/search-api/search-api-documentation/supported-connector-types for more details.

minPowerKw

A parameter which to restrict the result to the availability of connectors with a specific minimum power (expressed in kilowatts). Can be used with maxPowerKw.

maxPowerKw

A parameter to restrict the result to the availability of connectors with a specific maximum power (expressed in kilowatts). Can be used with minPowerKw.

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

Constructors

Link copied to clipboard
fun EvChargingStationsAvailabilityOptions(    chargingStationId: String,     connectorTypeSet: Set<String> = emptySet(),     minPowerKw: Double? = null,     maxPowerKw: Double? = null)

Properties

Link copied to clipboard
val chargingStationId: String
Link copied to clipboard
val connectorTypeSet: Set<String>
Link copied to clipboard
val maxPowerKw: Double? = null
Link copied to clipboard
val minPowerKw: Double? = null