UNPKG

@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
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 }