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.