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.

Parameters

id

Identifier for the charging point.

status

Status of charging point, indicating whether it is available or not.

connectors

Collection of connectors.

Constructors

Link copied to clipboard
fun ChargingPoint(id: String, status: AvailabilityStatus? = null, connectors: Set<Connector> = emptySet())

Properties

Link copied to clipboard
Link copied to clipboard
val id: String
Link copied to clipboard