Package-level declarations

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
data class EvChargingStationsAvailabilityOptions(val chargingStationId: EvChargingAvailabilityId, val connectorTypeSet: Set<String> = emptySet(), val minPower: Power? = null, val maxPower: Power? = null)

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

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

Response of the EV Charging Stations Availability search API.