ChargingStation

class ChargingStation(val id: ChargingStation.Id, val chargingPoints: List<ChargingPoint> = emptyList())

A charging station has several charging points, of which only several points can be used at the same time.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
constructor(id: ChargingStation.Id, chargingPoints: List<ChargingPoint> = emptyList())

Types

Link copied to clipboard
value class Id(val id: String)

Class that represents the identifier of a charging station.

Properties

Link copied to clipboard
Link copied to clipboard

Charging station ID.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Checks if this object is equal to another object.

Link copied to clipboard
open override fun hashCode(): Int

Returns a hash code value for the object.

Link copied to clipboard
open override fun toString(): String

Returns a string representation of the object.