Type alias for OCPP stack response and error handling
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
CommitLineData
cfa9539e
JB
1import {
2 OCPP16ChargingProfile,
3 OCPP16ChargingRateUnitType,
4 OCPP16ChargingSchedulePeriod,
5} from './1.6/ChargingProfile';
c0560973
JB
6
7export type ChargingProfile = OCPP16ChargingProfile;
cfa9539e
JB
8
9export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod;
10
11export type ChargingRateUnitType = OCPP16ChargingRateUnitType;
12
13export const ChargingRateUnitType = {
14 ...OCPP16ChargingRateUnitType,
15};