X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2F1.6%2FTransaction.ts;h=2e6c7289cde3ac8940d605b74bdff41c86b061df;hb=a223d9be48ad8828e6aef060dd3c45d4f99ea9a9;hp=030a2f25ea13910deb33a1bfc82afe1b59373b35;hpb=fd0c36fab7509aeb48c1fbb40b70072fe64ae63c;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/1.6/Transaction.ts b/src/types/ocpp/1.6/Transaction.ts index 030a2f25..2e6c7289 100644 --- a/src/types/ocpp/1.6/Transaction.ts +++ b/src/types/ocpp/1.6/Transaction.ts @@ -1,7 +1,7 @@ -import { OCPP16MeterValue } from './MeterValues'; +import type { OCPP16MeterValue } from './MeterValues.js' +import type { JsonObject } from '../../JsonType.js' export enum OCPP16StopTransactionReason { - NONE = '', EMERGENCY_STOP = 'EmergencyStop', EV_DISCONNECTED = 'EVDisconnected', HARD_RESET = 'HardReset', @@ -23,42 +23,42 @@ export enum OCPP16AuthorizationStatus { CONCURRENT_TX = 'ConcurrentTx' } -export interface IdTagInfo { - status: OCPP16AuthorizationStatus; - parentIdTag?: string; - expiryDate?: Date; +interface IdTagInfo extends JsonObject { + status: OCPP16AuthorizationStatus + parentIdTag?: string + expiryDate?: Date } -export interface AuthorizeRequest { - idTag: string; - +export interface OCPP16AuthorizeRequest extends JsonObject { + idTag: string } -export interface OCPP16AuthorizeResponse { - idTagInfo: IdTagInfo; + +export interface OCPP16AuthorizeResponse extends JsonObject { + idTagInfo: IdTagInfo } -export interface StartTransactionRequest { - connectorId: number; - idTag: string; - meterStart: number; - reservationId?: number; - timestamp: string; +export interface OCPP16StartTransactionRequest extends JsonObject { + connectorId: number + idTag: string + meterStart: number + timestamp: Date + reservationId?: number } -export interface OCPP16StartTransactionResponse { - idTagInfo: IdTagInfo; - transactionId: number; +export interface OCPP16StartTransactionResponse extends JsonObject { + idTagInfo: IdTagInfo + transactionId: number } -export interface StopTransactionRequest { - idTag?: string; - meterStop: number; - timestamp: string; - transactionId: number; - reason?: OCPP16StopTransactionReason; - transactionData?: OCPP16MeterValue[]; +export interface OCPP16StopTransactionRequest extends JsonObject { + idTag?: string + meterStop: number + timestamp: Date + transactionId: number + reason?: OCPP16StopTransactionReason + transactionData?: OCPP16MeterValue[] } -export interface OCPP16StopTransactionResponse { - idTagInfo?: IdTagInfo; +export interface OCPP16StopTransactionResponse extends JsonObject { + idTagInfo?: IdTagInfo }