ChargingPoint
data class ChargingPoint(val id: String, val status: AvailabilityStatus? = null, val connectors: Set<Connector> = emptySet())
Represents the charging point at an Electric Vehicle(EV) charging station. This is also known as Electric Vehicle Supply Equipment(EVSE).
Important: This is a Public Preview API. It may be changed or removed at any time.
Constructors
Link copied to clipboard
fun ChargingPoint(id: String, status: AvailabilityStatus? = null, connectors: Set<Connector> = emptySet())