|
@@ -0,0 +1,143 @@
|
|
|
+using Newtonsoft.Json;
|
|
|
+
|
|
|
+namespace EVCB_OCPP.Packet20.DataTypes.EnumTypes
|
|
|
+{
|
|
|
+ public enum MeasurandEnumType
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Current.Export")]
|
|
|
+ Current_Export = 1,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Current.Import")]
|
|
|
+ Current_Import,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Current.Offered")]
|
|
|
+ Current_Offered,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Active.Export.Register")]
|
|
|
+ Energy_Active_Export_Register,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Active.Import.Register")]
|
|
|
+ Energy_Active_Import_Register,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Reactive.Export.Register")]
|
|
|
+ Energy_Reactive_Export_Register,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Reactive.Import.Register")]
|
|
|
+ Energy_Reactive_Import_Register,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Active.Export.Interval")]
|
|
|
+ Energy_Active_Export_Interval,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Active.Import.Interval")]
|
|
|
+ Energy_Active_Import_Interval,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Active.Net")]
|
|
|
+ Energy_Active_Net,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Reactive.Export.Interval")]
|
|
|
+ Energy_Reactive_Export_Interval,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Reactive.Import.Interval")]
|
|
|
+ Energy_Reactive_Import_Interval,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Reactive.Net")]
|
|
|
+ Energy_Reactive_Net,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Apparent.Net")]
|
|
|
+ Energy_Apparent_Net,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Apparent.Import")]
|
|
|
+ Energy_Apparent_Import,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Energy.Apparent.Export")]
|
|
|
+ Energy_Apparent_Export,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ Frequency,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Power.Active.Export")]
|
|
|
+ Power_Active_Export,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Power.Active.Import")]
|
|
|
+ Power_Active_Import,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Power.Factor")]
|
|
|
+ Power_Factor,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Power.Offered")]
|
|
|
+ Power_Offered,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Power.Reactive.Export")]
|
|
|
+ Power_Reactive_Export,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [JsonProperty("Power.Reactive.Import")]
|
|
|
+ Power_Reactive_Import,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ SoC,
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ Voltage
|
|
|
+
|
|
|
+ }
|
|
|
+}
|