Documentation on OCPP parameters
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Configuration.ts
CommitLineData
7e1dc878 1import { OCPP16StandardParametersKey, OCPP16SupportedFeatureProfiles } from './1.6/Configuration';
c0560973
JB
2
3export type StandardParametersKey = OCPP16StandardParametersKey;
4
5export const StandardParametersKey = {
6 ...OCPP16StandardParametersKey
7};
f7a1d1a9 8
7e1dc878
JB
9export type SupportedFeatureProfiles = OCPP16SupportedFeatureProfiles;
10
11export const SupportedFeatureProfiles = {
12 ...OCPP16SupportedFeatureProfiles
13};
14
15export 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
f7a1d1a9
JB
26export interface OCPPConfigurationKey {
27 key: string | StandardParametersKey;
28 readonly: boolean;
29 value?: string;
30}