Make filename match the class case.
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Configuration.ts
1 import { OCPP16StandardParametersKey, OCPP16SupportedFeatureProfiles } from './1.6/Configuration';
2
3 export type StandardParametersKey = OCPP16StandardParametersKey;
4
5 export const StandardParametersKey = {
6 ...OCPP16StandardParametersKey
7 };
8
9 export type SupportedFeatureProfiles = OCPP16SupportedFeatureProfiles;
10
11 export const SupportedFeatureProfiles = {
12 ...OCPP16SupportedFeatureProfiles
13 };
14
15 export enum ConnectorPhaseRotation {
16 NotApplicable = 'NotApplicable',
17 Unknown = 'Unknown',
18 RST = 'RST',
19 RTS = 'RTS',
20 SRT = 'SRT',
21 STR = 'STR',
22 TRS = 'TRS',
23 TSR = 'TSR'
24 }
25
26 export interface OCPPConfigurationKey {
27 key: string | StandardParametersKey;
28 readonly: boolean;
29 value?: string;
30 }