X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2F2.0%2FResponses.ts;h=5fac747a2300cfe023a482cbd3804a7dbe020f80;hb=e8044a69a745aab08dfeea0bd9ec9dd7fe84cdd7;hp=fdbebf15c4eb33fd5b8fed7c4fd719fdcceb2493;hpb=28f1c5749ad4ee138c34c345a7bd812b40ccbcfa;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 fdbebf15..5fac747a 100644 --- a/src/types/ocpp/2.0/Responses.ts +++ b/src/types/ocpp/2.0/Responses.ts @@ -1,6 +1,7 @@ import type { EmptyObject, GenericStatus, + InstallCertificateStatusEnumType, JsonObject, OCPP20SetVariableResultType, RegistrationStatusEnumType, @@ -28,3 +29,8 @@ export type OCPP20StatusNotificationResponse = EmptyObject; export type OCPP20SetVariablesResponse = { setVariableResult: OCPP20SetVariableResultType[]; } & JsonObject; + +export type OCPP20InstallCertificateResponse = { + status: InstallCertificateStatusEnumType; + statusInfo?: StatusInfoType; +} & JsonObject;