fix: properly handle undefined connector id at remote start transaction
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / Requests.ts
index c57be2032751277115f298947575d7877457d4cd..e186679f5004938c7662615dfa4fde8d29133300 100644 (file)
@@ -77,7 +77,7 @@ export interface ChangeConfigurationRequest extends JsonObject {
 }
 
 export interface RemoteStartTransactionRequest extends JsonObject {
-  connectorId: number
+  connectorId?: number
   idTag: string
   chargingProfile?: OCPP16ChargingProfile
 }