UI Services: add status notification command
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / ChargePointStatus.ts
CommitLineData
c0560973 1export enum OCPP16ChargePointStatus {
6b0ce541
JB
2 AVAILABLE = 'Available',
3 PREPARING = 'Preparing',
4 CHARGING = 'Charging',
5 OCCUPIED = 'Occupied',
6 SUSPENDED_EVSE = 'SuspendedEVSE',
7 SUSPENDED_EV = 'SuspendedEV',
8 FINISHING = 'Finishing',
9 RESERVED = 'Reserved',
10 UNAVAILABLE = 'Unavailable',
11 FAULTED = 'Faulted',
12}