Fix Json type definition naming
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Configuration.ts
index 5747663c42d9a414fa252c46800e6c90c5e7e1ca..5aa96818854d02fcff2373345c5fb7f15c4ddf07 100644 (file)
@@ -4,7 +4,7 @@ import {
   OCPP16VendorDefaultParametersKey,
 } from './1.6/Configuration';
 
-import { JsonType } from '../JsonType';
+import { JsonObject } from '../JsonType';
 
 export type StandardParametersKey = OCPP16StandardParametersKey;
 
@@ -35,7 +35,7 @@ export enum ConnectorPhaseRotation {
   TSR = 'TSR',
 }
 
-export interface OCPPConfigurationKey extends JsonType {
+export interface OCPPConfigurationKey extends JsonObject {
   key: string | StandardParametersKey;
   readonly: boolean;
   value?: string;