Untangle charging station info from charging station template data
[e-mobility-charging-stations-simulator.git] / src / types / AutomaticTransactionGenerator.ts
index 940a5d75b7115bf212928223e514f01109e8b112..83e88c68cfc3ad9588efc85951c3bb651aaf149a 100644 (file)
@@ -1,3 +1,15 @@
+export interface AutomaticTransactionGeneratorConfiguration {
+  enable: boolean;
+  minDuration: number;
+  maxDuration: number;
+  minDelayBetweenTwoTransactions: number;
+  maxDelayBetweenTwoTransactions: number;
+  probabilityOfStart: number;
+  stopAfterHours: number;
+  stopOnConnectionFailure: boolean;
+  requireAuthorize?: boolean;
+}
+
 export interface Status {
   start?: boolean;
   startDate?: Date;