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