X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FChargingStationInfo.ts;h=70fda722f1a0891c489a3099769909296e78aa61;hb=0b7c34ba120b560d2562228a3318a8673a7bf54f;hp=28895067edf6adb954291fc097d90b872098b3aa;hpb=43bb4cd9ccb69bbf6b22fc6d8b58c79792a1d865;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ChargingStationInfo.ts b/src/types/ChargingStationInfo.ts index 28895067..70fda722 100644 --- a/src/types/ChargingStationInfo.ts +++ b/src/types/ChargingStationInfo.ts @@ -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; }