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

Properties

Link copied to clipboard

Collection of connectors.

Link copied to clipboard
val id: String

Identifier for the charging point.

Link copied to clipboard

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