build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / ChargePointStatus.ts
1 export enum OCPP16ChargePointStatus {
2 Available = 'Available',
3 Preparing = 'Preparing',
4 Charging = 'Charging',
5 SuspendedEVSE = 'SuspendedEVSE',
6 SuspendedEV = 'SuspendedEV',
7 Finishing = 'Finishing',
8 Reserved = 'Reserved',
9 Unavailable = 'Unavailable',
10 Faulted = 'Faulted'
11 }