X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FChargingStationInfo.ts;h=1cf27163a77588a8085d1ba38cd56b134ac9dfd2;hb=18d3414af1e352238e2888687b02d6e2606fb4f9;hp=732bf00ade5863a1bcb27fff38b1f7e60709b004;hpb=6ce0bca57a96ef920df4e0786d8f28b0b89a36ef;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ChargingStationInfo.ts b/src/types/ChargingStationInfo.ts index 732bf00a..1cf27163 100644 --- a/src/types/ChargingStationInfo.ts +++ b/src/types/ChargingStationInfo.ts @@ -1,8 +1,16 @@ import ChargingStationTemplate from './ChargingStationTemplate'; export default interface ChargingStationInfo extends ChargingStationTemplate { + infoHash?: string; chargingStationId?: string; chargeBoxSerialNumber?: string; - maxPower?: number; // Always in Watt + chargePointSerialNumber?: string; + meterSerialNumber?: string; + maximumPower?: number; // Always in Watt powerDivider?: number; + maximumAmperage?: number; // Always in Ampere +} + +export interface ChargingStationInfoConfiguration { + stationInfo?: ChargingStationInfo; }