X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2F2.0%2FResponses.ts;h=fdbebf15c4eb33fd5b8fed7c4fd719fdcceb2493;hb=1185579a331f3484e8ed7882203d2e58466635dd;hp=3f4d2f4274cc4c36dd73f51f303cb3ea773b5be6;hpb=2896e06dc8d72adf7150b23c941079f622f6f37c;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/2.0/Responses.ts b/src/types/ocpp/2.0/Responses.ts index 3f4d2f42..fdbebf15 100644 --- a/src/types/ocpp/2.0/Responses.ts +++ b/src/types/ocpp/2.0/Responses.ts @@ -2,14 +2,11 @@ import type { EmptyObject, GenericStatus, JsonObject, + OCPP20SetVariableResultType, RegistrationStatusEnumType, + StatusInfoType, } from '../../internal'; -export type StatusInfoType = { - reasonCode: string; - additionalInfo?: string; -} & JsonObject; - export type OCPP20BootNotificationResponse = { currentTime: Date; status: RegistrationStatusEnumType; @@ -27,3 +24,7 @@ export type OCPP20ClearCacheResponse = { } & JsonObject; export type OCPP20StatusNotificationResponse = EmptyObject; + +export type OCPP20SetVariablesResponse = { + setVariableResult: OCPP20SetVariableResultType[]; +} & JsonObject;