Add amperage limitation support via vendor specific OCPP key
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationInfo.ts
index cc7d1e3bac9197e2332ddc302b9eef3584772142..0e8b172217a9379ef7d41737849b85c372e7e318 100644 (file)
@@ -4,8 +4,9 @@ export default interface ChargingStationInfo extends ChargingStationTemplate {
   chargingStationId?: string;
   chargeBoxSerialNumber?: string;
   chargePointSerialNumber?: string;
-  maxPower?: number; // Always in Watt
+  maximumPower?: number; // Always in Watt
   powerDivider?: number;
+  maximumAmperage?: number; // Always in Ampere
 }
 
 export interface ChargingStationInfoConfiguration {