Electric vehicle charging station.
Represents a complete charging station facility with one or more charging points. A station is typically at a single location but may have multiple charging points.
const station: ChargingStation = { id: 'station-123', chargingPoints: [ { evseId: 'EVSE-001', status: 'Available', ... }, { evseId: 'EVSE-002', status: 'Occupied', ... } ]}; Copy
const station: ChargingStation = { id: 'station-123', chargingPoints: [ { evseId: 'EVSE-001', status: 'Available', ... }, { evseId: 'EVSE-002', status: 'Occupied', ... } ]};
Array of charging points available at this station.
Each charging point can serve one vehicle at a time.
Unique identifier for the charging station.
Electric vehicle charging station.
Represents a complete charging station facility with one or more charging points. A station is typically at a single location but may have multiple charging points.
Example