UI Services: add status notification command
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 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 };