Get rid of useless intermediate variable
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationInfo.ts
index cc7d1e3bac9197e2332ddc302b9eef3584772142..eb77b601eb2febdfbd5e6ec30e6030ec0e3255ad 100644 (file)
@@ -1,11 +1,13 @@
 import ChargingStationTemplate from './ChargingStationTemplate';
 
 export default interface ChargingStationInfo extends ChargingStationTemplate {
+  hash?: string;
   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 {