UI Protocol: Build response with the global excecution status on each
[e-mobility-charging-stations-simulator.git] / src / types / UIProtocol.ts
index 3906512d2240470317bc094caec64a3de9949f69..1f78671e2f6a4901c935b41736f1688459c2ff65 100644 (file)
@@ -36,8 +36,8 @@ export enum ProcedureName {
 }
 
 export interface RequestPayload extends JsonObject {
-  hashId?: string;
   hashIds?: string[];
+  connectorIds?: number[];
 }
 
 export enum ResponseStatus {
@@ -47,5 +47,6 @@ export enum ResponseStatus {
 
 export interface ResponsePayload extends JsonObject {
   status: ResponseStatus;
-  hashIds?: string[];
+  hashIdsSucceeded?: string[];
+  hashIdsFailed?: string[];
 }