refactor: more coding style fixes
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / Configuration.ts
CommitLineData
7e1dc878
JB
1export enum OCPP16SupportedFeatureProfiles {
2 Core = 'Core',
b22787b4
JB
3 FirmwareManagement = 'FirmwareManagement',
4 LocalAuthListManagement = 'LocalAuthListManagement',
7e1dc878 5 Reservation = 'Reservation',
b22787b4 6 SmartCharging = 'SmartCharging',
a807045b 7 RemoteTrigger = 'RemoteTrigger',
7e1dc878
JB
8}
9
c0560973 10export enum OCPP16StandardParametersKey {
6a64534b
JB
11 AllowOfflineTxForUnknownId = 'AllowOfflineTxForUnknownId',
12 AuthorizationCacheEnabled = 'AuthorizationCacheEnabled',
13 AuthorizeRemoteTxRequests = 'AuthorizeRemoteTxRequests',
14 BlinkRepeat = 'BlinkRepeat',
15 ClockAlignedDataInterval = 'ClockAlignedDataInterval',
16 ConnectionTimeOut = 'ConnectionTimeOut',
17 GetConfigurationMaxKeys = 'GetConfigurationMaxKeys',
6a64534b 18 HeartbeatInterval = 'HeartbeatInterval',
f0f65a62 19 HeartBeatInterval = 'HeartBeatInterval',
6a64534b
JB
20 LightIntensity = 'LightIntensity',
21 LocalAuthorizeOffline = 'LocalAuthorizeOffline',
22 LocalPreAuthorize = 'LocalPreAuthorize',
23 MaxEnergyOnInvalidId = 'MaxEnergyOnInvalidId',
24 MeterValuesAlignedData = 'MeterValuesAlignedData',
25 MeterValuesAlignedDataMaxLength = 'MeterValuesAlignedDataMaxLength',
26 MeterValuesSampledData = 'MeterValuesSampledData',
27 MeterValuesSampledDataMaxLength = 'MeterValuesSampledDataMaxLength',
28 MeterValueSampleInterval = 'MeterValueSampleInterval',
29 MinimumStatusDuration = 'MinimumStatusDuration',
30 NumberOfConnectors = 'NumberOfConnectors',
31 ResetRetries = 'ResetRetries',
32 ConnectorPhaseRotation = 'ConnectorPhaseRotation',
33 ConnectorPhaseRotationMaxLength = 'ConnectorPhaseRotationMaxLength',
34 StopTransactionOnEVSideDisconnect = 'StopTransactionOnEVSideDisconnect',
35 StopTransactionOnInvalidId = 'StopTransactionOnInvalidId',
36 StopTxnAlignedData = 'StopTxnAlignedData',
37 StopTxnAlignedDataMaxLength = 'StopTxnAlignedDataMaxLength',
38 StopTxnSampledData = 'StopTxnSampledData',
39 StopTxnSampledDataMaxLength = 'StopTxnSampledDataMaxLength',
40 SupportedFeatureProfiles = 'SupportedFeatureProfiles',
41 SupportedFeatureProfilesMaxLength = 'SupportedFeatureProfilesMaxLength',
42 TransactionMessageAttempts = 'TransactionMessageAttempts',
43 TransactionMessageRetryInterval = 'TransactionMessageRetryInterval',
44 UnlockConnectorOnEVSideDisconnect = 'UnlockConnectorOnEVSideDisconnect',
45 WebSocketPingInterval = 'WebSocketPingInterval',
46 LocalAuthListEnabled = 'LocalAuthListEnabled',
47 LocalAuthListMaxLength = 'LocalAuthListMaxLength',
48 SendLocalListMaxLength = 'SendLocalListMaxLength',
49 ReserveConnectorZeroSupported = 'ReserveConnectorZeroSupported',
50 ChargeProfileMaxStackLevel = 'ChargeProfileMaxStackLevel',
51 ChargingScheduleAllowedChargingRateUnit = 'ChargingScheduleAllowedChargingRateUnit',
52 ChargingScheduleMaxPeriods = 'ChargingScheduleMaxPeriods',
53 ConnectorSwitch3to1PhaseSupported = 'ConnectorSwitch3to1PhaseSupported',
a807045b 54 MaxChargingProfilesInstalled = 'MaxChargingProfilesInstalled',
6a64534b 55}
12fc74d6 56
6dad8e21 57export enum OCPP16VendorParametersKey {
a807045b 58 ConnectionUrl = 'ConnectionUrl',
12fc74d6 59}