Permit to disable persistent configuration storage.
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationInfo.ts
index cc7d1e3bac9197e2332ddc302b9eef3584772142..1cf27163a77588a8085d1ba38cd56b134ac9dfd2 100644 (file)
@@ -1,11 +1,14 @@
 import ChargingStationTemplate from './ChargingStationTemplate';
 
 export default interface ChargingStationInfo extends ChargingStationTemplate {
+  infoHash?: string;
   chargingStationId?: string;
   chargeBoxSerialNumber?: string;
   chargePointSerialNumber?: string;
-  maxPower?: number; // Always in Watt
+  meterSerialNumber?: string;
+  maximumPower?: number; // Always in Watt
   powerDivider?: number;
+  maximumAmperage?: number; // Always in Ampere
 }
 
 export interface ChargingStationInfoConfiguration {