Package com.tomtom.sdk.search.client.model.ev
Types
Link copied to clipboard
Defines the accessibility of a charging infrastructure element.
Link copied to clipboard
Link copied to clipboard
Status of charging point, indicating whether it is available or not.
Link copied to clipboard
data class ChargingPark(val connectors: List<ConnectorDetails> = emptyList())
Content copied to clipboard
Contains information about a charging park.
Link copied to clipboard
data class ChargingPoint( val id: String, val status: AvailabilityStatus? = null, val connectors: Set<Connector> = emptySet())
Content copied to clipboard
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: String, val total: Int, val availability: ConnectorAvailability)
Content copied to clipboard
The charging connector data.
Link copied to clipboard
data class ConnectorAvailability(val current: AvailabilityDetails, val perPowerLevel: List<PowerKwAvailabilityDetails>)
Content copied to clipboard
The availability data for this connector type.
Link copied to clipboard
data class ConnectorDetails( val connectorType: String, val ratedPowerKw: Double?, val currentA: Int?, val currentType: String = "", val voltageV: Int?)
Content copied to clipboard
Information about the connectors available in the ChargingPark.
Link copied to clipboard
The connector type. This list is based on the supported connector types by online search, documented at the following link:
Link copied to clipboard
Electric current type of a connector.
Link copied to clipboard