refactor: more coding style fixes
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 1.6 / Configuration.ts
1 export enum OCPP16SupportedFeatureProfiles {
2 Core = 'Core',
3 FirmwareManagement = 'FirmwareManagement',
4 LocalAuthListManagement = 'LocalAuthListManagement',
5 Reservation = 'Reservation',
6 SmartCharging = 'SmartCharging',
7 RemoteTrigger = 'RemoteTrigger',
8 }
9
10 export enum OCPP16StandardParametersKey {
11 AllowOfflineTxForUnknownId = 'AllowOfflineTxForUnknownId',
12 AuthorizationCacheEnabled = 'AuthorizationCacheEnabled',
13 AuthorizeRemoteTxRequests = 'AuthorizeRemoteTxRequests',
14 BlinkRepeat = 'BlinkRepeat',
15 ClockAlignedDataInterval = 'ClockAlignedDataInterval',
16 ConnectionTimeOut = 'ConnectionTimeOut',
17 GetConfigurationMaxKeys = 'GetConfigurationMaxKeys',
18 HeartbeatInterval = 'HeartbeatInterval',
19 HeartBeatInterval = 'HeartBeatInterval',
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',
54 MaxChargingProfilesInstalled = 'MaxChargingProfilesInstalled',
55 }
56
57 export enum OCPP16VendorParametersKey {
58 ConnectionUrl = 'ConnectionUrl',
59 }