ocpp-messages
Version:
TypeScript definitions for Open Charge Point Protocol (OCPP)
58 lines (55 loc) • 1.52 kB
TypeScript
/* tslint:disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* Type of message to be triggered.
*
*/
export type MessageTriggerEnumType =
| "BootNotification"
| "LogStatusNotification"
| "FirmwareStatusNotification"
| "Heartbeat"
| "MeterValues"
| "SignChargingStationCertificate"
| "SignV2GCertificate"
| "StatusNotification"
| "TransactionEvent"
| "SignCombinedCertificate"
| "PublishFirmwareStatusNotification";
export interface UrnOCPPCp220203TriggerMessageRequest {
customData?: CustomDataType;
evse?: EVSEType;
requestedMessage: MessageTriggerEnumType;
}
/**
* This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.
*/
export interface CustomDataType {
vendorId: string;
[k: string]: unknown;
}
/**
* EVSE
* urn:x-oca:ocpp:uid:2:233123
* Electric Vehicle Supply Equipment
*
*/
export interface EVSEType {
customData?: CustomDataType;
/**
* Identified_ Object. MRID. Numeric_ Identifier
* urn:x-enexis:ecdm:uid:1:569198
* EVSE Identifier. This contains a number (> 0) designating an EVSE of the Charging Station.
*
*/
id: number;
/**
* An id to designate a specific connector (on an EVSE) by connector index number.
*
*/
connectorId?: number;
}