refactor: applied changes for pull request
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / Reservation.ts
index 49bebd14049c5b7c55a841f12d8a1a015ad4df64..bbc3de7a93b8b03cb993c1720e322a749993f521 100644 (file)
@@ -10,5 +10,13 @@ export enum ReservationTerminationReason {
   EXPIRED = 'Expired',
   TRANSACTION_STARTED = 'TransactionStarted',
   CONNECTOR_STATE_CHANGED = 'ConnectorStateChanged',
-  CANCELED = 'ReservationCanceled',
+  RESERVATION_CANCELED = 'ReservationCanceled',
+}
+
+export enum ReservationFilterKey {
+  RESERVATION_ID = 'id',
+  ID_TAG = 'idTag',
+  PARENT_ID_TAG = 'parentIdTag',
+  CONNECTOR_ID = 'connectorId',
+  EVSE_ID = 'evseId',
 }