X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FChargingStationInfo.ts;h=1cf27163a77588a8085d1ba38cd56b134ac9dfd2;hb=ccb1d6e97cc0248cd96a9505cf5e8f037d66984c;hp=46f537ad417b9d8db0a24f0cc052a911ab6cf686;hpb=9ac86a7ea04eb1155c2a720b36f6bf33ba336767;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ChargingStationInfo.ts b/src/types/ChargingStationInfo.ts index 46f537ad..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 { - name?: string; + infoHash?: string; + chargingStationId?: string; chargeBoxSerialNumber?: string; - maxPower?: number; + chargePointSerialNumber?: string; + meterSerialNumber?: string; + maximumPower?: number; // Always in Watt powerDivider?: number; + maximumAmperage?: number; // Always in Ampere +} + +export interface ChargingStationInfoConfiguration { + stationInfo?: ChargingStationInfo; }