EvChargingPark

data class EvChargingPark(val id: String, val chargingStations: Set<EvChargingStation> = emptySet())

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())

Properties

Link copied to clipboard
val chargingStations: Set<EvChargingStation>
Link copied to clipboard
val id: String