EvChargingPark
data class EvChargingPark(val id: String, val chargingStations: Set<EvChargingStation> = emptySet())
Content copied to clipboard
Represents the Electric Vehicle (EV) charging park.
Important: This is a Public Preview API. It may be changed or removed at any time.
Parameters
id
Identifier for the charging park.
chargingStations
Collection of charging stations at an electric vehicle charging park.
Constructors
Link copied to clipboard
fun EvChargingPark(id: String, chargingStations: Set<EvChargingStation> = emptySet())
Content copied to clipboard