UI Services: add status notification command
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationInfo.ts
1 import type ChargingStationTemplate from './ChargingStationTemplate';
2
3 export default interface ChargingStationInfo
4 extends Omit<
5 ChargingStationTemplate,
6 | 'AutomaticTransactionGenerator'
7 | 'Configuration'
8 | 'power'
9 | 'powerUnit'
10 | 'chargeBoxSerialNumberPrefix'
11 | 'chargePointSerialNumberPrefix'
12 | 'meterSerialNumberPrefix'
13 > {
14 hashId: string;
15 infoHash?: string;
16 chargingStationId?: string;
17 chargeBoxSerialNumber?: string;
18 chargePointSerialNumber?: string;
19 meterSerialNumber?: string;
20 maximumPower?: number; // Always in Watt
21 maximumAmperage?: number; // Always in Ampere
22 }
23
24 export interface ChargingStationInfoConfiguration {
25 stationInfo?: ChargingStationInfo;
26 }