UNPKG

@greenactionstudio/ocpp-types

Version:

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

15 lines (12 loc) 278 B
import { IdToken, IdTagInfo } from './'; export type req = { connectorId: number; idTag: IdToken; meterStart: number; reservationId?: number; timestamp: string; // ISO 8601 Date Time String }; export type conf = { idTagInfo: IdTagInfo; transactionId: number; };