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

Types

Link copied to clipboard
value class AccessibilityType

Defines the accessibility of a charging infrastructure element.

Link copied to clipboard
value class AvailabilityStatus

Status of charging point, indicating whether it is available or not.

Link copied to clipboard
data class ChargingPoint(    val id: String,     val status: AvailabilityStatus? = null,     val connectors: Set<Connector> = emptySet())

Represents the charging point at an Electric Vehicle(EV) charging station. This is also known as Electric Vehicle Supply Equipment(EVSE).

Link copied to clipboard
data class Connector(    val connectorType: ConnectorType,     val currentType: CurrentType? = null,     val ratedPowerKW: Double? = null,     val voltageV: Int? = null,     val currentA: Double? = null)

The charging connector data.

Link copied to clipboard
value class ConnectorType

The connector type. This list is based on the supported connector types by online search, documented at the following link: https://developer.tomtom.com/search-api/documentation/product-information/supported-connector-types

Link copied to clipboard
value class CurrentType

Current type.

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

Represents the Electric Vehicle (EV) charging park point of interest.

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.