@greenactionstudio/ocpp-types
Version:
A centralized library of Open Charge Point Protocol (OCPP) types for use in other projects.
15 lines (12 loc) • 347 B
text/typescript
import { ChargingRateUnitType, GetCompositeScheduleStatus, ChargingSchedule } from './'
export type req = {
connectorId: number;
duration: number;
chargingRateUnit?: ChargingRateUnitType;
}
export type conf = {
status: GetCompositeScheduleStatus;
connectorId?: number;
scheduleStart?: string;
chargingSchedule?: ChargingSchedule
}