5#ifndef OCPP_V2_ENUMS_HPP
6#define OCPP_V2_ENUMS_HPP
13enum class VariableMonitorType {
19namespace conversions {
22VariableMonitorType string_to_variable_monitor_type(
const std::string& s);
25namespace MonitoringLevelSeverity {
26constexpr int32_t Danger = 0;
27constexpr int32_t HardwareFailure = 1;
28constexpr int32_t SystemFailure = 2;
29constexpr int32_t Critical = 3;
30constexpr int32_t Error = 4;
31constexpr int32_t Alert = 5;
32constexpr int32_t Warning = 6;
33constexpr int32_t Notice = 7;
34constexpr int32_t Informational = 8;
35constexpr int32_t Debug = 9;
37constexpr int32_t MIN = Danger;
38constexpr int32_t MAX = Debug;