UNPKG

@greenactionstudio/ocpp-types

Version:

A centralized library of Open Charge Point Protocol (OCPP) types for use in other projects.

13 lines (10 loc) 276 B
import { ChargingProfilePurposeType, ClearChargingProfileStatus } from '.'; export type req = { id: number; connectorId: number; chargingProfilePurpose: ChargingProfilePurposeType; stackLevel: number; }; export type conf = { status: ClearChargingProfileStatus; };