feat(simulator): add certificates related OCPP 2.x types
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 2.0 / Requests.ts
index 220a39b6f617a0f020aa5b65ff04baecbc0ad3c3..d584c8289ad88db7e3d79ad56b95610062b15f99 100644 (file)
@@ -1,6 +1,7 @@
 import type {
   BootReasonEnumType,
   EmptyObject,
+  InstallCertificateUseEnumType,
   JsonObject,
   OCPP20ConnectorStatusEnumType,
   OCPP20SetVariableDataType,
@@ -50,3 +51,8 @@ export type OCPP20StatusNotificationRequest = {
 export type OCPP20SetVariablesRequest = {
   setVariableData: OCPP20SetVariableDataType[];
 } & JsonObject;
+
+export type OCPP20InstallCertificateRequest = {
+  certificateType: InstallCertificateUseEnumType;
+  certificate: string;
+} & JsonObject;