UNPKG

@greenactionstudio/ocpp-types

Version:

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

12 lines (10 loc) 289 B
import { ChargePointErrorCode, ChargePointStatus } from '.'; export type req = { connectorId: number; errorCode: ChargePointErrorCode; info?: string; status: ChargePointStatus; timestamp?: string; // ISO 8601 Date Time String vendorId?: string; vendorErrorCode?: string; };