EvChargingParkDynamicDataOptions

data class EvChargingParkDynamicDataOptions(    val searchResultId: SearchResultId,     val connectorTypeSet: Set<ConnectorType> = emptySet(),     val minPowerKw: Double? = null,     val maxPowerKw: Double? = null)

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

Parameters

searchResultId

The charging station ID.

connectorTypeSet

A set of connector types that restrict the results to ones where the specified connector types are available. See https://developer.tomtom.com/search-api/search-api-documentation/supported-connector-types for more details.

minPowerKw

Restricts the result to stations with available connectors with the specified minimum power (expressed in kilowatts). Can be used with maxPowerKw.

maxPowerKw

Restricts the result to the stations with available connectors with the specified maximum power (expressed in kilowatts). Can be used with minPowerKw.

Constructors

Link copied to clipboard
fun EvChargingParkDynamicDataOptions(    searchResultId: SearchResultId,     connectorTypeSet: Set<ConnectorType> = emptySet(),     minPowerKw: Double? = null,     maxPowerKw: Double? = null)

Properties

Link copied to clipboard
val connectorTypeSet: Set<ConnectorType>
Link copied to clipboard
val maxPowerKw: Double? = null
Link copied to clipboard
val minPowerKw: Double? = null
Link copied to clipboard
val searchResultId: SearchResultId