UNPKG

ocpi-types

Version:

TypeScript DTOs and enums for OCPI 2.2.1 specification.

16 lines (15 loc) 484 B
import { ConnectorType } from '../enums/connector-type.enum'; import { ConnectorFormat } from '../enums/connector-format.enum'; import { PowerType } from '../enums/power-type.enum'; export declare class ConnectorDto { id: string; standard: ConnectorType; format: ConnectorFormat; powerType: PowerType; maxVoltage: number; maxAmperage: number; maxElectricPower?: number; tariffIds?: string[]; termsAndConditions?: string; lastUpdated: string; }