fix: align enums key casing if used in compound
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / Requests.ts
index b482d1405e150f1e6178ee17126ca89bbd7a8e7a..73401d35ca1ee6573b3c993b17b419c9f36db551 100644 (file)
@@ -114,8 +114,8 @@ export interface SetChargingProfileRequest extends JsonObject {
 }
 
 export enum OCPP16AvailabilityType {
-  INOPERATIVE = 'Inoperative',
-  OPERATIVE = 'Operative',
+  Inoperative = 'Inoperative',
+  Operative = 'Operative',
 }
 
 export interface ChangeAvailabilityRequest extends JsonObject {