Cleanups.
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationTemplate.ts
index 65e22ea3f0cfac7612b59c16e07d5c7988268ef2..c97079d536802242aeda8835c68e0f7c07ab5148 100644 (file)
@@ -25,13 +25,15 @@ export interface AutomaticTransactionGenerator {
   maxDelayBetweenTwoTransactions: number;
   probabilityOfStart: number;
   stopAfterHours: number;
-  stopOnConnectionFailure: boolean
+  stopOnConnectionFailure: boolean;
+  requireAuthorize: boolean
 }
 
 export default interface ChargingStationTemplate {
   supervisionURL?: string;
   authorizationFile?: string;
   baseName: string;
+  nameSuffix?: string;
   fixedName?: string;
   chargePointModel: string;
   chargePointVendor: string;