X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FUIProtocol.ts;h=1f78671e2f6a4901c935b41736f1688459c2ff65;hb=0d2cec7666c01396c8125a752341d5b716d12906;hp=3906512d2240470317bc094caec64a3de9949f69;hpb=4f69be046f99592d0cc9c190aa8957f7eff1c936;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/UIProtocol.ts b/src/types/UIProtocol.ts index 3906512d..1f78671e 100644 --- a/src/types/UIProtocol.ts +++ b/src/types/UIProtocol.ts @@ -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[]; }