d2c36d7d8903e7c9634bb2ecb03e1c536fdab7c6
[e-mobility-charging-stations-simulator.git] / ChargingProfile.ts
1 import {
2 OCPP16ChargingProfile,
3 OCPP16ChargingRateUnitType,
4 OCPP16ChargingSchedulePeriod,
5 } from './1.6/ChargingProfile';
6
7 export type ChargingProfile = OCPP16ChargingProfile;
8
9 export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod;
10
11 export type ChargingRateUnitType = OCPP16ChargingRateUnitType;
12
13 export const ChargingRateUnitType = {
14 ...OCPP16ChargingRateUnitType,
15 };