refactor: more coding style fixes
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / ChargePointErrorCode.ts
CommitLineData
c0560973 1export enum OCPP16ChargePointErrorCode {
10570d97
JB
2 CONNECTOR_LOCK_FAILURE = 'ConnectorLockFailure',
3 EV_COMMUNICATION_ERROR = 'EVCommunicationError',
4 GROUND_FAILURE = 'GroundFailure',
5 HIGH_TEMPERATURE = 'HighTemperature',
6 INTERNAL_ERROR = 'InternalError',
7 LOCAL_LIST_CONFLICT = 'LocalListConflict',
8 NO_ERROR = 'NoError',
9 OTHER_ERROR = 'OtherError',
10 OVER_CURRENT_FAILURE = 'OverCurrentFailure',
11 OVER_VOLTAGE = 'OverVoltage',
12 POWER_METER_FAILURE = 'PowerMeterFailure',
13 POWER_SWITCH_FAILURE = 'PowerSwitchFailure',
14 READER_FAILURE = 'ReaderFailure',
15 RESET_FAILURE = 'ResetFailure',
16 UNDER_VOLTAGE = 'UnderVoltage',
a807045b 17 WEAK_SIGNAL = 'WeakSignal',
10570d97 18}