Package com.tomtom.sdk.search.client.ev

Types

Link copied to clipboard
data class EvChargingPark(val id: String, val chargingStations: Set<EvChargingStation> = emptySet())

Represents the Electric Vehicle (EV) charging park.

Link copied to clipboard
data class EvChargingStation(    val id: String,     val accessibility: AccessibilityType? = null,     val chargingPoints: Set<ChargingPoint> = emptySet())

Represents the Electric Vehicle (EV) charging station. At an EV charging park, there are usually a number of stations.

Link copied to clipboard
class EvChargingStationsAvailabilityError(val message: String = "") : SearchError

Error caused by failure while calling the EV Charging Stations Availability API goes wrong. Contains information about the cause of the failure.

Link copied to clipboard
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.

Link copied to clipboard
data class EvChargingStationsAvailabilityResponse(val chargingStationId: String, val connectors: List<Connector>)

Response of the EV Charging Stations Availability search API.