EvChargingPark
data class EvChargingPark(val id: String, val chargingStations: Set<EvChargingStation> = emptySet())
Content copied to clipboard
Represents the Electric Vehicle (EV) charging park point of interest.
Parameters
id
Identifier for the charging park.
chargingStations
Collection of charging stations at a electric vehicle charging park.
Constructors
Link copied to clipboard
fun EvChargingPark(id: String, chargingStations: Set<EvChargingStation> = emptySet())
Content copied to clipboard