ocpi-types
Version:
TypeScript DTOs and enums for OCPI 2.2.1 specification.
21 lines (20 loc) • 683 B
TypeScript
import { GeoLocationDto } from '../../locations/dtos/geo-location.dto';
import { ConnectorType } from '../../locations/enums/connector-type.enum';
import { ConnectorFormat } from '../../locations/enums/connector-format.enum';
import { PowerType } from '../../locations/enums/power-type.enum';
export declare class CdrLocationDto {
id: string;
name?: string;
address: string;
city: string;
postalCode?: string;
state?: string;
country: string;
coordinates: GeoLocationDto;
evseUid: string;
evseId: string;
connectorId: string;
connectorStandard: ConnectorType;
connectorFormat: ConnectorFormat;
connectorPowerType: PowerType;
}