UNPKG

@greenactionstudio/ocpp-types

Version:

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

18 lines (16 loc) 409 B
export type req = { chargePointVendor: string; chargePointModel: string; chargePointSerialNumber?: string; chargeBoxSerialNumber?: string; firmwareVersion?: string; iccid?: string; imsi?: string; meterType?: string; meterSerialNumber?: string; }; export type conf = { status: 'Accepted' | 'Pending' | 'Rejected'; currentTime: string; // ISO 8601 Date Time String interval: number; };