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