X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2F1.6%2FTransaction.ts;h=ca68117d5020c04e3a556e7b58ed4940bdc23e52;hb=5566ca3ebbfc761e2b4538be722399628f34a87b;hp=bf2377778bb21e0c6096cb1f33267672f5fe8444;hpb=c3ee95af4edd541595e3873c8aa4c93d38e59474;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 bf237777..ca68117d 100644 --- a/src/types/ocpp/1.6/Transaction.ts +++ b/src/types/ocpp/1.6/Transaction.ts @@ -1,5 +1,5 @@ -import { JsonType } from '../../JsonType'; -import { OCPP16MeterValue } from './MeterValues'; +import type { JsonObject } from '../../JsonType'; +import type { OCPP16MeterValue } from './MeterValues'; export enum OCPP16StopTransactionReason { NONE = '', @@ -13,7 +13,7 @@ export enum OCPP16StopTransactionReason { REMOTE = 'Remote', SOFT_RESET = 'SoftReset', UNLOCK_COMMAND = 'UnlockCommand', - DE_AUTHORIZED = 'DeAuthorized' + DE_AUTHORIZED = 'DeAuthorized', } export enum OCPP16AuthorizationStatus { @@ -21,24 +21,24 @@ export enum OCPP16AuthorizationStatus { BLOCKED = 'Blocked', EXPIRED = 'Expired', INVALID = 'Invalid', - CONCURRENT_TX = 'ConcurrentTx' + CONCURRENT_TX = 'ConcurrentTx', } -export interface IdTagInfo extends JsonType { +export interface IdTagInfo extends JsonObject { status: OCPP16AuthorizationStatus; parentIdTag?: string; expiryDate?: Date; } -export interface AuthorizeRequest extends JsonType { +export interface OCPP16AuthorizeRequest extends JsonObject { idTag: string; } -export interface OCPP16AuthorizeResponse extends JsonType { +export interface OCPP16AuthorizeResponse extends JsonObject { idTagInfo: IdTagInfo; } -export interface StartTransactionRequest extends JsonType { +export interface OCPP16StartTransactionRequest extends JsonObject { connectorId: number; idTag: string; meterStart: number; @@ -46,12 +46,12 @@ export interface StartTransactionRequest extends JsonType { timestamp: string; } -export interface OCPP16StartTransactionResponse extends JsonType { +export interface OCPP16StartTransactionResponse extends JsonObject { idTagInfo: IdTagInfo; transactionId: number; } -export interface StopTransactionRequest extends JsonType { +export interface OCPP16StopTransactionRequest extends JsonObject { idTag?: string; meterStop: number; timestamp: string; @@ -60,6 +60,6 @@ export interface StopTransactionRequest extends JsonType { transactionData?: OCPP16MeterValue[]; } -export interface OCPP16StopTransactionResponse extends JsonType { +export interface OCPP16StopTransactionResponse extends JsonObject { idTagInfo?: IdTagInfo; }