Merge branch 'main' into reservation-feature
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / Transaction.ts
index a11de78ddd2943b82e6d6f832f7414bc7ce43a10..4af42747ede0040b50fffa78410a943d4909b4b2 100644 (file)
@@ -1,5 +1,5 @@
-import type { JsonObject } from '../../JsonType';
 import type { OCPP16MeterValue } from './MeterValues';
+import type { JsonObject } from '../../JsonType';
 
 export enum OCPP16StopTransactionReason {
   NONE = '',
@@ -24,7 +24,7 @@ export enum OCPP16AuthorizationStatus {
   CONCURRENT_TX = 'ConcurrentTx',
 }
 
-export interface IdTagInfo extends JsonObject {
+interface IdTagInfo extends JsonObject {
   status: OCPP16AuthorizationStatus;
   parentIdTag?: string;
   expiryDate?: Date;