Add support for random meter serial number
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationInfo.ts
index 28895067edf6adb954291fc097d90b872098b3aa..70fda722f1a0891c489a3099769909296e78aa61 100644 (file)
@@ -1,9 +1,16 @@
 import ChargingStationTemplate from './ChargingStationTemplate';
 
 export default interface ChargingStationInfo extends ChargingStationTemplate {
+  hash?: 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 {
+  stationInfo?: ChargingStationInfo;
 }