weheat 2024.11.1__py3-none-any.whl → 2025.11.24rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. weheat/__init__.py +6 -2
  2. weheat/abstractions/__init__.py +1 -1
  3. weheat/abstractions/discovery.py +11 -7
  4. weheat/abstractions/heat_pump.py +223 -81
  5. weheat/abstractions/user.py +16 -11
  6. weheat/api/__init__.py +1 -0
  7. weheat/api/energy_log_api.py +615 -127
  8. weheat/api/heat_pump_api.py +580 -374
  9. weheat/api/heat_pump_log_api.py +884 -360
  10. weheat/api/user_api.py +260 -115
  11. weheat/api_client.py +238 -265
  12. weheat/api_response.py +11 -15
  13. weheat/configuration.py +14 -9
  14. weheat/exceptions.py +59 -25
  15. weheat/models/__init__.py +8 -0
  16. weheat/models/boiler_type.py +8 -3
  17. weheat/models/device_state.py +9 -5
  18. weheat/models/dhw_type.py +8 -3
  19. weheat/models/energy_view_dto.py +87 -65
  20. weheat/models/heat_pump_log_view_dto.py +1394 -559
  21. weheat/models/heat_pump_model.py +8 -3
  22. weheat/models/heat_pump_status_enum.py +9 -4
  23. weheat/models/pagination_metadata.py +95 -0
  24. weheat/models/raw_heat_pump_log_dto.py +438 -375
  25. weheat/models/raw_heatpump_log_and_is_online_dto.py +578 -0
  26. weheat/models/read_all_heat_pump_dto.py +69 -53
  27. weheat/models/read_all_heat_pump_dto_paged_response.py +107 -0
  28. weheat/models/read_heat_pump_dto.py +64 -48
  29. weheat/models/read_user_dto.py +55 -37
  30. weheat/models/read_user_me_dto.py +124 -0
  31. weheat/models/role.py +10 -4
  32. weheat/models/total_energy_aggregate.py +111 -0
  33. weheat/rest.py +152 -259
  34. weheat-2025.11.24rc1.dist-info/METADATA +104 -0
  35. weheat-2025.11.24rc1.dist-info/RECORD +39 -0
  36. {weheat-2024.11.1.dist-info → weheat-2025.11.24rc1.dist-info}/WHEEL +1 -1
  37. weheat/abstractions/auth.py +0 -34
  38. weheat/models/heat_pump_type.py +0 -42
  39. weheat-2024.11.1.dist-info/METADATA +0 -107
  40. weheat-2024.11.1.dist-info/RECORD +0 -36
  41. {weheat-2024.11.1.dist-info → weheat-2025.11.24rc1.dist-info/licenses}/LICENSE +0 -0
  42. {weheat-2024.11.1.dist-info → weheat-2025.11.24rc1.dist-info}/top_level.txt +0 -0
@@ -18,750 +18,1585 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
  from datetime import datetime
21
- from typing import Optional, Union
22
- from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional, Union
22
+ from pydantic import BaseModel, StrictFloat, StrictInt, StrictStr
23
+ from pydantic import Field
24
+ try:
25
+ from typing import Self
26
+ except ImportError:
27
+ from typing_extensions import Self
23
28
 
24
29
  class HeatPumpLogViewDto(BaseModel):
25
30
  """
26
31
  HeatPumpLogViewDto
27
- """
28
- time_bucket: Optional[datetime] = Field(None, alias="timeBucket", description="Timestamp of the beginning of this interval (UTC)")
29
- interval: Optional[StrictStr] = Field(None, description="Interval Granularity of this HeatPumpLogViewDto (Correct intervals include: \"Hour\", \"Day\", \"Week\", \"Month\", \"Year\")")
30
- time_covered_in_interval: Optional[StrictInt] = Field(None, alias="timeCoveredInInterval", description="Amount of time covered by this interval in seconds out of a maximum of the Interval (Granularity) in seconds")
31
- heat_pump_state_standby: Optional[StrictInt] = Field(None, alias="heatPumpStateStandby", description="Amount of seconds the heat pump spend in the standby state for this interval")
32
- heat_pump_state_heating: Optional[StrictInt] = Field(None, alias="heatPumpStateHeating", description="Amount of seconds the heat pump spend in the heating state for this interval")
33
- heat_pump_state_defrost_req_active: Optional[StrictInt] = Field(None, alias="heatPumpStateDefrostReqActive", description="Amount of seconds the heat pump spend in the defrost required active state for this interval")
34
- heat_pump_state_defrost_open_valve: Optional[StrictInt] = Field(None, alias="heatPumpStateDefrostOpenValve", description="Amount of seconds the heat pump spend in the defrost opening valve state for this interval")
35
- heat_pump_state_defrost_close_valve: Optional[StrictInt] = Field(None, alias="heatPumpStateDefrostCloseValve", description="Amount of seconds the heat pump spend in the defrost state closing valve for this interval")
36
- heat_pump_state_defrost_drip: Optional[StrictInt] = Field(None, alias="heatPumpStateDefrostDrip", description="Amount of seconds the heat pump spend in the defrost drip state for this interval")
37
- heat_pump_state_defrost_cooling: Optional[StrictInt] = Field(None, alias="heatPumpStateDefrostCooling", description="Amount of seconds the heat pump spend in the defrost cooling state for this interval")
38
- heat_pump_state_cooling: Optional[StrictInt] = Field(None, alias="heatPumpStateCooling", description="Amount of seconds the heat pump spend in the cooling state for this interval")
39
- heat_pump_state_dhw: Optional[StrictInt] = Field(None, alias="heatPumpStateDHW", description="Amount of seconds the heat pump spend in the (heating) Domestic Hot Water stae for this interval")
40
- heat_pump_state_legionnaires_disease_prevention: Optional[StrictInt] = Field(None, alias="heatPumpStateLegionnairesDiseasePrevention", description="Amount of seconds the heat pump spend in the Legionnaires' Disease Prevention state for this interval")
41
- rpm_control_startup: Optional[StrictInt] = Field(None, alias="rpmControlStartup", description="Amount of seconds the heat pump spend in one of the RPM Control Startup states for this interval")
42
- rpm_control_running: Optional[StrictInt] = Field(None, alias="rpmControlRunning", description="Amount of seconds the heat pump spend in one of the RPM Control Running state for this interval")
43
- rpm_control_running_abnormally: Optional[StrictInt] = Field(None, alias="rpmControlRunningAbnormally", description="Amount of seconds the heat pump spend in the RPM Control Running Abnormally states for this interval")
44
- rpm_control_shutdown: Optional[StrictInt] = Field(None, alias="rpmControlShutdown", description="Amount of seconds the heat pump spend in one of the RPM Control Shutdown states for this interval")
45
- control_bridge_status_water_pump: Optional[StrictInt] = Field(None, alias="controlBridgeStatusWaterPump", description="Amount of seconds the heat pump spend in the Control Bridge Status Water Pump state to true for this interval")
46
- control_bridge_status_dhw_valve: Optional[StrictInt] = Field(None, alias="controlBridgeStatusDhwValve", description="Amount of seconds the heat pump spend in the Control Bridge Status DHW Valve state to true for this interval")
47
- control_bridge_status_gas_boiler: Optional[StrictInt] = Field(None, alias="controlBridgeStatusGasBoiler", description="Amount of seconds the heat pump spend in the Control Bridge Status Gas Boiler state to true for this interval")
48
- control_bridge_status_electric_heater: Optional[StrictInt] = Field(None, alias="controlBridgeStatusElectricHeater", description="Amount of seconds the heat pump spend in the Control Bridge Status Electric Heater state to true for this interval")
49
- control_bridge_status_water_pump2: Optional[StrictInt] = Field(None, alias="controlBridgeStatusWaterPump2", description="Amount of seconds the heat pump spend in the Control Bridge Status Water Pump 2 state to true for this interval")
50
- dtc_none: Optional[StrictInt] = Field(None, alias="dtcNone", description="Amount of seconds the heat pump spend in the No DTC codes Error state for this interval (staff only)")
51
- dtc_continue: Optional[StrictInt] = Field(None, alias="dtcContinue", description="Amount of seconds the heat pump spend in the DTC but can Continue Error state for this interval (staff only)")
52
- dtc_compressor_off: Optional[StrictInt] = Field(None, alias="dtcCompressorOff", description="Amount of seconds the heat pump spend in the DTC Compressor Off Error state for this interval (staff only)")
53
- dtc_defrost_forbidden: Optional[StrictInt] = Field(None, alias="dtcDefrostForbidden", description="Amount of seconds the heat pump spend in the DTC Defrost Forbidden Error state for this interval (staff only)")
54
- dtc_request_service: Optional[StrictInt] = Field(None, alias="dtcRequestService", description="Amount of seconds the heat pump spend in the DTC Request Service Error state for this interval (staff only)")
55
- dtc_use_heating_curve: Optional[StrictInt] = Field(None, alias="dtcUseHeatingCurve", description="Amount of seconds the heat pump spend in the DTC Use Heating Curve (only) Error state for this interval (staff only)")
56
- dtc_dhw_forbidden: Optional[StrictInt] = Field(None, alias="dtcDhwForbidden", description="Amount of seconds the heat pump spend in the DTC HW Forbidden Error state for this interval (staff only)")
57
- dtc_error: Optional[StrictInt] = Field(None, alias="dtcError", description="Amount of seconds the heat pump spend in the DTC DTC Error state for this interval (staff only)")
58
- dtc_inactive: Optional[StrictInt] = Field(None, alias="dtcInactive", description="Amount of seconds the heat pump spend in the DTC Inactive Error state for this interval (staff only)")
59
- signal_strength_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="signalStrengthAverage", description="Average of the Signal Strength (integer out of 20) of the heat pump for this interval (staff only)")
60
- signal_strength_min: Optional[StrictInt] = Field(None, alias="signalStrengthMin", description="Minimal Signal Strength (integer out of 20) of the heat pump for this interval (staff only)")
61
- signal_strength_max: Optional[StrictInt] = Field(None, alias="signalStrengthMax", description="Maximum Signal Strength (integer out of 20) of the heat pump for this interval (staff only)")
62
- t1_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="t1Average", description="Average temperature of the top DHW sensor (T1) of the heat pump for this interval")
63
- t1_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="t1Min", description="Minimum temperature of the top DHW sensor (T1) of the heat pump for this interval")
64
- t1_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="t1Max", description="Maximum temperature of the top DHW sensor (T1) of the heat pump for this interval")
65
- t2_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="t2Average", description="Average temperature of the bottom DHW sensor (T2) of the heat pump for this interval")
66
- t2_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="t2Min", description="Minimum temperature of the bottom DHW sensor (T2) of the heat pump for this interval")
67
- t2_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="t2Max", description="Maximum temperature of the bottom DHW sensor (T2) of the heat pump for this interval")
68
- t_spare_ntc_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tSpareNtcAverage", description="Average temperature of the spare DHW sensor (TSpareNTC) of the heat pump for this interval (staff only)")
69
- t_spare_ntc_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tSpareNtcMin", description="Minimum temperature of the spare DHW sensor (TSpareNTC) of the heat pump for this interval (staff only)")
70
- t_spare_ntc_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tSpareNtcMax", description="Maximum temperature of the spare DHW sensor (TSpareNTC) of the heat pump for this interval (staff only)")
71
- t_board_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tBoardAverage", description="Average temperature of the control board of the heat pump for this interval (staff only)")
72
- t_board_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tBoardMin", description="Minimum temperature of the control board of the heat pump for this interval (staff only)")
73
- t_board_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tBoardMax", description="Maximum temperature of the control board of the heat pump for this interval (staff only)")
74
- t_air_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tAirInAverage", description="Average temperature of air going into the heat pump for this interval")
75
- t_air_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tAirInMin")
76
- t_air_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tAirInMax")
77
- t_air_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tAirOutAverage", description="Average temperature of air going out of the heat pump for this interval")
78
- t_air_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tAirOutMin", description="Minimum temperature of air going out of the heat pump for this interval")
79
- t_air_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tAirOutMax", description="Maximum temperature of air going out of the heat pump for this interval")
80
- t_water_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tWaterInAverage", description="Average temperature of the water going into the heat pump for this interval")
81
- t_water_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tWaterInMin", description="Minimum temperature of the water going into the heat pump for this interval")
82
- t_water_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tWaterInMax", description="Maximum temperature of the water going into the heat pump for this interval")
83
- t_water_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tWaterOutAverage", description="Average temperature of the water going out of the heat pump for this interval")
84
- t_water_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tWaterOutMin", description="Minimum temperature of the water going out of the heat pump for this interval")
85
- t_water_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tWaterOutMax", description="Maximum temperature of the water going out of the heat pump for this interval")
86
- t_water_house_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tWaterHouseInAverage", description="Average temperature of the water going into the house for this interval")
87
- t_water_house_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tWaterHouseInMin", description="Minimum temperature of the water going into the house for this interval")
88
- t_water_house_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tWaterHouseInMax", description="Maximum temperature of the water going into the house for this interval")
89
- rpm_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="rpmAverage", description="Average RPM of the compressor for this interval (not for consumers)")
90
- rpm_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="rpmMin", description="Minimum RPM of the compressor for this interval (not for consumers)")
91
- rpm_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="rpmMax", description="Maximum RPM of the compressor for this interval (not for consumers)")
92
- rpm_limiter_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="rpmLimiterAverage", description="Average RPM value the heat pump was limited to for this interval (staff only)")
93
- rpm_limiter_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="rpmLimiterMin", description="Minimum RPM value the heat pump was limited to for this interval (staff only)")
94
- rpm_limiter_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="rpmLimiterMax", description="Maximum RPM value the heat pump was limited to for this interval (staff only)")
95
- rpm_limiter_no_limit: Optional[StrictInt] = Field(None, alias="rpmLimiterNoLimit", description="Amount of time the compressor RPM was not Limited at all by the RPM Limiter state for this interval (staff only)")
96
- rpm_limiter_power_limit: Optional[StrictInt] = Field(None, alias="rpmLimiterPowerLimit", description="Amount of time the compressor RPM was being most limited by the amount of Power by the RPM Limiter state for this interval (staff only)")
97
- rpm_limiter_defrost: Optional[StrictInt] = Field(None, alias="rpmLimiterDefrost", description="Amount of time the compressor RPM was being most limited because of Defrost by the RPM Limiter state for this interval (staff only)")
98
- rpm_limiter_silent_hours: Optional[StrictInt] = Field(None, alias="rpmLimiterSilentHours", description="Amount of time the compressor RPM was being most limited because of Silent Hours by the RPM Limiter state for this interval (staff only)")
99
- rpm_limiter_hp_control: Optional[StrictInt] = Field(None, alias="rpmLimiterHPControl", description="Amount of time the compressor RPM was being most limited because of HP Control method by the RPM Limiter state for this interval (staff only)")
100
- rpm_limiter_pressure: Optional[StrictInt] = Field(None, alias="rpmLimiterPressure", description="Amount of time the compressor RPM was being most limited because of its Pressure by the RPM Limiter state for this interval (staff only)")
101
- rpm_limiter_water_out: Optional[StrictInt] = Field(None, alias="rpmLimiterWaterOut", description="Amount of time the compressor RPM was being most limited because of its Water Out temperature by the RPM Limiter state for this interval (staff only)")
102
- rpm_limiter_envelope: Optional[StrictInt] = Field(None, alias="rpmLimiterEnvelope", description="Amount of time the compressor RPM was being most limited because of Envelope control method by the RPM Limiter state for this interval (staff only)")
103
- rpm_limiter_house_in: Optional[StrictInt] = Field(None, alias="rpmLimiterHouseIn", description="Amount of time the compressor RPM was being most limited because of its Water In temperature by the RPM Limiter state for this interval (staff only)")
104
- p_compressor_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pCompressorInAverage", description="Average pressure on the intake side of the compressor for this interval (not for consumers)")
105
- p_compressor_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pCompressorInMin", description="Minimum pressure on the intake side of the compressor for this interval (not for consumers)")
106
- p_compressor_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pCompressorInMax", description="Maximum pressure on the intake side of the compressor for this interval (not for consumers)")
107
- p_compressor_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pCompressorOutAverage", description="Average pressure on the output side of the compressor for this interval (not for consumers)")
108
- p_compressor_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pCompressorOutMin", description="Minimum pressure on the output side of the compressor for this interval (not for consumers)")
109
- p_compressor_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pCompressorOutMax", description="Maximum pressure on the output side of the compressor for this interval (not for consumers)")
110
- p_compressor_in_target_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pCompressorInTargetAverage", description="Average target pressure (on the intake side) of the compressor for this interval (not for consumers)")
111
- p_compressor_in_target_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pCompressorInTargetMin", description="Minimum target pressure (on the intake side) of the compressor for this interval (not for consumers)")
112
- p_compressor_in_target_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pCompressorInTargetMax", description="Maximum target pressure (on the intake side) of the compressor for this interval (not for consumers)")
113
- t_inverter_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tInverterAverage", description="Average temperature of the inverter for this interval (staff only)")
114
- t_inverter_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tInverterMin", description="Minimum temperature of the inverter for this interval (staff only)")
115
- t_inverter_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tInverterMax", description="Maximum temperature of the inverter for this interval (staff only)")
116
- t_compressor_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorInAverage", description="Average temperature of intake side of the compressor for this interval (not for consumers)")
117
- t_compressor_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorInMin", description="Minimum temperature of intake side of the compressor for this interval (not for consumers)")
118
- t_compressor_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorInMax", description="Maximum temperature of intake side of the compressor for this interval (not for consumers)")
119
- t_compressor_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorOutAverage", description="Average temperature of output side of the compressor for this interval (not for consumers)")
120
- t_compressor_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorOutMin", description="Minimum temperature of output side of the compressor for this interval (not for consumers)")
121
- t_compressor_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorOutMax", description="Maximum temperature of output side of the compressor for this interval (not for consumers)")
122
- t_compressor_in_transient_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorInTransientAverage", description="Average temperature transient for the intake side of the compressor for this interval (staff only)")
123
- t_compressor_in_transient_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorInTransientMin", description="Minimum temperature transient for the intake side of the compressor for this interval (staff only)")
124
- t_compressor_in_transient_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorInTransientMax", description="Maximum temperature transient for the intake side of the compressor for this interval (staff only)")
125
- t_compressor_out_transient_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorOutTransientAverage", description="Average temperature transient for the output side of the compressor for this interval (staff only)")
126
- t_compressor_out_transient_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorOutTransientMin", description="Minimum temperature transient for the output side of the compressor for this interval (staff only)")
127
- t_compressor_out_transient_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tCompressorOutTransientMax", description="Maximum temperature transient for the output side of the compressor for this interval (staff only)")
128
- delta_t_compressor_in_superheat_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="deltaTCompressorInSuperheatAverage", description="Average temperature difference in the compressor for Superheat for this interval (staff only)")
129
- delta_t_compressor_in_superheat_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="deltaTCompressorInSuperheatMin", description="Minimum temperature difference in the compressor for Superheat for this interval (staff only)")
130
- delta_t_compressor_in_superheat_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="deltaTCompressorInSuperheatMax", description="Maximum temperature difference in the compressor for Superheat for this interval (staff only)")
131
- compressor_power_low_accuracy_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="compressorPowerLowAccuracyAverage", description="Average power used by the compressor (low accuracy) for this interval (staff only)")
132
- compressor_power_low_accuracy_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="compressorPowerLowAccuracyMin", description="Minimum power used by the compressor (low accuracy) for this interval (staff only)")
133
- compressor_power_low_accuracy_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="compressorPowerLowAccuracyMax", description="Maximum power used by the compressor (low accuracy) for this interval (staff only)")
134
- fan_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanAverage", description="Average percentage of the fan used for this interval (staff only)")
135
- fan_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanMin", description="Minimum percentage of the fan used for this interval (staff only)")
136
- fan_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanMax", description="Maximum percentage of the fan used for this interval (staff only)")
137
- fan_power_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanPowerAverage", description="Average power used by the fan for this interval (staff only)")
138
- fan_power_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanPowerMin", description="Minimum power used by the fan for this interval (staff only)")
139
- fan_power_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanPowerMax", description="Maximum power used by the fan for this interval (staff only)")
140
- cm_mass_power_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="cmMassPowerInAverage", description="Average of the total amount of energy produced by the heat pump for this interval (staff only)")
141
- cm_mass_power_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="cmMassPowerOutAverage", description="Average of the total amount of energy produced by the heat pump for this interval (staff only)")
142
- p_requested_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pRequestedAverage", description="Average Power requested by the heat pump for this interval (staff only)")
143
- p_requested_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pRequestedMin", description="Minimum Power requested by the heat pump for this interval (staff only)")
144
- p_requested_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pRequestedMax", description="Maximum Power requested by the heat pump for this interval (staff only)")
145
- power_error_integral_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="powerErrorIntegralAverage", description="Average value of the PowerErrorIntegral for this interval (staff only)")
146
- power_error_integral_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="powerErrorIntegralMin", description="Minimum value of the PowerErrorIntegral for this interval (staff only)")
147
- power_error_integral_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="powerErrorIntegralMax", description="Maximum value of the PowerErrorIntegral for this interval (staff only)")
148
- thermostat_state_off: Optional[StrictInt] = Field(None, alias="thermostatStateOff", description="Amount of seconds the heat pump spend in the Thermostat State Off state for this interval")
149
- thermostat_state_on: Optional[StrictInt] = Field(None, alias="thermostatStateOn", description="Amount of seconds the heat pump spend in the Thermostat State On state for this interval")
150
- t_room_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomAverage", description="Average temperature of the room for this interval")
151
- t_room_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomMin", description="Minimum temperature of the room for this interval")
152
- t_room_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomMax", description="Maximum temperature of the room for this interval")
153
- t_room_target_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomTargetAverage", description="Average target room temperature of the thermostat for this interval")
154
- t_room_target_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomTargetMin", description="Minimum target room temperature of the thermostat for this interval")
155
- t_room_target_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomTargetMax", description="Maximum target room temperature of the thermostat for this interval")
156
- t_thermostat_setpoint_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tThermostatSetpointAverage", description="Average temperature setpoint of the thermostat for this interval OR the water setpoint of the heat pump")
157
- t_thermostat_setpoint_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tThermostatSetpointMin", description="Minimum temperature setpoint of the thermostat for this interval OR the water setpoint of the heat pump")
158
- t_thermostat_setpoint_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tThermostatSetpointMax", description="Maximum temperature setpoint of the thermostat for this interval OR the water setpoint of the heat pump")
159
- ot_boiler_feed_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerFeedTemperatureAverage", description="Average OpenTherm boiler water feed temperature for this interval")
160
- ot_boiler_feed_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerFeedTemperatureMin", description="Minimum OpenTherm boiler water feed temperature for this interval")
161
- ot_boiler_feed_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerFeedTemperatureMax", description="Maximum OpenTherm boiler water feed temperature for this interval")
162
- ot_boiler_return_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerReturnTemperatureAverage", description="Average OpenTherm boiler water return temperature for this interval")
163
- ot_boiler_return_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerReturnTemperatureMin", description="Minimum OpenTherm boiler water return temperature for this interval")
164
- ot_boiler_return_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerReturnTemperatureMax", description="Maximum OpenTherm boiler water return temperature for this interval")
165
- __properties = ["timeBucket", "interval", "timeCoveredInInterval", "heatPumpStateStandby", "heatPumpStateHeating", "heatPumpStateDefrostReqActive", "heatPumpStateDefrostOpenValve", "heatPumpStateDefrostCloseValve", "heatPumpStateDefrostDrip", "heatPumpStateDefrostCooling", "heatPumpStateCooling", "heatPumpStateDHW", "heatPumpStateLegionnairesDiseasePrevention", "rpmControlStartup", "rpmControlRunning", "rpmControlRunningAbnormally", "rpmControlShutdown", "controlBridgeStatusWaterPump", "controlBridgeStatusDhwValve", "controlBridgeStatusGasBoiler", "controlBridgeStatusElectricHeater", "controlBridgeStatusWaterPump2", "dtcNone", "dtcContinue", "dtcCompressorOff", "dtcDefrostForbidden", "dtcRequestService", "dtcUseHeatingCurve", "dtcDhwForbidden", "dtcError", "dtcInactive", "signalStrengthAverage", "signalStrengthMin", "signalStrengthMax", "t1Average", "t1Min", "t1Max", "t2Average", "t2Min", "t2Max", "tSpareNtcAverage", "tSpareNtcMin", "tSpareNtcMax", "tBoardAverage", "tBoardMin", "tBoardMax", "tAirInAverage", "tAirInMin", "tAirInMax", "tAirOutAverage", "tAirOutMin", "tAirOutMax", "tWaterInAverage", "tWaterInMin", "tWaterInMax", "tWaterOutAverage", "tWaterOutMin", "tWaterOutMax", "tWaterHouseInAverage", "tWaterHouseInMin", "tWaterHouseInMax", "rpmAverage", "rpmMin", "rpmMax", "rpmLimiterAverage", "rpmLimiterMin", "rpmLimiterMax", "rpmLimiterNoLimit", "rpmLimiterPowerLimit", "rpmLimiterDefrost", "rpmLimiterSilentHours", "rpmLimiterHPControl", "rpmLimiterPressure", "rpmLimiterWaterOut", "rpmLimiterEnvelope", "rpmLimiterHouseIn", "pCompressorInAverage", "pCompressorInMin", "pCompressorInMax", "pCompressorOutAverage", "pCompressorOutMin", "pCompressorOutMax", "pCompressorInTargetAverage", "pCompressorInTargetMin", "pCompressorInTargetMax", "tInverterAverage", "tInverterMin", "tInverterMax", "tCompressorInAverage", "tCompressorInMin", "tCompressorInMax", "tCompressorOutAverage", "tCompressorOutMin", "tCompressorOutMax", "tCompressorInTransientAverage", "tCompressorInTransientMin", "tCompressorInTransientMax", "tCompressorOutTransientAverage", "tCompressorOutTransientMin", "tCompressorOutTransientMax", "deltaTCompressorInSuperheatAverage", "deltaTCompressorInSuperheatMin", "deltaTCompressorInSuperheatMax", "compressorPowerLowAccuracyAverage", "compressorPowerLowAccuracyMin", "compressorPowerLowAccuracyMax", "fanAverage", "fanMin", "fanMax", "fanPowerAverage", "fanPowerMin", "fanPowerMax", "cmMassPowerInAverage", "cmMassPowerOutAverage", "pRequestedAverage", "pRequestedMin", "pRequestedMax", "powerErrorIntegralAverage", "powerErrorIntegralMin", "powerErrorIntegralMax", "thermostatStateOff", "thermostatStateOn", "tRoomAverage", "tRoomMin", "tRoomMax", "tRoomTargetAverage", "tRoomTargetMin", "tRoomTargetMax", "tThermostatSetpointAverage", "tThermostatSetpointMin", "tThermostatSetpointMax", "otBoilerFeedTemperatureAverage", "otBoilerFeedTemperatureMin", "otBoilerFeedTemperatureMax", "otBoilerReturnTemperatureAverage", "otBoilerReturnTemperatureMin", "otBoilerReturnTemperatureMax"]
166
-
167
- class Config:
168
- """Pydantic configuration"""
169
- allow_population_by_field_name = True
170
- validate_assignment = True
32
+ """ # noqa: E501
33
+ time_bucket: Optional[datetime] = Field(default=None, description="Timestamp of the beginning of this interval (UTC)", alias="timeBucket")
34
+ interval: Optional[StrictStr] = Field(default=None, description="Interval Granularity of this HeatPumpLogViewDto (Correct intervals include: \"Hour\", \"Day\", \"Week\", \"Month\", \"Year\")")
35
+ time_covered_in_interval: Optional[StrictInt] = Field(default=None, description="Amount of time covered by this interval in seconds out of a maximum of the Interval (Granularity) in seconds", alias="timeCoveredInInterval")
36
+ heat_pump_state_standby: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the standby state for this interval", alias="heatPumpStateStandby")
37
+ heat_pump_state_heating: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the heating state for this interval", alias="heatPumpStateHeating")
38
+ heat_pump_state_cooling: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the cooling state for this interval", alias="heatPumpStateCooling")
39
+ heat_pump_state_dhw: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the (heating) Domestic Hot Water stae for this interval", alias="heatPumpStateDhw")
40
+ heat_pump_state_legionella: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Legionnaires' Disease Prevention state for this interval", alias="heatPumpStateLegionella")
41
+ heat_pump_state_manual_control: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in Manual Control state for this interval", alias="heatPumpStateManualControl")
42
+ heat_pump_state_dhw_defrost: Optional[StrictInt] = Field(default=None, alias="heatPumpStateDhwDefrost")
43
+ heat_pump_state_heating_defrost: Optional[StrictInt] = Field(default=None, alias="heatPumpStateHeatingDefrost")
44
+ control_bridge_status_water_pump: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Control Bridge Status Water Pump state to true for this interval", alias="controlBridgeStatusWaterPump")
45
+ control_bridge_status_gas_boiler: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Control Bridge Status Gas Boiler state to true for this interval", alias="controlBridgeStatusGasBoiler")
46
+ control_bridge_status_electric_heater: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Control Bridge Status Electric Heater state to true for this interval", alias="controlBridgeStatusElectricHeater")
47
+ control_bridge_status_water_pump2: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Control Bridge Status Water Pump 2 state to true for this interval", alias="controlBridgeStatusWaterPump2")
48
+ t1_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the top DHW sensor (T1) of the heat pump for this interval", alias="t1Average")
49
+ t1_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the top DHW sensor (T1) of the heat pump for this interval", alias="t1Min")
50
+ t1_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the top DHW sensor (T1) of the heat pump for this interval", alias="t1Max")
51
+ t2_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the bottom DHW sensor (T2) of the heat pump for this interval", alias="t2Average")
52
+ t2_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the bottom DHW sensor (T2) of the heat pump for this interval", alias="t2Min")
53
+ t2_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the bottom DHW sensor (T2) of the heat pump for this interval", alias="t2Max")
54
+ t_air_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of air going into the heat pump for this interval", alias="tAirInAverage")
55
+ t_air_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of air going into the heat pump for this interval", alias="tAirInMin")
56
+ t_air_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of air going into the heat pump for this interval", alias="tAirInMax")
57
+ t_air_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of air going out of the heat pump for this interval", alias="tAirOutAverage")
58
+ t_air_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of air going out of the heat pump for this interval", alias="tAirOutMin")
59
+ t_air_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of air going out of the heat pump for this interval", alias="tAirOutMax")
60
+ t_water_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the water going into the heat pump for this interval", alias="tWaterInAverage")
61
+ t_water_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the water going into the heat pump for this interval", alias="tWaterInMin")
62
+ t_water_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the water going into the heat pump for this interval", alias="tWaterInMax")
63
+ t_water_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the water going out of the heat pump for this interval", alias="tWaterOutAverage")
64
+ t_water_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the water going out of the heat pump for this interval", alias="tWaterOutMin")
65
+ t_water_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the water going out of the heat pump for this interval", alias="tWaterOutMax")
66
+ t_water_house_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the water going into the house for this interval", alias="tWaterHouseInAverage")
67
+ t_water_house_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the water going into the house for this interval", alias="tWaterHouseInMin")
68
+ t_water_house_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the water going into the house for this interval", alias="tWaterHouseInMax")
69
+ t_room_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the room for this interval", alias="tRoomAverage")
70
+ t_room_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the room for this interval", alias="tRoomMin")
71
+ t_room_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the room for this interval", alias="tRoomMax")
72
+ t_room_target_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average target room temperature of the thermostat for this interval", alias="tRoomTargetAverage")
73
+ t_room_target_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum target room temperature of the thermostat for this interval", alias="tRoomTargetMin")
74
+ t_room_target_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum target room temperature of the thermostat for this interval", alias="tRoomTargetMax")
75
+ t_thermostat_setpoint_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature setpoint of the thermostat for this interval OR the water setpoint of the heat pump", alias="tThermostatSetpointAverage")
76
+ t_thermostat_setpoint_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature setpoint of the thermostat for this interval OR the water setpoint of the heat pump", alias="tThermostatSetpointMin")
77
+ t_thermostat_setpoint_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature setpoint of the thermostat for this interval OR the water setpoint of the heat pump", alias="tThermostatSetpointMax")
78
+ ot_boiler_feed_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureAverage")
79
+ ot_boiler_feed_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureMin")
80
+ ot_boiler_feed_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureMax")
81
+ ot_boiler_return_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureAverage")
82
+ ot_boiler_return_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureMin")
83
+ ot_boiler_return_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureMax")
84
+ thermostat_state_off: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Thermostat State Off state for this interval", alias="thermostatStateOff")
85
+ thermostat_state_on: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Thermostat State On state for this interval", alias="thermostatStateOn")
86
+ rpm_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average RPM of the compressor for this interval (not for consumers)", alias="rpmAverage")
87
+ rpm_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum RPM of the compressor for this interval (not for consumers)", alias="rpmMin")
88
+ rpm_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum RPM of the compressor for this interval (not for consumers)", alias="rpmMax")
89
+ central_heating_flow_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average flow rate for central heating circuit for this interval (staff only)", alias="centralHeatingFlowAverage")
90
+ central_heating_flow_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum flow rate for central heating circuit for this interval (staff only)", alias="centralHeatingFlowMin")
91
+ central_heating_flow_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum flow rate for central heating circuit for this interval (staff only)", alias="centralHeatingFlowMax")
92
+ central_heating_flow_state_standby: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in standby state for this interval (staff only)", alias="centralHeatingFlowStateStandby")
93
+ central_heating_flow_state_standby_no_pwm: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in standby (no PWM) state for this interval (staff only)", alias="centralHeatingFlowStateStandbyNoPwm")
94
+ central_heating_flow_state_motor_blocked: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in motor blocked state for this interval (staff only)", alias="centralHeatingFlowStateMotorBlocked")
95
+ central_heating_flow_state_pumping: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in pumping state for this interval (staff only)", alias="centralHeatingFlowStatePumping")
96
+ central_heating_flow_state_pumping_no_pwm: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in pumping (no PWM) state for this interval (staff only)", alias="centralHeatingFlowStatePumpingNoPwm")
97
+ central_heating_flow_state_suboptimal_running: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in suboptimal running state for this interval (staff only)", alias="centralHeatingFlowStateSuboptimalRunning")
98
+ central_heating_flow_state_stopped_momentarily: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in stopped momentarily state for this interval (staff only)", alias="centralHeatingFlowStateStoppedMomentarily")
99
+ central_heating_flow_state_stopped_permanent_damage: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in stopped permanent damage state for this interval (staff only)", alias="centralHeatingFlowStateStoppedPermanentDamage")
100
+ dhw_flow_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average flow rate for DHW circuit for this interval (staff only)", alias="dhwFlowAverage")
101
+ dhw_flow_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum flow rate for DHW circuit for this interval (staff only)", alias="dhwFlowMin")
102
+ dhw_flow_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum flow rate for DHW circuit for this interval (staff only)", alias="dhwFlowMax")
103
+ dhw_flow_state_standby: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in standby state for this interval (staff only)", alias="dhwFlowStateStandby")
104
+ dhw_flow_state_standby_no_pwm: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in standby (no PWM) state for this interval (staff only)", alias="dhwFlowStateStandbyNoPwm")
105
+ dhw_flow_state_motor_blocked: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in motor blocked state for this interval (staff only)", alias="dhwFlowStateMotorBlocked")
106
+ dhw_flow_state_pumping: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in pumping state for this interval (staff only)", alias="dhwFlowStatePumping")
107
+ dhw_flow_state_pumping_no_pwm: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in pumping (no PWM) state for this interval (staff only)", alias="dhwFlowStatePumpingNoPwm")
108
+ dhw_flow_state_suboptimal_running: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in suboptimal running state for this interval (staff only)", alias="dhwFlowStateSuboptimalRunning")
109
+ dhw_flow_state_stopped_momentarily: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in stopped momentarily state for this interval (staff only)", alias="dhwFlowStateStoppedMomentarily")
110
+ dhw_flow_state_stopped_permanent_damage: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in stopped permanent damage state for this interval (staff only)", alias="dhwFlowStateStoppedPermanentDamage")
111
+ signal_strength_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average of the Signal Strength (integer out of 20) of the heat pump for this interval (staff only)", alias="signalStrengthAverage")
112
+ signal_strength_min: Optional[StrictInt] = Field(default=None, description="Minimal Signal Strength (integer out of 20) of the heat pump for this interval (staff only)", alias="signalStrengthMin")
113
+ signal_strength_max: Optional[StrictInt] = Field(default=None, description="Maximum Signal Strength (integer out of 20) of the heat pump for this interval (staff only)", alias="signalStrengthMax")
114
+ rpm_limiter_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average RPM value the heat pump was limited to for this interval (staff only)", alias="rpmLimiterAverage")
115
+ rpm_limiter_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum RPM value the heat pump was limited to for this interval (staff only)", alias="rpmLimiterMin")
116
+ rpm_limiter_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum RPM value the heat pump was limited to for this interval (staff only)", alias="rpmLimiterMax")
117
+ rpm_limiter_no_limit: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was not Limited at all by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterNoLimit")
118
+ rpm_limiter_power_limit: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited by the amount of Power by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterPowerLimit")
119
+ rpm_limiter_defrost: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of Defrost by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterDefrost")
120
+ rpm_limiter_silent_hours: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of Silent Hours by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterSilentHours")
121
+ rpm_limiter_hp_control: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of HP Control method by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterHPControl")
122
+ rpm_limiter_pressure: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of its Pressure by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterPressure")
123
+ rpm_limiter_water_out: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of its Water Out temperature by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterWaterOut")
124
+ rpm_limiter_envelope: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of Envelope control method by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterEnvelope")
125
+ rpm_limiter_house_in: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of its Water In temperature by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterHouseIn")
126
+ p_compressor_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average pressure on the intake side of the compressor for this interval (not for consumers)", alias="pCompressorInAverage")
127
+ p_compressor_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum pressure on the intake side of the compressor for this interval (not for consumers)", alias="pCompressorInMin")
128
+ p_compressor_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum pressure on the intake side of the compressor for this interval (not for consumers)", alias="pCompressorInMax")
129
+ p_compressor_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average pressure on the output side of the compressor for this interval (not for consumers)", alias="pCompressorOutAverage")
130
+ p_compressor_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum pressure on the output side of the compressor for this interval (not for consumers)", alias="pCompressorOutMin")
131
+ p_compressor_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum pressure on the output side of the compressor for this interval (not for consumers)", alias="pCompressorOutMax")
132
+ p_compressor_in_target_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average target pressure (on the intake side) of the compressor for this interval (not for consumers)", alias="pCompressorInTargetAverage")
133
+ p_compressor_in_target_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum target pressure (on the intake side) of the compressor for this interval (not for consumers)", alias="pCompressorInTargetMin")
134
+ p_compressor_in_target_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum target pressure (on the intake side) of the compressor for this interval (not for consumers)", alias="pCompressorInTargetMax")
135
+ t_compressor_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of intake side of the compressor for this interval (not for consumers)", alias="tCompressorInAverage")
136
+ t_compressor_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of intake side of the compressor for this interval (not for consumers)", alias="tCompressorInMin")
137
+ t_compressor_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of intake side of the compressor for this interval (not for consumers)", alias="tCompressorInMax")
138
+ t_compressor_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of output side of the compressor for this interval (not for consumers)", alias="tCompressorOutAverage")
139
+ t_compressor_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of output side of the compressor for this interval (not for consumers)", alias="tCompressorOutMin")
140
+ t_compressor_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of output side of the compressor for this interval (not for consumers)", alias="tCompressorOutMax")
141
+ t_compressor_in_transient_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature transient for the intake side of the compressor for this interval (staff only)", alias="tCompressorInTransientAverage")
142
+ t_compressor_in_transient_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature transient for the intake side of the compressor for this interval (staff only)", alias="tCompressorInTransientMin")
143
+ t_compressor_in_transient_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature transient for the intake side of the compressor for this interval (staff only)", alias="tCompressorInTransientMax")
144
+ t_compressor_out_transient_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature transient for the output side of the compressor for this interval (staff only)", alias="tCompressorOutTransientAverage")
145
+ t_compressor_out_transient_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature transient for the output side of the compressor for this interval (staff only)", alias="tCompressorOutTransientMin")
146
+ t_compressor_out_transient_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature transient for the output side of the compressor for this interval (staff only)", alias="tCompressorOutTransientMax")
147
+ delta_t_compressor_in_superheat_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature difference in the compressor for Superheat for this interval (staff only)", alias="deltaTCompressorInSuperheatAverage")
148
+ delta_t_compressor_in_superheat_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature difference in the compressor for Superheat for this interval (staff only)", alias="deltaTCompressorInSuperheatMin")
149
+ delta_t_compressor_in_superheat_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature difference in the compressor for Superheat for this interval (staff only)", alias="deltaTCompressorInSuperheatMax")
150
+ fan_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average percentage of the fan used for this interval (staff only)", alias="fanAverage")
151
+ fan_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum percentage of the fan used for this interval (staff only)", alias="fanMin")
152
+ fan_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum percentage of the fan used for this interval (staff only)", alias="fanMax")
153
+ fan_power_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power used by the fan for this interval (staff only)", alias="fanPowerAverage")
154
+ fan_power_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power used by the fan for this interval (staff only)", alias="fanPowerMin")
155
+ fan_power_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power used by the fan for this interval (staff only)", alias="fanPowerMax")
156
+ temperature_error_integral_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralAverage")
157
+ temperature_error_integral_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralMin")
158
+ temperature_error_integral_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralMax")
159
+ dtc_none: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the No DTC codes Error state for this interval (staff only)", alias="dtcNone")
160
+ dtc_continue: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC but can Continue Error state for this interval (staff only)", alias="dtcContinue")
161
+ dtc_compressor_off: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC Compressor Off Error state for this interval (staff only)", alias="dtcCompressorOff")
162
+ dtc_defrost_forbidden: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC Defrost Forbidden Error state for this interval (staff only)", alias="dtcDefrostForbidden")
163
+ dtc_request_service: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC Request Service Error state for this interval (staff only)", alias="dtcRequestService")
164
+ dtc_use_heating_curve: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC Use Heating Curve (only) Error state for this interval (staff only)", alias="dtcUseHeatingCurve")
165
+ dtc_dhw_forbidden: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC HW Forbidden Error state for this interval (staff only)", alias="dtcDhwForbidden")
166
+ dtc_error: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC DTC Error state for this interval (staff only)", alias="dtcError")
167
+ dtc_inactive: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC Inactive Error state for this interval (staff only)", alias="dtcInactive")
168
+ control_bridge_status_dhw_valve: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Control Bridge Status DHW Valve state to true for this interval", alias="controlBridgeStatusDhwValve")
169
+ valve_average: Optional[StrictInt] = Field(default=None, description="Average valve position for this interval.", alias="valveAverage")
170
+ valve_min: Optional[StrictInt] = Field(default=None, description="Minimum valve position for this interval.", alias="valveMin")
171
+ valve_max: Optional[StrictInt] = Field(default=None, description="Maximum valve position for this interval.", alias="valveMax")
172
+ t_board_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the control board of the heat pump for this interval (staff only)", alias="tBoardAverage")
173
+ t_board_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the control board of the heat pump for this interval (staff only)", alias="tBoardMin")
174
+ t_board_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the control board of the heat pump for this interval (staff only)", alias="tBoardMax")
175
+ t_inverter_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the inverter for this interval (staff only)", alias="tInverterAverage")
176
+ t_inverter_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the inverter for this interval (staff only)", alias="tInverterMin")
177
+ t_inverter_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the inverter for this interval (staff only)", alias="tInverterMax")
178
+ compressor_power_low_accuracy_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power used by the compressor (low accuracy) for this interval (staff only)", alias="compressorPowerLowAccuracyAverage")
179
+ compressor_power_low_accuracy_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power used by the compressor (low accuracy) for this interval (staff only)", alias="compressorPowerLowAccuracyMin")
180
+ compressor_power_low_accuracy_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power used by the compressor (low accuracy) for this interval (staff only)", alias="compressorPowerLowAccuracyMax")
181
+ cm_mass_power_in_standby_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during standby state for this interval (staff only)", alias="cmMassPowerInStandbyAverage")
182
+ cm_mass_power_in_standby_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during standby state for this interval (staff only)", alias="cmMassPowerInStandbyMin")
183
+ cm_mass_power_in_standby_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during standby state for this interval (staff only)", alias="cmMassPowerInStandbyMax")
184
+ cm_mass_power_in_heating_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during heating state for this interval (staff only)", alias="cmMassPowerInHeatingAverage")
185
+ cm_mass_power_in_heating_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during heating state for this interval (staff only)", alias="cmMassPowerInHeatingMin")
186
+ cm_mass_power_in_heating_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during heating state for this interval (staff only)", alias="cmMassPowerInHeatingMax")
187
+ cm_mass_power_in_cooling_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during cooling state for this interval (staff only)", alias="cmMassPowerInCoolingAverage")
188
+ cm_mass_power_in_cooling_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during cooling state for this interval (staff only)", alias="cmMassPowerInCoolingMin")
189
+ cm_mass_power_in_cooling_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during cooling state for this interval (staff only)", alias="cmMassPowerInCoolingMax")
190
+ cm_mass_power_in_heating_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during heating with defrost state for this interval (staff only)", alias="cmMassPowerInHeatingDefrostAverage")
191
+ cm_mass_power_in_heating_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during heating with defrost state for this interval (staff only)", alias="cmMassPowerInHeatingDefrostMin")
192
+ cm_mass_power_in_heating_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during heating with defrost state for this interval (staff only)", alias="cmMassPowerInHeatingDefrostMax")
193
+ cm_mass_power_in_dhw_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during DHW with defrost state for this interval (staff only)", alias="cmMassPowerInDhwDefrostAverage")
194
+ cm_mass_power_in_dhw_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during DHW with defrost state for this interval (staff only)", alias="cmMassPowerInDhwDefrostMin")
195
+ cm_mass_power_in_dhw_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during DHW with defrost state for this interval (staff only)", alias="cmMassPowerInDhwDefrostMax")
196
+ cm_mass_power_in_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during defrost state for this interval (staff only)", alias="cmMassPowerInDefrostAverage")
197
+ cm_mass_power_in_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during defrost state for this interval (staff only)", alias="cmMassPowerInDefrostMin")
198
+ cm_mass_power_in_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during defrost state for this interval (staff only)", alias="cmMassPowerInDefrostMax")
199
+ cm_mass_power_in_dhw_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during DHW state for this interval (staff only)", alias="cmMassPowerInDhwAverage")
200
+ cm_mass_power_in_dhw_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during DHW state for this interval (staff only)", alias="cmMassPowerInDhwMin")
201
+ cm_mass_power_in_dhw_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during DHW state for this interval (staff only)", alias="cmMassPowerInDhwMax")
202
+ cm_mass_power_in_manual_control_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during manual control state for this interval (staff only)", alias="cmMassPowerInManualControlAverage")
203
+ cm_mass_power_in_manual_control_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during manual control state for this interval (staff only)", alias="cmMassPowerInManualControlMin")
204
+ cm_mass_power_out_heating_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during manual control state for this interval (staff only)", alias="cmMassPowerOutHeatingDefrostAverage")
205
+ cm_mass_power_out_heating_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during heating with defrost state for this interval (staff only)", alias="cmMassPowerOutHeatingDefrostMin")
206
+ cm_mass_power_out_heating_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during heating with defrost state for this interval (staff only)", alias="cmMassPowerOutHeatingDefrostMax")
207
+ cm_mass_power_out_dhw_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during DHW with defrost state for this interval (staff only)", alias="cmMassPowerOutDhwDefrostAverage")
208
+ cm_mass_power_out_dhw_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during DHW with defrost state for this interval (staff only)", alias="cmMassPowerOutDhwDefrostMin")
209
+ cm_mass_power_out_dhw_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during DHW with defrost state for this interval (staff only)", alias="cmMassPowerOutDhwDefrostMax")
210
+ cm_mass_power_in_manual_control_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="cmMassPowerInManualControlMax")
211
+ cm_mass_power_out_standby_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during standby state for this interval (staff only)", alias="cmMassPowerOutStandbyAverage")
212
+ cm_mass_power_out_standby_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during standby state for this interval (staff only)", alias="cmMassPowerOutStandbyMin")
213
+ cm_mass_power_out_standby_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during standby state for this interval (staff only)", alias="cmMassPowerOutStandbyMax")
214
+ cm_mass_power_out_heating_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during heating state for this interval (staff only)", alias="cmMassPowerOutHeatingAverage")
215
+ cm_mass_power_out_heating_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during heating state for this interval (staff only)", alias="cmMassPowerOutHeatingMin")
216
+ cm_mass_power_out_heating_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during heating state for this interval (staff only)", alias="cmMassPowerOutHeatingMax")
217
+ cm_mass_power_out_cooling_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during cooling state for this interval (staff only)", alias="cmMassPowerOutCoolingAverage")
218
+ cm_mass_power_out_cooling_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during cooling state for this interval (staff only)", alias="cmMassPowerOutCoolingMin")
219
+ cm_mass_power_out_cooling_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during cooling state for this interval (staff only)", alias="cmMassPowerOutCoolingMax")
220
+ cm_mass_power_out_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during defrost state for this interval (staff only)", alias="cmMassPowerOutDefrostAverage")
221
+ cm_mass_power_out_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during defrost state for this interval (staff only)", alias="cmMassPowerOutDefrostMin")
222
+ cm_mass_power_out_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during defrost state for this interval (staff only)", alias="cmMassPowerOutDefrostMax")
223
+ cm_mass_power_out_dhw_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during DHW state for this interval (staff only)", alias="cmMassPowerOutDhwAverage")
224
+ cm_mass_power_out_dhw_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during DHW state for this interval (staff only)", alias="cmMassPowerOutDhwMin")
225
+ cm_mass_power_out_dhw_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during DHW state for this interval (staff only)", alias="cmMassPowerOutDhwMax")
226
+ cm_mass_power_out_manual_control_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during manual control state for this interval (staff only)", alias="cmMassPowerOutManualControlAverage")
227
+ cm_mass_power_out_manual_control_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during manual control state for this interval (staff only)", alias="cmMassPowerOutManualControlMin")
228
+ cm_mass_power_out_manual_control_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during manual control state for this interval (staff only)", alias="cmMassPowerOutManualControlMax")
229
+ inverter_input_voltage_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average input voltage measured by the compressor inverter for this interval (staff only)", alias="inverterInputVoltageAverage")
230
+ inverter_input_voltage_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum input voltage measured by the compressor inverter for this interval (staff only)", alias="inverterInputVoltageMin")
231
+ inverter_input_voltage_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum input voltage measured by the compressor inverter for this interval (staff only)", alias="inverterInputVoltageMax")
232
+ central_heating_pwm_requested_duty_cycle_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average requested duty cycle to pwm pump for central heating circuit for this interval (staff only)", alias="centralHeatingPwmRequestedDutyCycleAverage")
233
+ central_heating_pwm_requested_duty_cycle_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum requested duty cycle to pwm pump for central heating circuit for this interval (staff only)", alias="centralHeatingPwmRequestedDutyCycleMin")
234
+ central_heating_pwm_requested_duty_cycle_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum requested duty cycle to pwm pump for central heating circuit for this interval (staff only)", alias="centralHeatingPwmRequestedDutyCycleMax")
235
+ central_heating_pwm_requested_duty_cycle_state_standby: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating PWM was in standby state (2%) for this interval (staff only)", alias="centralHeatingPwmRequestedDutyCycleStateStandby")
236
+ central_heating_pwm_requested_duty_cycle_state_pumping: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating PWM was in pumping state (6%-75%) for this interval (staff only)", alias="centralHeatingPwmRequestedDutyCycleStatePumping")
237
+ dhw_pwm_requested_duty_cycle_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average requested duty cycle to pwm pump for DHW circuit for this interval (staff only)", alias="dhwPwmRequestedDutyCycleAverage")
238
+ dhw_pwm_requested_duty_cycle_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum requested duty cycle to pwm pump for DHW circuit for this interval (staff only)", alias="dhwPwmRequestedDutyCycleMin")
239
+ dhw_pwm_requested_duty_cycle_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum requested duty cycle to pwm pump for DHW circuit for this interval (staff only)", alias="dhwPwmRequestedDutyCycleMax")
240
+ dhw_pwm_requested_duty_cycle_state_standby: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW PWM was in standby state (2%) for this interval (staff only)", alias="dhwPwmRequestedDutyCycleStateStandby")
241
+ dhw_pwm_requested_duty_cycle_state_pumping: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW PWM was in pumping state (6%-75%) for this interval (staff only)", alias="dhwPwmRequestedDutyCycleStatePumping")
242
+ indoor_unit_heater_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the indoor unit heater for this interval (staff only)", alias="indoorUnitHeaterTemperatureAverage")
243
+ indoor_unit_heater_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the indoor unit heater for this interval (staff only)", alias="indoorUnitHeaterTemperatureMin")
244
+ indoor_unit_heater_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the indoor unit heater for this interval (staff only)", alias="indoorUnitHeaterTemperatureMax")
245
+ indoor_unit_input_current_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average current of the indoor unit heater for this interval (staff only)", alias="indoorUnitInputCurrentAverage")
246
+ indoor_unit_input_current_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum current of the indoor unit heater for this interval (staff only)", alias="indoorUnitInputCurrentMin")
247
+ indoor_unit_input_current_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum current of the indoor unit heater for this interval (staff only)", alias="indoorUnitInputCurrentMax")
248
+ signal_sinr_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average Signal-to-Interference-plus-Noise Ratio (SINR) for this interval (staff only)", alias="signalSinrAverage")
249
+ signal_sinr_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum Signal-to-Interference-plus-Noise Ratio (SINR) for this interval (staff only)", alias="signalSinrMin")
250
+ signal_sinr_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum Signal-to-Interference-plus-Noise Ratio (SINR) for this interval (staff only)", alias="signalSinrMax")
251
+ __properties: ClassVar[List[str]] = ["timeBucket", "interval", "timeCoveredInInterval", "heatPumpStateStandby", "heatPumpStateHeating", "heatPumpStateCooling", "heatPumpStateDhw", "heatPumpStateLegionella", "heatPumpStateManualControl", "heatPumpStateDhwDefrost", "heatPumpStateHeatingDefrost", "controlBridgeStatusWaterPump", "controlBridgeStatusGasBoiler", "controlBridgeStatusElectricHeater", "controlBridgeStatusWaterPump2", "t1Average", "t1Min", "t1Max", "t2Average", "t2Min", "t2Max", "tAirInAverage", "tAirInMin", "tAirInMax", "tAirOutAverage", "tAirOutMin", "tAirOutMax", "tWaterInAverage", "tWaterInMin", "tWaterInMax", "tWaterOutAverage", "tWaterOutMin", "tWaterOutMax", "tWaterHouseInAverage", "tWaterHouseInMin", "tWaterHouseInMax", "tRoomAverage", "tRoomMin", "tRoomMax", "tRoomTargetAverage", "tRoomTargetMin", "tRoomTargetMax", "tThermostatSetpointAverage", "tThermostatSetpointMin", "tThermostatSetpointMax", "otBoilerFeedTemperatureAverage", "otBoilerFeedTemperatureMin", "otBoilerFeedTemperatureMax", "otBoilerReturnTemperatureAverage", "otBoilerReturnTemperatureMin", "otBoilerReturnTemperatureMax", "thermostatStateOff", "thermostatStateOn", "rpmAverage", "rpmMin", "rpmMax", "centralHeatingFlowAverage", "centralHeatingFlowMin", "centralHeatingFlowMax", "centralHeatingFlowStateStandby", "centralHeatingFlowStateStandbyNoPwm", "centralHeatingFlowStateMotorBlocked", "centralHeatingFlowStatePumping", "centralHeatingFlowStatePumpingNoPwm", "centralHeatingFlowStateSuboptimalRunning", "centralHeatingFlowStateStoppedMomentarily", "centralHeatingFlowStateStoppedPermanentDamage", "dhwFlowAverage", "dhwFlowMin", "dhwFlowMax", "dhwFlowStateStandby", "dhwFlowStateStandbyNoPwm", "dhwFlowStateMotorBlocked", "dhwFlowStatePumping", "dhwFlowStatePumpingNoPwm", "dhwFlowStateSuboptimalRunning", "dhwFlowStateStoppedMomentarily", "dhwFlowStateStoppedPermanentDamage", "signalStrengthAverage", "signalStrengthMin", "signalStrengthMax", "rpmLimiterAverage", "rpmLimiterMin", "rpmLimiterMax", "rpmLimiterNoLimit", "rpmLimiterPowerLimit", "rpmLimiterDefrost", "rpmLimiterSilentHours", "rpmLimiterHPControl", "rpmLimiterPressure", "rpmLimiterWaterOut", "rpmLimiterEnvelope", "rpmLimiterHouseIn", "pCompressorInAverage", "pCompressorInMin", "pCompressorInMax", "pCompressorOutAverage", "pCompressorOutMin", "pCompressorOutMax", "pCompressorInTargetAverage", "pCompressorInTargetMin", "pCompressorInTargetMax", "tCompressorInAverage", "tCompressorInMin", "tCompressorInMax", "tCompressorOutAverage", "tCompressorOutMin", "tCompressorOutMax", "tCompressorInTransientAverage", "tCompressorInTransientMin", "tCompressorInTransientMax", "tCompressorOutTransientAverage", "tCompressorOutTransientMin", "tCompressorOutTransientMax", "deltaTCompressorInSuperheatAverage", "deltaTCompressorInSuperheatMin", "deltaTCompressorInSuperheatMax", "fanAverage", "fanMin", "fanMax", "fanPowerAverage", "fanPowerMin", "fanPowerMax", "temperatureErrorIntegralAverage", "temperatureErrorIntegralMin", "temperatureErrorIntegralMax", "dtcNone", "dtcContinue", "dtcCompressorOff", "dtcDefrostForbidden", "dtcRequestService", "dtcUseHeatingCurve", "dtcDhwForbidden", "dtcError", "dtcInactive", "controlBridgeStatusDhwValve", "valveAverage", "valveMin", "valveMax", "tBoardAverage", "tBoardMin", "tBoardMax", "tInverterAverage", "tInverterMin", "tInverterMax", "compressorPowerLowAccuracyAverage", "compressorPowerLowAccuracyMin", "compressorPowerLowAccuracyMax", "cmMassPowerInStandbyAverage", "cmMassPowerInStandbyMin", "cmMassPowerInStandbyMax", "cmMassPowerInHeatingAverage", "cmMassPowerInHeatingMin", "cmMassPowerInHeatingMax", "cmMassPowerInCoolingAverage", "cmMassPowerInCoolingMin", "cmMassPowerInCoolingMax", "cmMassPowerInHeatingDefrostAverage", "cmMassPowerInHeatingDefrostMin", "cmMassPowerInHeatingDefrostMax", "cmMassPowerInDhwDefrostAverage", "cmMassPowerInDhwDefrostMin", "cmMassPowerInDhwDefrostMax", "cmMassPowerInDefrostAverage", "cmMassPowerInDefrostMin", "cmMassPowerInDefrostMax", "cmMassPowerInDhwAverage", "cmMassPowerInDhwMin", "cmMassPowerInDhwMax", "cmMassPowerInManualControlAverage", "cmMassPowerInManualControlMin", "cmMassPowerOutHeatingDefrostAverage", "cmMassPowerOutHeatingDefrostMin", "cmMassPowerOutHeatingDefrostMax", "cmMassPowerOutDhwDefrostAverage", "cmMassPowerOutDhwDefrostMin", "cmMassPowerOutDhwDefrostMax", "cmMassPowerInManualControlMax", "cmMassPowerOutStandbyAverage", "cmMassPowerOutStandbyMin", "cmMassPowerOutStandbyMax", "cmMassPowerOutHeatingAverage", "cmMassPowerOutHeatingMin", "cmMassPowerOutHeatingMax", "cmMassPowerOutCoolingAverage", "cmMassPowerOutCoolingMin", "cmMassPowerOutCoolingMax", "cmMassPowerOutDefrostAverage", "cmMassPowerOutDefrostMin", "cmMassPowerOutDefrostMax", "cmMassPowerOutDhwAverage", "cmMassPowerOutDhwMin", "cmMassPowerOutDhwMax", "cmMassPowerOutManualControlAverage", "cmMassPowerOutManualControlMin", "cmMassPowerOutManualControlMax", "inverterInputVoltageAverage", "inverterInputVoltageMin", "inverterInputVoltageMax", "centralHeatingPwmRequestedDutyCycleAverage", "centralHeatingPwmRequestedDutyCycleMin", "centralHeatingPwmRequestedDutyCycleMax", "centralHeatingPwmRequestedDutyCycleStateStandby", "centralHeatingPwmRequestedDutyCycleStatePumping", "dhwPwmRequestedDutyCycleAverage", "dhwPwmRequestedDutyCycleMin", "dhwPwmRequestedDutyCycleMax", "dhwPwmRequestedDutyCycleStateStandby", "dhwPwmRequestedDutyCycleStatePumping", "indoorUnitHeaterTemperatureAverage", "indoorUnitHeaterTemperatureMin", "indoorUnitHeaterTemperatureMax", "indoorUnitInputCurrentAverage", "indoorUnitInputCurrentMin", "indoorUnitInputCurrentMax", "signalSinrAverage", "signalSinrMin", "signalSinrMax"]
252
+
253
+ model_config = {
254
+ "populate_by_name": True,
255
+ "validate_assignment": True,
256
+ "protected_namespaces": (),
257
+ }
258
+
171
259
 
172
260
  def to_str(self) -> str:
173
261
  """Returns the string representation of the model using alias"""
174
- return pprint.pformat(self.dict(by_alias=True))
262
+ return pprint.pformat(self.model_dump(by_alias=True))
175
263
 
176
264
  def to_json(self) -> str:
177
265
  """Returns the JSON representation of the model using alias"""
266
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
178
267
  return json.dumps(self.to_dict())
179
268
 
180
269
  @classmethod
181
- def from_json(cls, json_str: str) -> HeatPumpLogViewDto:
270
+ def from_json(cls, json_str: str) -> Self:
182
271
  """Create an instance of HeatPumpLogViewDto from a JSON string"""
183
272
  return cls.from_dict(json.loads(json_str))
184
273
 
185
- def to_dict(self):
186
- """Returns the dictionary representation of the model using alias"""
187
- _dict = self.dict(by_alias=True,
188
- exclude={
189
- },
190
- exclude_none=True)
274
+ def to_dict(self) -> Dict[str, Any]:
275
+ """Return the dictionary representation of the model using alias.
276
+
277
+ This has the following differences from calling pydantic's
278
+ `self.model_dump(by_alias=True)`:
279
+
280
+ * `None` is only added to the output dict for nullable fields that
281
+ were set at model initialization. Other fields with value `None`
282
+ are ignored.
283
+ """
284
+ _dict = self.model_dump(
285
+ by_alias=True,
286
+ exclude={
287
+ },
288
+ exclude_none=True,
289
+ )
191
290
  # set to None if interval (nullable) is None
192
- # and __fields_set__ contains the field
193
- if self.interval is None and "interval" in self.__fields_set__:
291
+ # and model_fields_set contains the field
292
+ if self.interval is None and "interval" in self.model_fields_set:
194
293
  _dict['interval'] = None
195
294
 
196
- # set to None if control_bridge_status_dhw_valve (nullable) is None
197
- # and __fields_set__ contains the field
198
- if self.control_bridge_status_dhw_valve is None and "control_bridge_status_dhw_valve" in self.__fields_set__:
199
- _dict['controlBridgeStatusDhwValve'] = None
200
-
201
- # set to None if dtc_none (nullable) is None
202
- # and __fields_set__ contains the field
203
- if self.dtc_none is None and "dtc_none" in self.__fields_set__:
204
- _dict['dtcNone'] = None
205
-
206
- # set to None if dtc_continue (nullable) is None
207
- # and __fields_set__ contains the field
208
- if self.dtc_continue is None and "dtc_continue" in self.__fields_set__:
209
- _dict['dtcContinue'] = None
210
-
211
- # set to None if dtc_compressor_off (nullable) is None
212
- # and __fields_set__ contains the field
213
- if self.dtc_compressor_off is None and "dtc_compressor_off" in self.__fields_set__:
214
- _dict['dtcCompressorOff'] = None
215
-
216
- # set to None if dtc_defrost_forbidden (nullable) is None
217
- # and __fields_set__ contains the field
218
- if self.dtc_defrost_forbidden is None and "dtc_defrost_forbidden" in self.__fields_set__:
219
- _dict['dtcDefrostForbidden'] = None
220
-
221
- # set to None if dtc_request_service (nullable) is None
222
- # and __fields_set__ contains the field
223
- if self.dtc_request_service is None and "dtc_request_service" in self.__fields_set__:
224
- _dict['dtcRequestService'] = None
225
-
226
- # set to None if dtc_use_heating_curve (nullable) is None
227
- # and __fields_set__ contains the field
228
- if self.dtc_use_heating_curve is None and "dtc_use_heating_curve" in self.__fields_set__:
229
- _dict['dtcUseHeatingCurve'] = None
230
-
231
- # set to None if dtc_dhw_forbidden (nullable) is None
232
- # and __fields_set__ contains the field
233
- if self.dtc_dhw_forbidden is None and "dtc_dhw_forbidden" in self.__fields_set__:
234
- _dict['dtcDhwForbidden'] = None
235
-
236
- # set to None if dtc_error (nullable) is None
237
- # and __fields_set__ contains the field
238
- if self.dtc_error is None and "dtc_error" in self.__fields_set__:
239
- _dict['dtcError'] = None
240
-
241
- # set to None if dtc_inactive (nullable) is None
242
- # and __fields_set__ contains the field
243
- if self.dtc_inactive is None and "dtc_inactive" in self.__fields_set__:
244
- _dict['dtcInactive'] = None
245
-
246
- # set to None if signal_strength_average (nullable) is None
247
- # and __fields_set__ contains the field
248
- if self.signal_strength_average is None and "signal_strength_average" in self.__fields_set__:
249
- _dict['signalStrengthAverage'] = None
250
-
251
- # set to None if signal_strength_min (nullable) is None
252
- # and __fields_set__ contains the field
253
- if self.signal_strength_min is None and "signal_strength_min" in self.__fields_set__:
254
- _dict['signalStrengthMin'] = None
255
-
256
- # set to None if signal_strength_max (nullable) is None
257
- # and __fields_set__ contains the field
258
- if self.signal_strength_max is None and "signal_strength_max" in self.__fields_set__:
259
- _dict['signalStrengthMax'] = None
295
+ # set to None if heat_pump_state_standby (nullable) is None
296
+ # and model_fields_set contains the field
297
+ if self.heat_pump_state_standby is None and "heat_pump_state_standby" in self.model_fields_set:
298
+ _dict['heatPumpStateStandby'] = None
299
+
300
+ # set to None if heat_pump_state_heating (nullable) is None
301
+ # and model_fields_set contains the field
302
+ if self.heat_pump_state_heating is None and "heat_pump_state_heating" in self.model_fields_set:
303
+ _dict['heatPumpStateHeating'] = None
304
+
305
+ # set to None if heat_pump_state_cooling (nullable) is None
306
+ # and model_fields_set contains the field
307
+ if self.heat_pump_state_cooling is None and "heat_pump_state_cooling" in self.model_fields_set:
308
+ _dict['heatPumpStateCooling'] = None
309
+
310
+ # set to None if heat_pump_state_dhw (nullable) is None
311
+ # and model_fields_set contains the field
312
+ if self.heat_pump_state_dhw is None and "heat_pump_state_dhw" in self.model_fields_set:
313
+ _dict['heatPumpStateDhw'] = None
314
+
315
+ # set to None if heat_pump_state_legionella (nullable) is None
316
+ # and model_fields_set contains the field
317
+ if self.heat_pump_state_legionella is None and "heat_pump_state_legionella" in self.model_fields_set:
318
+ _dict['heatPumpStateLegionella'] = None
319
+
320
+ # set to None if heat_pump_state_manual_control (nullable) is None
321
+ # and model_fields_set contains the field
322
+ if self.heat_pump_state_manual_control is None and "heat_pump_state_manual_control" in self.model_fields_set:
323
+ _dict['heatPumpStateManualControl'] = None
324
+
325
+ # set to None if heat_pump_state_dhw_defrost (nullable) is None
326
+ # and model_fields_set contains the field
327
+ if self.heat_pump_state_dhw_defrost is None and "heat_pump_state_dhw_defrost" in self.model_fields_set:
328
+ _dict['heatPumpStateDhwDefrost'] = None
329
+
330
+ # set to None if heat_pump_state_heating_defrost (nullable) is None
331
+ # and model_fields_set contains the field
332
+ if self.heat_pump_state_heating_defrost is None and "heat_pump_state_heating_defrost" in self.model_fields_set:
333
+ _dict['heatPumpStateHeatingDefrost'] = None
334
+
335
+ # set to None if control_bridge_status_water_pump (nullable) is None
336
+ # and model_fields_set contains the field
337
+ if self.control_bridge_status_water_pump is None and "control_bridge_status_water_pump" in self.model_fields_set:
338
+ _dict['controlBridgeStatusWaterPump'] = None
339
+
340
+ # set to None if control_bridge_status_gas_boiler (nullable) is None
341
+ # and model_fields_set contains the field
342
+ if self.control_bridge_status_gas_boiler is None and "control_bridge_status_gas_boiler" in self.model_fields_set:
343
+ _dict['controlBridgeStatusGasBoiler'] = None
344
+
345
+ # set to None if control_bridge_status_electric_heater (nullable) is None
346
+ # and model_fields_set contains the field
347
+ if self.control_bridge_status_electric_heater is None and "control_bridge_status_electric_heater" in self.model_fields_set:
348
+ _dict['controlBridgeStatusElectricHeater'] = None
349
+
350
+ # set to None if control_bridge_status_water_pump2 (nullable) is None
351
+ # and model_fields_set contains the field
352
+ if self.control_bridge_status_water_pump2 is None and "control_bridge_status_water_pump2" in self.model_fields_set:
353
+ _dict['controlBridgeStatusWaterPump2'] = None
260
354
 
261
355
  # set to None if t1_average (nullable) is None
262
- # and __fields_set__ contains the field
263
- if self.t1_average is None and "t1_average" in self.__fields_set__:
356
+ # and model_fields_set contains the field
357
+ if self.t1_average is None and "t1_average" in self.model_fields_set:
264
358
  _dict['t1Average'] = None
265
359
 
266
360
  # set to None if t1_min (nullable) is None
267
- # and __fields_set__ contains the field
268
- if self.t1_min is None and "t1_min" in self.__fields_set__:
361
+ # and model_fields_set contains the field
362
+ if self.t1_min is None and "t1_min" in self.model_fields_set:
269
363
  _dict['t1Min'] = None
270
364
 
271
365
  # set to None if t1_max (nullable) is None
272
- # and __fields_set__ contains the field
273
- if self.t1_max is None and "t1_max" in self.__fields_set__:
366
+ # and model_fields_set contains the field
367
+ if self.t1_max is None and "t1_max" in self.model_fields_set:
274
368
  _dict['t1Max'] = None
275
369
 
276
370
  # set to None if t2_average (nullable) is None
277
- # and __fields_set__ contains the field
278
- if self.t2_average is None and "t2_average" in self.__fields_set__:
371
+ # and model_fields_set contains the field
372
+ if self.t2_average is None and "t2_average" in self.model_fields_set:
279
373
  _dict['t2Average'] = None
280
374
 
281
375
  # set to None if t2_min (nullable) is None
282
- # and __fields_set__ contains the field
283
- if self.t2_min is None and "t2_min" in self.__fields_set__:
376
+ # and model_fields_set contains the field
377
+ if self.t2_min is None and "t2_min" in self.model_fields_set:
284
378
  _dict['t2Min'] = None
285
379
 
286
380
  # set to None if t2_max (nullable) is None
287
- # and __fields_set__ contains the field
288
- if self.t2_max is None and "t2_max" in self.__fields_set__:
381
+ # and model_fields_set contains the field
382
+ if self.t2_max is None and "t2_max" in self.model_fields_set:
289
383
  _dict['t2Max'] = None
290
384
 
291
- # set to None if t_spare_ntc_average (nullable) is None
292
- # and __fields_set__ contains the field
293
- if self.t_spare_ntc_average is None and "t_spare_ntc_average" in self.__fields_set__:
294
- _dict['tSpareNtcAverage'] = None
295
-
296
- # set to None if t_spare_ntc_min (nullable) is None
297
- # and __fields_set__ contains the field
298
- if self.t_spare_ntc_min is None and "t_spare_ntc_min" in self.__fields_set__:
299
- _dict['tSpareNtcMin'] = None
300
-
301
- # set to None if t_spare_ntc_max (nullable) is None
302
- # and __fields_set__ contains the field
303
- if self.t_spare_ntc_max is None and "t_spare_ntc_max" in self.__fields_set__:
304
- _dict['tSpareNtcMax'] = None
305
-
306
- # set to None if t_board_average (nullable) is None
307
- # and __fields_set__ contains the field
308
- if self.t_board_average is None and "t_board_average" in self.__fields_set__:
309
- _dict['tBoardAverage'] = None
310
-
311
- # set to None if t_board_min (nullable) is None
312
- # and __fields_set__ contains the field
313
- if self.t_board_min is None and "t_board_min" in self.__fields_set__:
314
- _dict['tBoardMin'] = None
315
-
316
- # set to None if t_board_max (nullable) is None
317
- # and __fields_set__ contains the field
318
- if self.t_board_max is None and "t_board_max" in self.__fields_set__:
319
- _dict['tBoardMax'] = None
385
+ # set to None if t_air_in_average (nullable) is None
386
+ # and model_fields_set contains the field
387
+ if self.t_air_in_average is None and "t_air_in_average" in self.model_fields_set:
388
+ _dict['tAirInAverage'] = None
389
+
390
+ # set to None if t_air_in_min (nullable) is None
391
+ # and model_fields_set contains the field
392
+ if self.t_air_in_min is None and "t_air_in_min" in self.model_fields_set:
393
+ _dict['tAirInMin'] = None
394
+
395
+ # set to None if t_air_in_max (nullable) is None
396
+ # and model_fields_set contains the field
397
+ if self.t_air_in_max is None and "t_air_in_max" in self.model_fields_set:
398
+ _dict['tAirInMax'] = None
399
+
400
+ # set to None if t_air_out_average (nullable) is None
401
+ # and model_fields_set contains the field
402
+ if self.t_air_out_average is None and "t_air_out_average" in self.model_fields_set:
403
+ _dict['tAirOutAverage'] = None
404
+
405
+ # set to None if t_air_out_min (nullable) is None
406
+ # and model_fields_set contains the field
407
+ if self.t_air_out_min is None and "t_air_out_min" in self.model_fields_set:
408
+ _dict['tAirOutMin'] = None
409
+
410
+ # set to None if t_air_out_max (nullable) is None
411
+ # and model_fields_set contains the field
412
+ if self.t_air_out_max is None and "t_air_out_max" in self.model_fields_set:
413
+ _dict['tAirOutMax'] = None
414
+
415
+ # set to None if t_water_in_average (nullable) is None
416
+ # and model_fields_set contains the field
417
+ if self.t_water_in_average is None and "t_water_in_average" in self.model_fields_set:
418
+ _dict['tWaterInAverage'] = None
419
+
420
+ # set to None if t_water_in_min (nullable) is None
421
+ # and model_fields_set contains the field
422
+ if self.t_water_in_min is None and "t_water_in_min" in self.model_fields_set:
423
+ _dict['tWaterInMin'] = None
424
+
425
+ # set to None if t_water_in_max (nullable) is None
426
+ # and model_fields_set contains the field
427
+ if self.t_water_in_max is None and "t_water_in_max" in self.model_fields_set:
428
+ _dict['tWaterInMax'] = None
429
+
430
+ # set to None if t_water_out_average (nullable) is None
431
+ # and model_fields_set contains the field
432
+ if self.t_water_out_average is None and "t_water_out_average" in self.model_fields_set:
433
+ _dict['tWaterOutAverage'] = None
434
+
435
+ # set to None if t_water_out_min (nullable) is None
436
+ # and model_fields_set contains the field
437
+ if self.t_water_out_min is None and "t_water_out_min" in self.model_fields_set:
438
+ _dict['tWaterOutMin'] = None
439
+
440
+ # set to None if t_water_out_max (nullable) is None
441
+ # and model_fields_set contains the field
442
+ if self.t_water_out_max is None and "t_water_out_max" in self.model_fields_set:
443
+ _dict['tWaterOutMax'] = None
444
+
445
+ # set to None if t_water_house_in_average (nullable) is None
446
+ # and model_fields_set contains the field
447
+ if self.t_water_house_in_average is None and "t_water_house_in_average" in self.model_fields_set:
448
+ _dict['tWaterHouseInAverage'] = None
449
+
450
+ # set to None if t_water_house_in_min (nullable) is None
451
+ # and model_fields_set contains the field
452
+ if self.t_water_house_in_min is None and "t_water_house_in_min" in self.model_fields_set:
453
+ _dict['tWaterHouseInMin'] = None
454
+
455
+ # set to None if t_water_house_in_max (nullable) is None
456
+ # and model_fields_set contains the field
457
+ if self.t_water_house_in_max is None and "t_water_house_in_max" in self.model_fields_set:
458
+ _dict['tWaterHouseInMax'] = None
459
+
460
+ # set to None if t_room_average (nullable) is None
461
+ # and model_fields_set contains the field
462
+ if self.t_room_average is None and "t_room_average" in self.model_fields_set:
463
+ _dict['tRoomAverage'] = None
464
+
465
+ # set to None if t_room_min (nullable) is None
466
+ # and model_fields_set contains the field
467
+ if self.t_room_min is None and "t_room_min" in self.model_fields_set:
468
+ _dict['tRoomMin'] = None
469
+
470
+ # set to None if t_room_max (nullable) is None
471
+ # and model_fields_set contains the field
472
+ if self.t_room_max is None and "t_room_max" in self.model_fields_set:
473
+ _dict['tRoomMax'] = None
474
+
475
+ # set to None if t_room_target_average (nullable) is None
476
+ # and model_fields_set contains the field
477
+ if self.t_room_target_average is None and "t_room_target_average" in self.model_fields_set:
478
+ _dict['tRoomTargetAverage'] = None
479
+
480
+ # set to None if t_room_target_min (nullable) is None
481
+ # and model_fields_set contains the field
482
+ if self.t_room_target_min is None and "t_room_target_min" in self.model_fields_set:
483
+ _dict['tRoomTargetMin'] = None
484
+
485
+ # set to None if t_room_target_max (nullable) is None
486
+ # and model_fields_set contains the field
487
+ if self.t_room_target_max is None and "t_room_target_max" in self.model_fields_set:
488
+ _dict['tRoomTargetMax'] = None
489
+
490
+ # set to None if t_thermostat_setpoint_average (nullable) is None
491
+ # and model_fields_set contains the field
492
+ if self.t_thermostat_setpoint_average is None and "t_thermostat_setpoint_average" in self.model_fields_set:
493
+ _dict['tThermostatSetpointAverage'] = None
494
+
495
+ # set to None if t_thermostat_setpoint_min (nullable) is None
496
+ # and model_fields_set contains the field
497
+ if self.t_thermostat_setpoint_min is None and "t_thermostat_setpoint_min" in self.model_fields_set:
498
+ _dict['tThermostatSetpointMin'] = None
499
+
500
+ # set to None if t_thermostat_setpoint_max (nullable) is None
501
+ # and model_fields_set contains the field
502
+ if self.t_thermostat_setpoint_max is None and "t_thermostat_setpoint_max" in self.model_fields_set:
503
+ _dict['tThermostatSetpointMax'] = None
504
+
505
+ # set to None if ot_boiler_feed_temperature_average (nullable) is None
506
+ # and model_fields_set contains the field
507
+ if self.ot_boiler_feed_temperature_average is None and "ot_boiler_feed_temperature_average" in self.model_fields_set:
508
+ _dict['otBoilerFeedTemperatureAverage'] = None
509
+
510
+ # set to None if ot_boiler_feed_temperature_min (nullable) is None
511
+ # and model_fields_set contains the field
512
+ if self.ot_boiler_feed_temperature_min is None and "ot_boiler_feed_temperature_min" in self.model_fields_set:
513
+ _dict['otBoilerFeedTemperatureMin'] = None
514
+
515
+ # set to None if ot_boiler_feed_temperature_max (nullable) is None
516
+ # and model_fields_set contains the field
517
+ if self.ot_boiler_feed_temperature_max is None and "ot_boiler_feed_temperature_max" in self.model_fields_set:
518
+ _dict['otBoilerFeedTemperatureMax'] = None
519
+
520
+ # set to None if ot_boiler_return_temperature_average (nullable) is None
521
+ # and model_fields_set contains the field
522
+ if self.ot_boiler_return_temperature_average is None and "ot_boiler_return_temperature_average" in self.model_fields_set:
523
+ _dict['otBoilerReturnTemperatureAverage'] = None
524
+
525
+ # set to None if ot_boiler_return_temperature_min (nullable) is None
526
+ # and model_fields_set contains the field
527
+ if self.ot_boiler_return_temperature_min is None and "ot_boiler_return_temperature_min" in self.model_fields_set:
528
+ _dict['otBoilerReturnTemperatureMin'] = None
529
+
530
+ # set to None if ot_boiler_return_temperature_max (nullable) is None
531
+ # and model_fields_set contains the field
532
+ if self.ot_boiler_return_temperature_max is None and "ot_boiler_return_temperature_max" in self.model_fields_set:
533
+ _dict['otBoilerReturnTemperatureMax'] = None
534
+
535
+ # set to None if thermostat_state_off (nullable) is None
536
+ # and model_fields_set contains the field
537
+ if self.thermostat_state_off is None and "thermostat_state_off" in self.model_fields_set:
538
+ _dict['thermostatStateOff'] = None
539
+
540
+ # set to None if thermostat_state_on (nullable) is None
541
+ # and model_fields_set contains the field
542
+ if self.thermostat_state_on is None and "thermostat_state_on" in self.model_fields_set:
543
+ _dict['thermostatStateOn'] = None
320
544
 
321
545
  # set to None if rpm_average (nullable) is None
322
- # and __fields_set__ contains the field
323
- if self.rpm_average is None and "rpm_average" in self.__fields_set__:
546
+ # and model_fields_set contains the field
547
+ if self.rpm_average is None and "rpm_average" in self.model_fields_set:
324
548
  _dict['rpmAverage'] = None
325
549
 
326
550
  # set to None if rpm_min (nullable) is None
327
- # and __fields_set__ contains the field
328
- if self.rpm_min is None and "rpm_min" in self.__fields_set__:
551
+ # and model_fields_set contains the field
552
+ if self.rpm_min is None and "rpm_min" in self.model_fields_set:
329
553
  _dict['rpmMin'] = None
330
554
 
331
555
  # set to None if rpm_max (nullable) is None
332
- # and __fields_set__ contains the field
333
- if self.rpm_max is None and "rpm_max" in self.__fields_set__:
556
+ # and model_fields_set contains the field
557
+ if self.rpm_max is None and "rpm_max" in self.model_fields_set:
334
558
  _dict['rpmMax'] = None
335
559
 
560
+ # set to None if central_heating_flow_average (nullable) is None
561
+ # and model_fields_set contains the field
562
+ if self.central_heating_flow_average is None and "central_heating_flow_average" in self.model_fields_set:
563
+ _dict['centralHeatingFlowAverage'] = None
564
+
565
+ # set to None if central_heating_flow_min (nullable) is None
566
+ # and model_fields_set contains the field
567
+ if self.central_heating_flow_min is None and "central_heating_flow_min" in self.model_fields_set:
568
+ _dict['centralHeatingFlowMin'] = None
569
+
570
+ # set to None if central_heating_flow_max (nullable) is None
571
+ # and model_fields_set contains the field
572
+ if self.central_heating_flow_max is None and "central_heating_flow_max" in self.model_fields_set:
573
+ _dict['centralHeatingFlowMax'] = None
574
+
575
+ # set to None if central_heating_flow_state_standby (nullable) is None
576
+ # and model_fields_set contains the field
577
+ if self.central_heating_flow_state_standby is None and "central_heating_flow_state_standby" in self.model_fields_set:
578
+ _dict['centralHeatingFlowStateStandby'] = None
579
+
580
+ # set to None if central_heating_flow_state_standby_no_pwm (nullable) is None
581
+ # and model_fields_set contains the field
582
+ if self.central_heating_flow_state_standby_no_pwm is None and "central_heating_flow_state_standby_no_pwm" in self.model_fields_set:
583
+ _dict['centralHeatingFlowStateStandbyNoPwm'] = None
584
+
585
+ # set to None if central_heating_flow_state_motor_blocked (nullable) is None
586
+ # and model_fields_set contains the field
587
+ if self.central_heating_flow_state_motor_blocked is None and "central_heating_flow_state_motor_blocked" in self.model_fields_set:
588
+ _dict['centralHeatingFlowStateMotorBlocked'] = None
589
+
590
+ # set to None if central_heating_flow_state_pumping (nullable) is None
591
+ # and model_fields_set contains the field
592
+ if self.central_heating_flow_state_pumping is None and "central_heating_flow_state_pumping" in self.model_fields_set:
593
+ _dict['centralHeatingFlowStatePumping'] = None
594
+
595
+ # set to None if central_heating_flow_state_pumping_no_pwm (nullable) is None
596
+ # and model_fields_set contains the field
597
+ if self.central_heating_flow_state_pumping_no_pwm is None and "central_heating_flow_state_pumping_no_pwm" in self.model_fields_set:
598
+ _dict['centralHeatingFlowStatePumpingNoPwm'] = None
599
+
600
+ # set to None if central_heating_flow_state_suboptimal_running (nullable) is None
601
+ # and model_fields_set contains the field
602
+ if self.central_heating_flow_state_suboptimal_running is None and "central_heating_flow_state_suboptimal_running" in self.model_fields_set:
603
+ _dict['centralHeatingFlowStateSuboptimalRunning'] = None
604
+
605
+ # set to None if central_heating_flow_state_stopped_momentarily (nullable) is None
606
+ # and model_fields_set contains the field
607
+ if self.central_heating_flow_state_stopped_momentarily is None and "central_heating_flow_state_stopped_momentarily" in self.model_fields_set:
608
+ _dict['centralHeatingFlowStateStoppedMomentarily'] = None
609
+
610
+ # set to None if central_heating_flow_state_stopped_permanent_damage (nullable) is None
611
+ # and model_fields_set contains the field
612
+ if self.central_heating_flow_state_stopped_permanent_damage is None and "central_heating_flow_state_stopped_permanent_damage" in self.model_fields_set:
613
+ _dict['centralHeatingFlowStateStoppedPermanentDamage'] = None
614
+
615
+ # set to None if dhw_flow_average (nullable) is None
616
+ # and model_fields_set contains the field
617
+ if self.dhw_flow_average is None and "dhw_flow_average" in self.model_fields_set:
618
+ _dict['dhwFlowAverage'] = None
619
+
620
+ # set to None if dhw_flow_min (nullable) is None
621
+ # and model_fields_set contains the field
622
+ if self.dhw_flow_min is None and "dhw_flow_min" in self.model_fields_set:
623
+ _dict['dhwFlowMin'] = None
624
+
625
+ # set to None if dhw_flow_max (nullable) is None
626
+ # and model_fields_set contains the field
627
+ if self.dhw_flow_max is None and "dhw_flow_max" in self.model_fields_set:
628
+ _dict['dhwFlowMax'] = None
629
+
630
+ # set to None if dhw_flow_state_standby (nullable) is None
631
+ # and model_fields_set contains the field
632
+ if self.dhw_flow_state_standby is None and "dhw_flow_state_standby" in self.model_fields_set:
633
+ _dict['dhwFlowStateStandby'] = None
634
+
635
+ # set to None if dhw_flow_state_standby_no_pwm (nullable) is None
636
+ # and model_fields_set contains the field
637
+ if self.dhw_flow_state_standby_no_pwm is None and "dhw_flow_state_standby_no_pwm" in self.model_fields_set:
638
+ _dict['dhwFlowStateStandbyNoPwm'] = None
639
+
640
+ # set to None if dhw_flow_state_motor_blocked (nullable) is None
641
+ # and model_fields_set contains the field
642
+ if self.dhw_flow_state_motor_blocked is None and "dhw_flow_state_motor_blocked" in self.model_fields_set:
643
+ _dict['dhwFlowStateMotorBlocked'] = None
644
+
645
+ # set to None if dhw_flow_state_pumping (nullable) is None
646
+ # and model_fields_set contains the field
647
+ if self.dhw_flow_state_pumping is None and "dhw_flow_state_pumping" in self.model_fields_set:
648
+ _dict['dhwFlowStatePumping'] = None
649
+
650
+ # set to None if dhw_flow_state_pumping_no_pwm (nullable) is None
651
+ # and model_fields_set contains the field
652
+ if self.dhw_flow_state_pumping_no_pwm is None and "dhw_flow_state_pumping_no_pwm" in self.model_fields_set:
653
+ _dict['dhwFlowStatePumpingNoPwm'] = None
654
+
655
+ # set to None if dhw_flow_state_suboptimal_running (nullable) is None
656
+ # and model_fields_set contains the field
657
+ if self.dhw_flow_state_suboptimal_running is None and "dhw_flow_state_suboptimal_running" in self.model_fields_set:
658
+ _dict['dhwFlowStateSuboptimalRunning'] = None
659
+
660
+ # set to None if dhw_flow_state_stopped_momentarily (nullable) is None
661
+ # and model_fields_set contains the field
662
+ if self.dhw_flow_state_stopped_momentarily is None and "dhw_flow_state_stopped_momentarily" in self.model_fields_set:
663
+ _dict['dhwFlowStateStoppedMomentarily'] = None
664
+
665
+ # set to None if dhw_flow_state_stopped_permanent_damage (nullable) is None
666
+ # and model_fields_set contains the field
667
+ if self.dhw_flow_state_stopped_permanent_damage is None and "dhw_flow_state_stopped_permanent_damage" in self.model_fields_set:
668
+ _dict['dhwFlowStateStoppedPermanentDamage'] = None
669
+
670
+ # set to None if signal_strength_average (nullable) is None
671
+ # and model_fields_set contains the field
672
+ if self.signal_strength_average is None and "signal_strength_average" in self.model_fields_set:
673
+ _dict['signalStrengthAverage'] = None
674
+
675
+ # set to None if signal_strength_min (nullable) is None
676
+ # and model_fields_set contains the field
677
+ if self.signal_strength_min is None and "signal_strength_min" in self.model_fields_set:
678
+ _dict['signalStrengthMin'] = None
679
+
680
+ # set to None if signal_strength_max (nullable) is None
681
+ # and model_fields_set contains the field
682
+ if self.signal_strength_max is None and "signal_strength_max" in self.model_fields_set:
683
+ _dict['signalStrengthMax'] = None
684
+
336
685
  # set to None if rpm_limiter_average (nullable) is None
337
- # and __fields_set__ contains the field
338
- if self.rpm_limiter_average is None and "rpm_limiter_average" in self.__fields_set__:
686
+ # and model_fields_set contains the field
687
+ if self.rpm_limiter_average is None and "rpm_limiter_average" in self.model_fields_set:
339
688
  _dict['rpmLimiterAverage'] = None
340
689
 
341
690
  # set to None if rpm_limiter_min (nullable) is None
342
- # and __fields_set__ contains the field
343
- if self.rpm_limiter_min is None and "rpm_limiter_min" in self.__fields_set__:
691
+ # and model_fields_set contains the field
692
+ if self.rpm_limiter_min is None and "rpm_limiter_min" in self.model_fields_set:
344
693
  _dict['rpmLimiterMin'] = None
345
694
 
346
695
  # set to None if rpm_limiter_max (nullable) is None
347
- # and __fields_set__ contains the field
348
- if self.rpm_limiter_max is None and "rpm_limiter_max" in self.__fields_set__:
696
+ # and model_fields_set contains the field
697
+ if self.rpm_limiter_max is None and "rpm_limiter_max" in self.model_fields_set:
349
698
  _dict['rpmLimiterMax'] = None
350
699
 
351
700
  # set to None if rpm_limiter_no_limit (nullable) is None
352
- # and __fields_set__ contains the field
353
- if self.rpm_limiter_no_limit is None and "rpm_limiter_no_limit" in self.__fields_set__:
701
+ # and model_fields_set contains the field
702
+ if self.rpm_limiter_no_limit is None and "rpm_limiter_no_limit" in self.model_fields_set:
354
703
  _dict['rpmLimiterNoLimit'] = None
355
704
 
356
705
  # set to None if rpm_limiter_power_limit (nullable) is None
357
- # and __fields_set__ contains the field
358
- if self.rpm_limiter_power_limit is None and "rpm_limiter_power_limit" in self.__fields_set__:
706
+ # and model_fields_set contains the field
707
+ if self.rpm_limiter_power_limit is None and "rpm_limiter_power_limit" in self.model_fields_set:
359
708
  _dict['rpmLimiterPowerLimit'] = None
360
709
 
361
710
  # set to None if rpm_limiter_defrost (nullable) is None
362
- # and __fields_set__ contains the field
363
- if self.rpm_limiter_defrost is None and "rpm_limiter_defrost" in self.__fields_set__:
711
+ # and model_fields_set contains the field
712
+ if self.rpm_limiter_defrost is None and "rpm_limiter_defrost" in self.model_fields_set:
364
713
  _dict['rpmLimiterDefrost'] = None
365
714
 
366
715
  # set to None if rpm_limiter_silent_hours (nullable) is None
367
- # and __fields_set__ contains the field
368
- if self.rpm_limiter_silent_hours is None and "rpm_limiter_silent_hours" in self.__fields_set__:
716
+ # and model_fields_set contains the field
717
+ if self.rpm_limiter_silent_hours is None and "rpm_limiter_silent_hours" in self.model_fields_set:
369
718
  _dict['rpmLimiterSilentHours'] = None
370
719
 
371
720
  # set to None if rpm_limiter_hp_control (nullable) is None
372
- # and __fields_set__ contains the field
373
- if self.rpm_limiter_hp_control is None and "rpm_limiter_hp_control" in self.__fields_set__:
721
+ # and model_fields_set contains the field
722
+ if self.rpm_limiter_hp_control is None and "rpm_limiter_hp_control" in self.model_fields_set:
374
723
  _dict['rpmLimiterHPControl'] = None
375
724
 
376
725
  # set to None if rpm_limiter_pressure (nullable) is None
377
- # and __fields_set__ contains the field
378
- if self.rpm_limiter_pressure is None and "rpm_limiter_pressure" in self.__fields_set__:
726
+ # and model_fields_set contains the field
727
+ if self.rpm_limiter_pressure is None and "rpm_limiter_pressure" in self.model_fields_set:
379
728
  _dict['rpmLimiterPressure'] = None
380
729
 
381
730
  # set to None if rpm_limiter_water_out (nullable) is None
382
- # and __fields_set__ contains the field
383
- if self.rpm_limiter_water_out is None and "rpm_limiter_water_out" in self.__fields_set__:
731
+ # and model_fields_set contains the field
732
+ if self.rpm_limiter_water_out is None and "rpm_limiter_water_out" in self.model_fields_set:
384
733
  _dict['rpmLimiterWaterOut'] = None
385
734
 
386
735
  # set to None if rpm_limiter_envelope (nullable) is None
387
- # and __fields_set__ contains the field
388
- if self.rpm_limiter_envelope is None and "rpm_limiter_envelope" in self.__fields_set__:
736
+ # and model_fields_set contains the field
737
+ if self.rpm_limiter_envelope is None and "rpm_limiter_envelope" in self.model_fields_set:
389
738
  _dict['rpmLimiterEnvelope'] = None
390
739
 
391
740
  # set to None if rpm_limiter_house_in (nullable) is None
392
- # and __fields_set__ contains the field
393
- if self.rpm_limiter_house_in is None and "rpm_limiter_house_in" in self.__fields_set__:
741
+ # and model_fields_set contains the field
742
+ if self.rpm_limiter_house_in is None and "rpm_limiter_house_in" in self.model_fields_set:
394
743
  _dict['rpmLimiterHouseIn'] = None
395
744
 
396
745
  # set to None if p_compressor_in_average (nullable) is None
397
- # and __fields_set__ contains the field
398
- if self.p_compressor_in_average is None and "p_compressor_in_average" in self.__fields_set__:
746
+ # and model_fields_set contains the field
747
+ if self.p_compressor_in_average is None and "p_compressor_in_average" in self.model_fields_set:
399
748
  _dict['pCompressorInAverage'] = None
400
749
 
401
750
  # set to None if p_compressor_in_min (nullable) is None
402
- # and __fields_set__ contains the field
403
- if self.p_compressor_in_min is None and "p_compressor_in_min" in self.__fields_set__:
751
+ # and model_fields_set contains the field
752
+ if self.p_compressor_in_min is None and "p_compressor_in_min" in self.model_fields_set:
404
753
  _dict['pCompressorInMin'] = None
405
754
 
406
755
  # set to None if p_compressor_in_max (nullable) is None
407
- # and __fields_set__ contains the field
408
- if self.p_compressor_in_max is None and "p_compressor_in_max" in self.__fields_set__:
756
+ # and model_fields_set contains the field
757
+ if self.p_compressor_in_max is None and "p_compressor_in_max" in self.model_fields_set:
409
758
  _dict['pCompressorInMax'] = None
410
759
 
411
760
  # set to None if p_compressor_out_average (nullable) is None
412
- # and __fields_set__ contains the field
413
- if self.p_compressor_out_average is None and "p_compressor_out_average" in self.__fields_set__:
761
+ # and model_fields_set contains the field
762
+ if self.p_compressor_out_average is None and "p_compressor_out_average" in self.model_fields_set:
414
763
  _dict['pCompressorOutAverage'] = None
415
764
 
416
765
  # set to None if p_compressor_out_min (nullable) is None
417
- # and __fields_set__ contains the field
418
- if self.p_compressor_out_min is None and "p_compressor_out_min" in self.__fields_set__:
766
+ # and model_fields_set contains the field
767
+ if self.p_compressor_out_min is None and "p_compressor_out_min" in self.model_fields_set:
419
768
  _dict['pCompressorOutMin'] = None
420
769
 
421
770
  # set to None if p_compressor_out_max (nullable) is None
422
- # and __fields_set__ contains the field
423
- if self.p_compressor_out_max is None and "p_compressor_out_max" in self.__fields_set__:
771
+ # and model_fields_set contains the field
772
+ if self.p_compressor_out_max is None and "p_compressor_out_max" in self.model_fields_set:
424
773
  _dict['pCompressorOutMax'] = None
425
774
 
426
775
  # set to None if p_compressor_in_target_average (nullable) is None
427
- # and __fields_set__ contains the field
428
- if self.p_compressor_in_target_average is None and "p_compressor_in_target_average" in self.__fields_set__:
776
+ # and model_fields_set contains the field
777
+ if self.p_compressor_in_target_average is None and "p_compressor_in_target_average" in self.model_fields_set:
429
778
  _dict['pCompressorInTargetAverage'] = None
430
779
 
431
780
  # set to None if p_compressor_in_target_min (nullable) is None
432
- # and __fields_set__ contains the field
433
- if self.p_compressor_in_target_min is None and "p_compressor_in_target_min" in self.__fields_set__:
781
+ # and model_fields_set contains the field
782
+ if self.p_compressor_in_target_min is None and "p_compressor_in_target_min" in self.model_fields_set:
434
783
  _dict['pCompressorInTargetMin'] = None
435
784
 
436
785
  # set to None if p_compressor_in_target_max (nullable) is None
437
- # and __fields_set__ contains the field
438
- if self.p_compressor_in_target_max is None and "p_compressor_in_target_max" in self.__fields_set__:
786
+ # and model_fields_set contains the field
787
+ if self.p_compressor_in_target_max is None and "p_compressor_in_target_max" in self.model_fields_set:
439
788
  _dict['pCompressorInTargetMax'] = None
440
789
 
441
- # set to None if t_inverter_average (nullable) is None
442
- # and __fields_set__ contains the field
443
- if self.t_inverter_average is None and "t_inverter_average" in self.__fields_set__:
444
- _dict['tInverterAverage'] = None
445
-
446
- # set to None if t_inverter_min (nullable) is None
447
- # and __fields_set__ contains the field
448
- if self.t_inverter_min is None and "t_inverter_min" in self.__fields_set__:
449
- _dict['tInverterMin'] = None
450
-
451
- # set to None if t_inverter_max (nullable) is None
452
- # and __fields_set__ contains the field
453
- if self.t_inverter_max is None and "t_inverter_max" in self.__fields_set__:
454
- _dict['tInverterMax'] = None
455
-
456
790
  # set to None if t_compressor_in_average (nullable) is None
457
- # and __fields_set__ contains the field
458
- if self.t_compressor_in_average is None and "t_compressor_in_average" in self.__fields_set__:
791
+ # and model_fields_set contains the field
792
+ if self.t_compressor_in_average is None and "t_compressor_in_average" in self.model_fields_set:
459
793
  _dict['tCompressorInAverage'] = None
460
794
 
461
795
  # set to None if t_compressor_in_min (nullable) is None
462
- # and __fields_set__ contains the field
463
- if self.t_compressor_in_min is None and "t_compressor_in_min" in self.__fields_set__:
796
+ # and model_fields_set contains the field
797
+ if self.t_compressor_in_min is None and "t_compressor_in_min" in self.model_fields_set:
464
798
  _dict['tCompressorInMin'] = None
465
799
 
466
800
  # set to None if t_compressor_in_max (nullable) is None
467
- # and __fields_set__ contains the field
468
- if self.t_compressor_in_max is None and "t_compressor_in_max" in self.__fields_set__:
801
+ # and model_fields_set contains the field
802
+ if self.t_compressor_in_max is None and "t_compressor_in_max" in self.model_fields_set:
469
803
  _dict['tCompressorInMax'] = None
470
804
 
471
805
  # set to None if t_compressor_out_average (nullable) is None
472
- # and __fields_set__ contains the field
473
- if self.t_compressor_out_average is None and "t_compressor_out_average" in self.__fields_set__:
806
+ # and model_fields_set contains the field
807
+ if self.t_compressor_out_average is None and "t_compressor_out_average" in self.model_fields_set:
474
808
  _dict['tCompressorOutAverage'] = None
475
809
 
476
810
  # set to None if t_compressor_out_min (nullable) is None
477
- # and __fields_set__ contains the field
478
- if self.t_compressor_out_min is None and "t_compressor_out_min" in self.__fields_set__:
811
+ # and model_fields_set contains the field
812
+ if self.t_compressor_out_min is None and "t_compressor_out_min" in self.model_fields_set:
479
813
  _dict['tCompressorOutMin'] = None
480
814
 
481
815
  # set to None if t_compressor_out_max (nullable) is None
482
- # and __fields_set__ contains the field
483
- if self.t_compressor_out_max is None and "t_compressor_out_max" in self.__fields_set__:
816
+ # and model_fields_set contains the field
817
+ if self.t_compressor_out_max is None and "t_compressor_out_max" in self.model_fields_set:
484
818
  _dict['tCompressorOutMax'] = None
485
819
 
486
820
  # set to None if t_compressor_in_transient_average (nullable) is None
487
- # and __fields_set__ contains the field
488
- if self.t_compressor_in_transient_average is None and "t_compressor_in_transient_average" in self.__fields_set__:
821
+ # and model_fields_set contains the field
822
+ if self.t_compressor_in_transient_average is None and "t_compressor_in_transient_average" in self.model_fields_set:
489
823
  _dict['tCompressorInTransientAverage'] = None
490
824
 
491
825
  # set to None if t_compressor_in_transient_min (nullable) is None
492
- # and __fields_set__ contains the field
493
- if self.t_compressor_in_transient_min is None and "t_compressor_in_transient_min" in self.__fields_set__:
826
+ # and model_fields_set contains the field
827
+ if self.t_compressor_in_transient_min is None and "t_compressor_in_transient_min" in self.model_fields_set:
494
828
  _dict['tCompressorInTransientMin'] = None
495
829
 
496
830
  # set to None if t_compressor_in_transient_max (nullable) is None
497
- # and __fields_set__ contains the field
498
- if self.t_compressor_in_transient_max is None and "t_compressor_in_transient_max" in self.__fields_set__:
831
+ # and model_fields_set contains the field
832
+ if self.t_compressor_in_transient_max is None and "t_compressor_in_transient_max" in self.model_fields_set:
499
833
  _dict['tCompressorInTransientMax'] = None
500
834
 
501
835
  # set to None if t_compressor_out_transient_average (nullable) is None
502
- # and __fields_set__ contains the field
503
- if self.t_compressor_out_transient_average is None and "t_compressor_out_transient_average" in self.__fields_set__:
836
+ # and model_fields_set contains the field
837
+ if self.t_compressor_out_transient_average is None and "t_compressor_out_transient_average" in self.model_fields_set:
504
838
  _dict['tCompressorOutTransientAverage'] = None
505
839
 
506
840
  # set to None if t_compressor_out_transient_min (nullable) is None
507
- # and __fields_set__ contains the field
508
- if self.t_compressor_out_transient_min is None and "t_compressor_out_transient_min" in self.__fields_set__:
841
+ # and model_fields_set contains the field
842
+ if self.t_compressor_out_transient_min is None and "t_compressor_out_transient_min" in self.model_fields_set:
509
843
  _dict['tCompressorOutTransientMin'] = None
510
844
 
511
845
  # set to None if t_compressor_out_transient_max (nullable) is None
512
- # and __fields_set__ contains the field
513
- if self.t_compressor_out_transient_max is None and "t_compressor_out_transient_max" in self.__fields_set__:
846
+ # and model_fields_set contains the field
847
+ if self.t_compressor_out_transient_max is None and "t_compressor_out_transient_max" in self.model_fields_set:
514
848
  _dict['tCompressorOutTransientMax'] = None
515
849
 
516
850
  # set to None if delta_t_compressor_in_superheat_average (nullable) is None
517
- # and __fields_set__ contains the field
518
- if self.delta_t_compressor_in_superheat_average is None and "delta_t_compressor_in_superheat_average" in self.__fields_set__:
851
+ # and model_fields_set contains the field
852
+ if self.delta_t_compressor_in_superheat_average is None and "delta_t_compressor_in_superheat_average" in self.model_fields_set:
519
853
  _dict['deltaTCompressorInSuperheatAverage'] = None
520
854
 
521
855
  # set to None if delta_t_compressor_in_superheat_min (nullable) is None
522
- # and __fields_set__ contains the field
523
- if self.delta_t_compressor_in_superheat_min is None and "delta_t_compressor_in_superheat_min" in self.__fields_set__:
856
+ # and model_fields_set contains the field
857
+ if self.delta_t_compressor_in_superheat_min is None and "delta_t_compressor_in_superheat_min" in self.model_fields_set:
524
858
  _dict['deltaTCompressorInSuperheatMin'] = None
525
859
 
526
860
  # set to None if delta_t_compressor_in_superheat_max (nullable) is None
527
- # and __fields_set__ contains the field
528
- if self.delta_t_compressor_in_superheat_max is None and "delta_t_compressor_in_superheat_max" in self.__fields_set__:
861
+ # and model_fields_set contains the field
862
+ if self.delta_t_compressor_in_superheat_max is None and "delta_t_compressor_in_superheat_max" in self.model_fields_set:
529
863
  _dict['deltaTCompressorInSuperheatMax'] = None
530
864
 
531
- # set to None if compressor_power_low_accuracy_average (nullable) is None
532
- # and __fields_set__ contains the field
533
- if self.compressor_power_low_accuracy_average is None and "compressor_power_low_accuracy_average" in self.__fields_set__:
534
- _dict['compressorPowerLowAccuracyAverage'] = None
535
-
536
- # set to None if compressor_power_low_accuracy_min (nullable) is None
537
- # and __fields_set__ contains the field
538
- if self.compressor_power_low_accuracy_min is None and "compressor_power_low_accuracy_min" in self.__fields_set__:
539
- _dict['compressorPowerLowAccuracyMin'] = None
540
-
541
- # set to None if compressor_power_low_accuracy_max (nullable) is None
542
- # and __fields_set__ contains the field
543
- if self.compressor_power_low_accuracy_max is None and "compressor_power_low_accuracy_max" in self.__fields_set__:
544
- _dict['compressorPowerLowAccuracyMax'] = None
545
-
546
865
  # set to None if fan_average (nullable) is None
547
- # and __fields_set__ contains the field
548
- if self.fan_average is None and "fan_average" in self.__fields_set__:
866
+ # and model_fields_set contains the field
867
+ if self.fan_average is None and "fan_average" in self.model_fields_set:
549
868
  _dict['fanAverage'] = None
550
869
 
551
870
  # set to None if fan_min (nullable) is None
552
- # and __fields_set__ contains the field
553
- if self.fan_min is None and "fan_min" in self.__fields_set__:
871
+ # and model_fields_set contains the field
872
+ if self.fan_min is None and "fan_min" in self.model_fields_set:
554
873
  _dict['fanMin'] = None
555
874
 
556
875
  # set to None if fan_max (nullable) is None
557
- # and __fields_set__ contains the field
558
- if self.fan_max is None and "fan_max" in self.__fields_set__:
876
+ # and model_fields_set contains the field
877
+ if self.fan_max is None and "fan_max" in self.model_fields_set:
559
878
  _dict['fanMax'] = None
560
879
 
561
880
  # set to None if fan_power_average (nullable) is None
562
- # and __fields_set__ contains the field
563
- if self.fan_power_average is None and "fan_power_average" in self.__fields_set__:
881
+ # and model_fields_set contains the field
882
+ if self.fan_power_average is None and "fan_power_average" in self.model_fields_set:
564
883
  _dict['fanPowerAverage'] = None
565
884
 
566
885
  # set to None if fan_power_min (nullable) is None
567
- # and __fields_set__ contains the field
568
- if self.fan_power_min is None and "fan_power_min" in self.__fields_set__:
886
+ # and model_fields_set contains the field
887
+ if self.fan_power_min is None and "fan_power_min" in self.model_fields_set:
569
888
  _dict['fanPowerMin'] = None
570
889
 
571
890
  # set to None if fan_power_max (nullable) is None
572
- # and __fields_set__ contains the field
573
- if self.fan_power_max is None and "fan_power_max" in self.__fields_set__:
891
+ # and model_fields_set contains the field
892
+ if self.fan_power_max is None and "fan_power_max" in self.model_fields_set:
574
893
  _dict['fanPowerMax'] = None
575
894
 
576
- # set to None if cm_mass_power_in_average (nullable) is None
577
- # and __fields_set__ contains the field
578
- if self.cm_mass_power_in_average is None and "cm_mass_power_in_average" in self.__fields_set__:
579
- _dict['cmMassPowerInAverage'] = None
580
-
581
- # set to None if cm_mass_power_out_average (nullable) is None
582
- # and __fields_set__ contains the field
583
- if self.cm_mass_power_out_average is None and "cm_mass_power_out_average" in self.__fields_set__:
584
- _dict['cmMassPowerOutAverage'] = None
585
-
586
- # set to None if p_requested_average (nullable) is None
587
- # and __fields_set__ contains the field
588
- if self.p_requested_average is None and "p_requested_average" in self.__fields_set__:
589
- _dict['pRequestedAverage'] = None
590
-
591
- # set to None if p_requested_min (nullable) is None
592
- # and __fields_set__ contains the field
593
- if self.p_requested_min is None and "p_requested_min" in self.__fields_set__:
594
- _dict['pRequestedMin'] = None
595
-
596
- # set to None if p_requested_max (nullable) is None
597
- # and __fields_set__ contains the field
598
- if self.p_requested_max is None and "p_requested_max" in self.__fields_set__:
599
- _dict['pRequestedMax'] = None
600
-
601
- # set to None if power_error_integral_average (nullable) is None
602
- # and __fields_set__ contains the field
603
- if self.power_error_integral_average is None and "power_error_integral_average" in self.__fields_set__:
604
- _dict['powerErrorIntegralAverage'] = None
605
-
606
- # set to None if power_error_integral_min (nullable) is None
607
- # and __fields_set__ contains the field
608
- if self.power_error_integral_min is None and "power_error_integral_min" in self.__fields_set__:
609
- _dict['powerErrorIntegralMin'] = None
610
-
611
- # set to None if power_error_integral_max (nullable) is None
612
- # and __fields_set__ contains the field
613
- if self.power_error_integral_max is None and "power_error_integral_max" in self.__fields_set__:
614
- _dict['powerErrorIntegralMax'] = None
895
+ # set to None if temperature_error_integral_average (nullable) is None
896
+ # and model_fields_set contains the field
897
+ if self.temperature_error_integral_average is None and "temperature_error_integral_average" in self.model_fields_set:
898
+ _dict['temperatureErrorIntegralAverage'] = None
899
+
900
+ # set to None if temperature_error_integral_min (nullable) is None
901
+ # and model_fields_set contains the field
902
+ if self.temperature_error_integral_min is None and "temperature_error_integral_min" in self.model_fields_set:
903
+ _dict['temperatureErrorIntegralMin'] = None
904
+
905
+ # set to None if temperature_error_integral_max (nullable) is None
906
+ # and model_fields_set contains the field
907
+ if self.temperature_error_integral_max is None and "temperature_error_integral_max" in self.model_fields_set:
908
+ _dict['temperatureErrorIntegralMax'] = None
909
+
910
+ # set to None if dtc_none (nullable) is None
911
+ # and model_fields_set contains the field
912
+ if self.dtc_none is None and "dtc_none" in self.model_fields_set:
913
+ _dict['dtcNone'] = None
914
+
915
+ # set to None if dtc_continue (nullable) is None
916
+ # and model_fields_set contains the field
917
+ if self.dtc_continue is None and "dtc_continue" in self.model_fields_set:
918
+ _dict['dtcContinue'] = None
919
+
920
+ # set to None if dtc_compressor_off (nullable) is None
921
+ # and model_fields_set contains the field
922
+ if self.dtc_compressor_off is None and "dtc_compressor_off" in self.model_fields_set:
923
+ _dict['dtcCompressorOff'] = None
924
+
925
+ # set to None if dtc_defrost_forbidden (nullable) is None
926
+ # and model_fields_set contains the field
927
+ if self.dtc_defrost_forbidden is None and "dtc_defrost_forbidden" in self.model_fields_set:
928
+ _dict['dtcDefrostForbidden'] = None
929
+
930
+ # set to None if dtc_request_service (nullable) is None
931
+ # and model_fields_set contains the field
932
+ if self.dtc_request_service is None and "dtc_request_service" in self.model_fields_set:
933
+ _dict['dtcRequestService'] = None
934
+
935
+ # set to None if dtc_use_heating_curve (nullable) is None
936
+ # and model_fields_set contains the field
937
+ if self.dtc_use_heating_curve is None and "dtc_use_heating_curve" in self.model_fields_set:
938
+ _dict['dtcUseHeatingCurve'] = None
939
+
940
+ # set to None if dtc_dhw_forbidden (nullable) is None
941
+ # and model_fields_set contains the field
942
+ if self.dtc_dhw_forbidden is None and "dtc_dhw_forbidden" in self.model_fields_set:
943
+ _dict['dtcDhwForbidden'] = None
944
+
945
+ # set to None if dtc_error (nullable) is None
946
+ # and model_fields_set contains the field
947
+ if self.dtc_error is None and "dtc_error" in self.model_fields_set:
948
+ _dict['dtcError'] = None
949
+
950
+ # set to None if dtc_inactive (nullable) is None
951
+ # and model_fields_set contains the field
952
+ if self.dtc_inactive is None and "dtc_inactive" in self.model_fields_set:
953
+ _dict['dtcInactive'] = None
954
+
955
+ # set to None if control_bridge_status_dhw_valve (nullable) is None
956
+ # and model_fields_set contains the field
957
+ if self.control_bridge_status_dhw_valve is None and "control_bridge_status_dhw_valve" in self.model_fields_set:
958
+ _dict['controlBridgeStatusDhwValve'] = None
959
+
960
+ # set to None if valve_average (nullable) is None
961
+ # and model_fields_set contains the field
962
+ if self.valve_average is None and "valve_average" in self.model_fields_set:
963
+ _dict['valveAverage'] = None
964
+
965
+ # set to None if valve_min (nullable) is None
966
+ # and model_fields_set contains the field
967
+ if self.valve_min is None and "valve_min" in self.model_fields_set:
968
+ _dict['valveMin'] = None
969
+
970
+ # set to None if valve_max (nullable) is None
971
+ # and model_fields_set contains the field
972
+ if self.valve_max is None and "valve_max" in self.model_fields_set:
973
+ _dict['valveMax'] = None
974
+
975
+ # set to None if t_board_average (nullable) is None
976
+ # and model_fields_set contains the field
977
+ if self.t_board_average is None and "t_board_average" in self.model_fields_set:
978
+ _dict['tBoardAverage'] = None
979
+
980
+ # set to None if t_board_min (nullable) is None
981
+ # and model_fields_set contains the field
982
+ if self.t_board_min is None and "t_board_min" in self.model_fields_set:
983
+ _dict['tBoardMin'] = None
984
+
985
+ # set to None if t_board_max (nullable) is None
986
+ # and model_fields_set contains the field
987
+ if self.t_board_max is None and "t_board_max" in self.model_fields_set:
988
+ _dict['tBoardMax'] = None
989
+
990
+ # set to None if t_inverter_average (nullable) is None
991
+ # and model_fields_set contains the field
992
+ if self.t_inverter_average is None and "t_inverter_average" in self.model_fields_set:
993
+ _dict['tInverterAverage'] = None
994
+
995
+ # set to None if t_inverter_min (nullable) is None
996
+ # and model_fields_set contains the field
997
+ if self.t_inverter_min is None and "t_inverter_min" in self.model_fields_set:
998
+ _dict['tInverterMin'] = None
999
+
1000
+ # set to None if t_inverter_max (nullable) is None
1001
+ # and model_fields_set contains the field
1002
+ if self.t_inverter_max is None and "t_inverter_max" in self.model_fields_set:
1003
+ _dict['tInverterMax'] = None
1004
+
1005
+ # set to None if compressor_power_low_accuracy_average (nullable) is None
1006
+ # and model_fields_set contains the field
1007
+ if self.compressor_power_low_accuracy_average is None and "compressor_power_low_accuracy_average" in self.model_fields_set:
1008
+ _dict['compressorPowerLowAccuracyAverage'] = None
1009
+
1010
+ # set to None if compressor_power_low_accuracy_min (nullable) is None
1011
+ # and model_fields_set contains the field
1012
+ if self.compressor_power_low_accuracy_min is None and "compressor_power_low_accuracy_min" in self.model_fields_set:
1013
+ _dict['compressorPowerLowAccuracyMin'] = None
1014
+
1015
+ # set to None if compressor_power_low_accuracy_max (nullable) is None
1016
+ # and model_fields_set contains the field
1017
+ if self.compressor_power_low_accuracy_max is None and "compressor_power_low_accuracy_max" in self.model_fields_set:
1018
+ _dict['compressorPowerLowAccuracyMax'] = None
1019
+
1020
+ # set to None if cm_mass_power_in_standby_average (nullable) is None
1021
+ # and model_fields_set contains the field
1022
+ if self.cm_mass_power_in_standby_average is None and "cm_mass_power_in_standby_average" in self.model_fields_set:
1023
+ _dict['cmMassPowerInStandbyAverage'] = None
1024
+
1025
+ # set to None if cm_mass_power_in_standby_min (nullable) is None
1026
+ # and model_fields_set contains the field
1027
+ if self.cm_mass_power_in_standby_min is None and "cm_mass_power_in_standby_min" in self.model_fields_set:
1028
+ _dict['cmMassPowerInStandbyMin'] = None
1029
+
1030
+ # set to None if cm_mass_power_in_standby_max (nullable) is None
1031
+ # and model_fields_set contains the field
1032
+ if self.cm_mass_power_in_standby_max is None and "cm_mass_power_in_standby_max" in self.model_fields_set:
1033
+ _dict['cmMassPowerInStandbyMax'] = None
1034
+
1035
+ # set to None if cm_mass_power_in_heating_average (nullable) is None
1036
+ # and model_fields_set contains the field
1037
+ if self.cm_mass_power_in_heating_average is None and "cm_mass_power_in_heating_average" in self.model_fields_set:
1038
+ _dict['cmMassPowerInHeatingAverage'] = None
1039
+
1040
+ # set to None if cm_mass_power_in_heating_min (nullable) is None
1041
+ # and model_fields_set contains the field
1042
+ if self.cm_mass_power_in_heating_min is None and "cm_mass_power_in_heating_min" in self.model_fields_set:
1043
+ _dict['cmMassPowerInHeatingMin'] = None
1044
+
1045
+ # set to None if cm_mass_power_in_heating_max (nullable) is None
1046
+ # and model_fields_set contains the field
1047
+ if self.cm_mass_power_in_heating_max is None and "cm_mass_power_in_heating_max" in self.model_fields_set:
1048
+ _dict['cmMassPowerInHeatingMax'] = None
1049
+
1050
+ # set to None if cm_mass_power_in_cooling_average (nullable) is None
1051
+ # and model_fields_set contains the field
1052
+ if self.cm_mass_power_in_cooling_average is None and "cm_mass_power_in_cooling_average" in self.model_fields_set:
1053
+ _dict['cmMassPowerInCoolingAverage'] = None
1054
+
1055
+ # set to None if cm_mass_power_in_cooling_min (nullable) is None
1056
+ # and model_fields_set contains the field
1057
+ if self.cm_mass_power_in_cooling_min is None and "cm_mass_power_in_cooling_min" in self.model_fields_set:
1058
+ _dict['cmMassPowerInCoolingMin'] = None
1059
+
1060
+ # set to None if cm_mass_power_in_cooling_max (nullable) is None
1061
+ # and model_fields_set contains the field
1062
+ if self.cm_mass_power_in_cooling_max is None and "cm_mass_power_in_cooling_max" in self.model_fields_set:
1063
+ _dict['cmMassPowerInCoolingMax'] = None
1064
+
1065
+ # set to None if cm_mass_power_in_heating_defrost_average (nullable) is None
1066
+ # and model_fields_set contains the field
1067
+ if self.cm_mass_power_in_heating_defrost_average is None and "cm_mass_power_in_heating_defrost_average" in self.model_fields_set:
1068
+ _dict['cmMassPowerInHeatingDefrostAverage'] = None
1069
+
1070
+ # set to None if cm_mass_power_in_heating_defrost_min (nullable) is None
1071
+ # and model_fields_set contains the field
1072
+ if self.cm_mass_power_in_heating_defrost_min is None and "cm_mass_power_in_heating_defrost_min" in self.model_fields_set:
1073
+ _dict['cmMassPowerInHeatingDefrostMin'] = None
1074
+
1075
+ # set to None if cm_mass_power_in_heating_defrost_max (nullable) is None
1076
+ # and model_fields_set contains the field
1077
+ if self.cm_mass_power_in_heating_defrost_max is None and "cm_mass_power_in_heating_defrost_max" in self.model_fields_set:
1078
+ _dict['cmMassPowerInHeatingDefrostMax'] = None
1079
+
1080
+ # set to None if cm_mass_power_in_dhw_defrost_average (nullable) is None
1081
+ # and model_fields_set contains the field
1082
+ if self.cm_mass_power_in_dhw_defrost_average is None and "cm_mass_power_in_dhw_defrost_average" in self.model_fields_set:
1083
+ _dict['cmMassPowerInDhwDefrostAverage'] = None
1084
+
1085
+ # set to None if cm_mass_power_in_dhw_defrost_min (nullable) is None
1086
+ # and model_fields_set contains the field
1087
+ if self.cm_mass_power_in_dhw_defrost_min is None and "cm_mass_power_in_dhw_defrost_min" in self.model_fields_set:
1088
+ _dict['cmMassPowerInDhwDefrostMin'] = None
1089
+
1090
+ # set to None if cm_mass_power_in_dhw_defrost_max (nullable) is None
1091
+ # and model_fields_set contains the field
1092
+ if self.cm_mass_power_in_dhw_defrost_max is None and "cm_mass_power_in_dhw_defrost_max" in self.model_fields_set:
1093
+ _dict['cmMassPowerInDhwDefrostMax'] = None
1094
+
1095
+ # set to None if cm_mass_power_in_defrost_average (nullable) is None
1096
+ # and model_fields_set contains the field
1097
+ if self.cm_mass_power_in_defrost_average is None and "cm_mass_power_in_defrost_average" in self.model_fields_set:
1098
+ _dict['cmMassPowerInDefrostAverage'] = None
1099
+
1100
+ # set to None if cm_mass_power_in_defrost_min (nullable) is None
1101
+ # and model_fields_set contains the field
1102
+ if self.cm_mass_power_in_defrost_min is None and "cm_mass_power_in_defrost_min" in self.model_fields_set:
1103
+ _dict['cmMassPowerInDefrostMin'] = None
1104
+
1105
+ # set to None if cm_mass_power_in_defrost_max (nullable) is None
1106
+ # and model_fields_set contains the field
1107
+ if self.cm_mass_power_in_defrost_max is None and "cm_mass_power_in_defrost_max" in self.model_fields_set:
1108
+ _dict['cmMassPowerInDefrostMax'] = None
1109
+
1110
+ # set to None if cm_mass_power_in_dhw_average (nullable) is None
1111
+ # and model_fields_set contains the field
1112
+ if self.cm_mass_power_in_dhw_average is None and "cm_mass_power_in_dhw_average" in self.model_fields_set:
1113
+ _dict['cmMassPowerInDhwAverage'] = None
1114
+
1115
+ # set to None if cm_mass_power_in_dhw_min (nullable) is None
1116
+ # and model_fields_set contains the field
1117
+ if self.cm_mass_power_in_dhw_min is None and "cm_mass_power_in_dhw_min" in self.model_fields_set:
1118
+ _dict['cmMassPowerInDhwMin'] = None
1119
+
1120
+ # set to None if cm_mass_power_in_dhw_max (nullable) is None
1121
+ # and model_fields_set contains the field
1122
+ if self.cm_mass_power_in_dhw_max is None and "cm_mass_power_in_dhw_max" in self.model_fields_set:
1123
+ _dict['cmMassPowerInDhwMax'] = None
1124
+
1125
+ # set to None if cm_mass_power_in_manual_control_average (nullable) is None
1126
+ # and model_fields_set contains the field
1127
+ if self.cm_mass_power_in_manual_control_average is None and "cm_mass_power_in_manual_control_average" in self.model_fields_set:
1128
+ _dict['cmMassPowerInManualControlAverage'] = None
1129
+
1130
+ # set to None if cm_mass_power_in_manual_control_min (nullable) is None
1131
+ # and model_fields_set contains the field
1132
+ if self.cm_mass_power_in_manual_control_min is None and "cm_mass_power_in_manual_control_min" in self.model_fields_set:
1133
+ _dict['cmMassPowerInManualControlMin'] = None
1134
+
1135
+ # set to None if cm_mass_power_out_heating_defrost_average (nullable) is None
1136
+ # and model_fields_set contains the field
1137
+ if self.cm_mass_power_out_heating_defrost_average is None and "cm_mass_power_out_heating_defrost_average" in self.model_fields_set:
1138
+ _dict['cmMassPowerOutHeatingDefrostAverage'] = None
1139
+
1140
+ # set to None if cm_mass_power_out_heating_defrost_min (nullable) is None
1141
+ # and model_fields_set contains the field
1142
+ if self.cm_mass_power_out_heating_defrost_min is None and "cm_mass_power_out_heating_defrost_min" in self.model_fields_set:
1143
+ _dict['cmMassPowerOutHeatingDefrostMin'] = None
1144
+
1145
+ # set to None if cm_mass_power_out_heating_defrost_max (nullable) is None
1146
+ # and model_fields_set contains the field
1147
+ if self.cm_mass_power_out_heating_defrost_max is None and "cm_mass_power_out_heating_defrost_max" in self.model_fields_set:
1148
+ _dict['cmMassPowerOutHeatingDefrostMax'] = None
1149
+
1150
+ # set to None if cm_mass_power_out_dhw_defrost_average (nullable) is None
1151
+ # and model_fields_set contains the field
1152
+ if self.cm_mass_power_out_dhw_defrost_average is None and "cm_mass_power_out_dhw_defrost_average" in self.model_fields_set:
1153
+ _dict['cmMassPowerOutDhwDefrostAverage'] = None
1154
+
1155
+ # set to None if cm_mass_power_out_dhw_defrost_min (nullable) is None
1156
+ # and model_fields_set contains the field
1157
+ if self.cm_mass_power_out_dhw_defrost_min is None and "cm_mass_power_out_dhw_defrost_min" in self.model_fields_set:
1158
+ _dict['cmMassPowerOutDhwDefrostMin'] = None
1159
+
1160
+ # set to None if cm_mass_power_out_dhw_defrost_max (nullable) is None
1161
+ # and model_fields_set contains the field
1162
+ if self.cm_mass_power_out_dhw_defrost_max is None and "cm_mass_power_out_dhw_defrost_max" in self.model_fields_set:
1163
+ _dict['cmMassPowerOutDhwDefrostMax'] = None
1164
+
1165
+ # set to None if cm_mass_power_in_manual_control_max (nullable) is None
1166
+ # and model_fields_set contains the field
1167
+ if self.cm_mass_power_in_manual_control_max is None and "cm_mass_power_in_manual_control_max" in self.model_fields_set:
1168
+ _dict['cmMassPowerInManualControlMax'] = None
1169
+
1170
+ # set to None if cm_mass_power_out_standby_average (nullable) is None
1171
+ # and model_fields_set contains the field
1172
+ if self.cm_mass_power_out_standby_average is None and "cm_mass_power_out_standby_average" in self.model_fields_set:
1173
+ _dict['cmMassPowerOutStandbyAverage'] = None
1174
+
1175
+ # set to None if cm_mass_power_out_standby_min (nullable) is None
1176
+ # and model_fields_set contains the field
1177
+ if self.cm_mass_power_out_standby_min is None and "cm_mass_power_out_standby_min" in self.model_fields_set:
1178
+ _dict['cmMassPowerOutStandbyMin'] = None
1179
+
1180
+ # set to None if cm_mass_power_out_standby_max (nullable) is None
1181
+ # and model_fields_set contains the field
1182
+ if self.cm_mass_power_out_standby_max is None and "cm_mass_power_out_standby_max" in self.model_fields_set:
1183
+ _dict['cmMassPowerOutStandbyMax'] = None
1184
+
1185
+ # set to None if cm_mass_power_out_heating_average (nullable) is None
1186
+ # and model_fields_set contains the field
1187
+ if self.cm_mass_power_out_heating_average is None and "cm_mass_power_out_heating_average" in self.model_fields_set:
1188
+ _dict['cmMassPowerOutHeatingAverage'] = None
1189
+
1190
+ # set to None if cm_mass_power_out_heating_min (nullable) is None
1191
+ # and model_fields_set contains the field
1192
+ if self.cm_mass_power_out_heating_min is None and "cm_mass_power_out_heating_min" in self.model_fields_set:
1193
+ _dict['cmMassPowerOutHeatingMin'] = None
1194
+
1195
+ # set to None if cm_mass_power_out_heating_max (nullable) is None
1196
+ # and model_fields_set contains the field
1197
+ if self.cm_mass_power_out_heating_max is None and "cm_mass_power_out_heating_max" in self.model_fields_set:
1198
+ _dict['cmMassPowerOutHeatingMax'] = None
1199
+
1200
+ # set to None if cm_mass_power_out_cooling_average (nullable) is None
1201
+ # and model_fields_set contains the field
1202
+ if self.cm_mass_power_out_cooling_average is None and "cm_mass_power_out_cooling_average" in self.model_fields_set:
1203
+ _dict['cmMassPowerOutCoolingAverage'] = None
1204
+
1205
+ # set to None if cm_mass_power_out_cooling_min (nullable) is None
1206
+ # and model_fields_set contains the field
1207
+ if self.cm_mass_power_out_cooling_min is None and "cm_mass_power_out_cooling_min" in self.model_fields_set:
1208
+ _dict['cmMassPowerOutCoolingMin'] = None
1209
+
1210
+ # set to None if cm_mass_power_out_cooling_max (nullable) is None
1211
+ # and model_fields_set contains the field
1212
+ if self.cm_mass_power_out_cooling_max is None and "cm_mass_power_out_cooling_max" in self.model_fields_set:
1213
+ _dict['cmMassPowerOutCoolingMax'] = None
1214
+
1215
+ # set to None if cm_mass_power_out_defrost_average (nullable) is None
1216
+ # and model_fields_set contains the field
1217
+ if self.cm_mass_power_out_defrost_average is None and "cm_mass_power_out_defrost_average" in self.model_fields_set:
1218
+ _dict['cmMassPowerOutDefrostAverage'] = None
1219
+
1220
+ # set to None if cm_mass_power_out_defrost_min (nullable) is None
1221
+ # and model_fields_set contains the field
1222
+ if self.cm_mass_power_out_defrost_min is None and "cm_mass_power_out_defrost_min" in self.model_fields_set:
1223
+ _dict['cmMassPowerOutDefrostMin'] = None
1224
+
1225
+ # set to None if cm_mass_power_out_defrost_max (nullable) is None
1226
+ # and model_fields_set contains the field
1227
+ if self.cm_mass_power_out_defrost_max is None and "cm_mass_power_out_defrost_max" in self.model_fields_set:
1228
+ _dict['cmMassPowerOutDefrostMax'] = None
1229
+
1230
+ # set to None if cm_mass_power_out_dhw_average (nullable) is None
1231
+ # and model_fields_set contains the field
1232
+ if self.cm_mass_power_out_dhw_average is None and "cm_mass_power_out_dhw_average" in self.model_fields_set:
1233
+ _dict['cmMassPowerOutDhwAverage'] = None
1234
+
1235
+ # set to None if cm_mass_power_out_dhw_min (nullable) is None
1236
+ # and model_fields_set contains the field
1237
+ if self.cm_mass_power_out_dhw_min is None and "cm_mass_power_out_dhw_min" in self.model_fields_set:
1238
+ _dict['cmMassPowerOutDhwMin'] = None
1239
+
1240
+ # set to None if cm_mass_power_out_dhw_max (nullable) is None
1241
+ # and model_fields_set contains the field
1242
+ if self.cm_mass_power_out_dhw_max is None and "cm_mass_power_out_dhw_max" in self.model_fields_set:
1243
+ _dict['cmMassPowerOutDhwMax'] = None
1244
+
1245
+ # set to None if cm_mass_power_out_manual_control_average (nullable) is None
1246
+ # and model_fields_set contains the field
1247
+ if self.cm_mass_power_out_manual_control_average is None and "cm_mass_power_out_manual_control_average" in self.model_fields_set:
1248
+ _dict['cmMassPowerOutManualControlAverage'] = None
1249
+
1250
+ # set to None if cm_mass_power_out_manual_control_min (nullable) is None
1251
+ # and model_fields_set contains the field
1252
+ if self.cm_mass_power_out_manual_control_min is None and "cm_mass_power_out_manual_control_min" in self.model_fields_set:
1253
+ _dict['cmMassPowerOutManualControlMin'] = None
1254
+
1255
+ # set to None if cm_mass_power_out_manual_control_max (nullable) is None
1256
+ # and model_fields_set contains the field
1257
+ if self.cm_mass_power_out_manual_control_max is None and "cm_mass_power_out_manual_control_max" in self.model_fields_set:
1258
+ _dict['cmMassPowerOutManualControlMax'] = None
1259
+
1260
+ # set to None if inverter_input_voltage_average (nullable) is None
1261
+ # and model_fields_set contains the field
1262
+ if self.inverter_input_voltage_average is None and "inverter_input_voltage_average" in self.model_fields_set:
1263
+ _dict['inverterInputVoltageAverage'] = None
1264
+
1265
+ # set to None if inverter_input_voltage_min (nullable) is None
1266
+ # and model_fields_set contains the field
1267
+ if self.inverter_input_voltage_min is None and "inverter_input_voltage_min" in self.model_fields_set:
1268
+ _dict['inverterInputVoltageMin'] = None
1269
+
1270
+ # set to None if inverter_input_voltage_max (nullable) is None
1271
+ # and model_fields_set contains the field
1272
+ if self.inverter_input_voltage_max is None and "inverter_input_voltage_max" in self.model_fields_set:
1273
+ _dict['inverterInputVoltageMax'] = None
1274
+
1275
+ # set to None if central_heating_pwm_requested_duty_cycle_average (nullable) is None
1276
+ # and model_fields_set contains the field
1277
+ if self.central_heating_pwm_requested_duty_cycle_average is None and "central_heating_pwm_requested_duty_cycle_average" in self.model_fields_set:
1278
+ _dict['centralHeatingPwmRequestedDutyCycleAverage'] = None
1279
+
1280
+ # set to None if central_heating_pwm_requested_duty_cycle_min (nullable) is None
1281
+ # and model_fields_set contains the field
1282
+ if self.central_heating_pwm_requested_duty_cycle_min is None and "central_heating_pwm_requested_duty_cycle_min" in self.model_fields_set:
1283
+ _dict['centralHeatingPwmRequestedDutyCycleMin'] = None
1284
+
1285
+ # set to None if central_heating_pwm_requested_duty_cycle_max (nullable) is None
1286
+ # and model_fields_set contains the field
1287
+ if self.central_heating_pwm_requested_duty_cycle_max is None and "central_heating_pwm_requested_duty_cycle_max" in self.model_fields_set:
1288
+ _dict['centralHeatingPwmRequestedDutyCycleMax'] = None
1289
+
1290
+ # set to None if central_heating_pwm_requested_duty_cycle_state_standby (nullable) is None
1291
+ # and model_fields_set contains the field
1292
+ if self.central_heating_pwm_requested_duty_cycle_state_standby is None and "central_heating_pwm_requested_duty_cycle_state_standby" in self.model_fields_set:
1293
+ _dict['centralHeatingPwmRequestedDutyCycleStateStandby'] = None
1294
+
1295
+ # set to None if central_heating_pwm_requested_duty_cycle_state_pumping (nullable) is None
1296
+ # and model_fields_set contains the field
1297
+ if self.central_heating_pwm_requested_duty_cycle_state_pumping is None and "central_heating_pwm_requested_duty_cycle_state_pumping" in self.model_fields_set:
1298
+ _dict['centralHeatingPwmRequestedDutyCycleStatePumping'] = None
1299
+
1300
+ # set to None if dhw_pwm_requested_duty_cycle_average (nullable) is None
1301
+ # and model_fields_set contains the field
1302
+ if self.dhw_pwm_requested_duty_cycle_average is None and "dhw_pwm_requested_duty_cycle_average" in self.model_fields_set:
1303
+ _dict['dhwPwmRequestedDutyCycleAverage'] = None
1304
+
1305
+ # set to None if dhw_pwm_requested_duty_cycle_min (nullable) is None
1306
+ # and model_fields_set contains the field
1307
+ if self.dhw_pwm_requested_duty_cycle_min is None and "dhw_pwm_requested_duty_cycle_min" in self.model_fields_set:
1308
+ _dict['dhwPwmRequestedDutyCycleMin'] = None
1309
+
1310
+ # set to None if dhw_pwm_requested_duty_cycle_max (nullable) is None
1311
+ # and model_fields_set contains the field
1312
+ if self.dhw_pwm_requested_duty_cycle_max is None and "dhw_pwm_requested_duty_cycle_max" in self.model_fields_set:
1313
+ _dict['dhwPwmRequestedDutyCycleMax'] = None
1314
+
1315
+ # set to None if dhw_pwm_requested_duty_cycle_state_standby (nullable) is None
1316
+ # and model_fields_set contains the field
1317
+ if self.dhw_pwm_requested_duty_cycle_state_standby is None and "dhw_pwm_requested_duty_cycle_state_standby" in self.model_fields_set:
1318
+ _dict['dhwPwmRequestedDutyCycleStateStandby'] = None
1319
+
1320
+ # set to None if dhw_pwm_requested_duty_cycle_state_pumping (nullable) is None
1321
+ # and model_fields_set contains the field
1322
+ if self.dhw_pwm_requested_duty_cycle_state_pumping is None and "dhw_pwm_requested_duty_cycle_state_pumping" in self.model_fields_set:
1323
+ _dict['dhwPwmRequestedDutyCycleStatePumping'] = None
1324
+
1325
+ # set to None if indoor_unit_heater_temperature_average (nullable) is None
1326
+ # and model_fields_set contains the field
1327
+ if self.indoor_unit_heater_temperature_average is None and "indoor_unit_heater_temperature_average" in self.model_fields_set:
1328
+ _dict['indoorUnitHeaterTemperatureAverage'] = None
1329
+
1330
+ # set to None if indoor_unit_heater_temperature_min (nullable) is None
1331
+ # and model_fields_set contains the field
1332
+ if self.indoor_unit_heater_temperature_min is None and "indoor_unit_heater_temperature_min" in self.model_fields_set:
1333
+ _dict['indoorUnitHeaterTemperatureMin'] = None
1334
+
1335
+ # set to None if indoor_unit_heater_temperature_max (nullable) is None
1336
+ # and model_fields_set contains the field
1337
+ if self.indoor_unit_heater_temperature_max is None and "indoor_unit_heater_temperature_max" in self.model_fields_set:
1338
+ _dict['indoorUnitHeaterTemperatureMax'] = None
1339
+
1340
+ # set to None if indoor_unit_input_current_average (nullable) is None
1341
+ # and model_fields_set contains the field
1342
+ if self.indoor_unit_input_current_average is None and "indoor_unit_input_current_average" in self.model_fields_set:
1343
+ _dict['indoorUnitInputCurrentAverage'] = None
1344
+
1345
+ # set to None if indoor_unit_input_current_min (nullable) is None
1346
+ # and model_fields_set contains the field
1347
+ if self.indoor_unit_input_current_min is None and "indoor_unit_input_current_min" in self.model_fields_set:
1348
+ _dict['indoorUnitInputCurrentMin'] = None
1349
+
1350
+ # set to None if indoor_unit_input_current_max (nullable) is None
1351
+ # and model_fields_set contains the field
1352
+ if self.indoor_unit_input_current_max is None and "indoor_unit_input_current_max" in self.model_fields_set:
1353
+ _dict['indoorUnitInputCurrentMax'] = None
1354
+
1355
+ # set to None if signal_sinr_average (nullable) is None
1356
+ # and model_fields_set contains the field
1357
+ if self.signal_sinr_average is None and "signal_sinr_average" in self.model_fields_set:
1358
+ _dict['signalSinrAverage'] = None
1359
+
1360
+ # set to None if signal_sinr_min (nullable) is None
1361
+ # and model_fields_set contains the field
1362
+ if self.signal_sinr_min is None and "signal_sinr_min" in self.model_fields_set:
1363
+ _dict['signalSinrMin'] = None
1364
+
1365
+ # set to None if signal_sinr_max (nullable) is None
1366
+ # and model_fields_set contains the field
1367
+ if self.signal_sinr_max is None and "signal_sinr_max" in self.model_fields_set:
1368
+ _dict['signalSinrMax'] = None
615
1369
 
616
1370
  return _dict
617
1371
 
618
1372
  @classmethod
619
- def from_dict(cls, obj: dict) -> HeatPumpLogViewDto:
1373
+ def from_dict(cls, obj: Dict) -> Self:
620
1374
  """Create an instance of HeatPumpLogViewDto from a dict"""
621
1375
  if obj is None:
622
1376
  return None
623
1377
 
624
1378
  if not isinstance(obj, dict):
625
- return HeatPumpLogViewDto.parse_obj(obj)
1379
+ return cls.model_validate(obj)
626
1380
 
627
- _obj = HeatPumpLogViewDto.parse_obj({
628
- "time_bucket": obj.get("timeBucket"),
1381
+ _obj = cls.model_validate({
1382
+ "timeBucket": obj.get("timeBucket"),
629
1383
  "interval": obj.get("interval"),
630
- "time_covered_in_interval": obj.get("timeCoveredInInterval"),
631
- "heat_pump_state_standby": obj.get("heatPumpStateStandby"),
632
- "heat_pump_state_heating": obj.get("heatPumpStateHeating"),
633
- "heat_pump_state_defrost_req_active": obj.get("heatPumpStateDefrostReqActive"),
634
- "heat_pump_state_defrost_open_valve": obj.get("heatPumpStateDefrostOpenValve"),
635
- "heat_pump_state_defrost_close_valve": obj.get("heatPumpStateDefrostCloseValve"),
636
- "heat_pump_state_defrost_drip": obj.get("heatPumpStateDefrostDrip"),
637
- "heat_pump_state_defrost_cooling": obj.get("heatPumpStateDefrostCooling"),
638
- "heat_pump_state_cooling": obj.get("heatPumpStateCooling"),
639
- "heat_pump_state_dhw": obj.get("heatPumpStateDHW"),
640
- "heat_pump_state_legionnaires_disease_prevention": obj.get("heatPumpStateLegionnairesDiseasePrevention"),
641
- "rpm_control_startup": obj.get("rpmControlStartup"),
642
- "rpm_control_running": obj.get("rpmControlRunning"),
643
- "rpm_control_running_abnormally": obj.get("rpmControlRunningAbnormally"),
644
- "rpm_control_shutdown": obj.get("rpmControlShutdown"),
645
- "control_bridge_status_water_pump": obj.get("controlBridgeStatusWaterPump"),
646
- "control_bridge_status_dhw_valve": obj.get("controlBridgeStatusDhwValve"),
647
- "control_bridge_status_gas_boiler": obj.get("controlBridgeStatusGasBoiler"),
648
- "control_bridge_status_electric_heater": obj.get("controlBridgeStatusElectricHeater"),
649
- "control_bridge_status_water_pump2": obj.get("controlBridgeStatusWaterPump2"),
650
- "dtc_none": obj.get("dtcNone"),
651
- "dtc_continue": obj.get("dtcContinue"),
652
- "dtc_compressor_off": obj.get("dtcCompressorOff"),
653
- "dtc_defrost_forbidden": obj.get("dtcDefrostForbidden"),
654
- "dtc_request_service": obj.get("dtcRequestService"),
655
- "dtc_use_heating_curve": obj.get("dtcUseHeatingCurve"),
656
- "dtc_dhw_forbidden": obj.get("dtcDhwForbidden"),
657
- "dtc_error": obj.get("dtcError"),
658
- "dtc_inactive": obj.get("dtcInactive"),
659
- "signal_strength_average": obj.get("signalStrengthAverage"),
660
- "signal_strength_min": obj.get("signalStrengthMin"),
661
- "signal_strength_max": obj.get("signalStrengthMax"),
662
- "t1_average": obj.get("t1Average"),
663
- "t1_min": obj.get("t1Min"),
664
- "t1_max": obj.get("t1Max"),
665
- "t2_average": obj.get("t2Average"),
666
- "t2_min": obj.get("t2Min"),
667
- "t2_max": obj.get("t2Max"),
668
- "t_spare_ntc_average": obj.get("tSpareNtcAverage"),
669
- "t_spare_ntc_min": obj.get("tSpareNtcMin"),
670
- "t_spare_ntc_max": obj.get("tSpareNtcMax"),
671
- "t_board_average": obj.get("tBoardAverage"),
672
- "t_board_min": obj.get("tBoardMin"),
673
- "t_board_max": obj.get("tBoardMax"),
674
- "t_air_in_average": obj.get("tAirInAverage"),
675
- "t_air_in_min": obj.get("tAirInMin"),
676
- "t_air_in_max": obj.get("tAirInMax"),
677
- "t_air_out_average": obj.get("tAirOutAverage"),
678
- "t_air_out_min": obj.get("tAirOutMin"),
679
- "t_air_out_max": obj.get("tAirOutMax"),
680
- "t_water_in_average": obj.get("tWaterInAverage"),
681
- "t_water_in_min": obj.get("tWaterInMin"),
682
- "t_water_in_max": obj.get("tWaterInMax"),
683
- "t_water_out_average": obj.get("tWaterOutAverage"),
684
- "t_water_out_min": obj.get("tWaterOutMin"),
685
- "t_water_out_max": obj.get("tWaterOutMax"),
686
- "t_water_house_in_average": obj.get("tWaterHouseInAverage"),
687
- "t_water_house_in_min": obj.get("tWaterHouseInMin"),
688
- "t_water_house_in_max": obj.get("tWaterHouseInMax"),
689
- "rpm_average": obj.get("rpmAverage"),
690
- "rpm_min": obj.get("rpmMin"),
691
- "rpm_max": obj.get("rpmMax"),
692
- "rpm_limiter_average": obj.get("rpmLimiterAverage"),
693
- "rpm_limiter_min": obj.get("rpmLimiterMin"),
694
- "rpm_limiter_max": obj.get("rpmLimiterMax"),
695
- "rpm_limiter_no_limit": obj.get("rpmLimiterNoLimit"),
696
- "rpm_limiter_power_limit": obj.get("rpmLimiterPowerLimit"),
697
- "rpm_limiter_defrost": obj.get("rpmLimiterDefrost"),
698
- "rpm_limiter_silent_hours": obj.get("rpmLimiterSilentHours"),
699
- "rpm_limiter_hp_control": obj.get("rpmLimiterHPControl"),
700
- "rpm_limiter_pressure": obj.get("rpmLimiterPressure"),
701
- "rpm_limiter_water_out": obj.get("rpmLimiterWaterOut"),
702
- "rpm_limiter_envelope": obj.get("rpmLimiterEnvelope"),
703
- "rpm_limiter_house_in": obj.get("rpmLimiterHouseIn"),
704
- "p_compressor_in_average": obj.get("pCompressorInAverage"),
705
- "p_compressor_in_min": obj.get("pCompressorInMin"),
706
- "p_compressor_in_max": obj.get("pCompressorInMax"),
707
- "p_compressor_out_average": obj.get("pCompressorOutAverage"),
708
- "p_compressor_out_min": obj.get("pCompressorOutMin"),
709
- "p_compressor_out_max": obj.get("pCompressorOutMax"),
710
- "p_compressor_in_target_average": obj.get("pCompressorInTargetAverage"),
711
- "p_compressor_in_target_min": obj.get("pCompressorInTargetMin"),
712
- "p_compressor_in_target_max": obj.get("pCompressorInTargetMax"),
713
- "t_inverter_average": obj.get("tInverterAverage"),
714
- "t_inverter_min": obj.get("tInverterMin"),
715
- "t_inverter_max": obj.get("tInverterMax"),
716
- "t_compressor_in_average": obj.get("tCompressorInAverage"),
717
- "t_compressor_in_min": obj.get("tCompressorInMin"),
718
- "t_compressor_in_max": obj.get("tCompressorInMax"),
719
- "t_compressor_out_average": obj.get("tCompressorOutAverage"),
720
- "t_compressor_out_min": obj.get("tCompressorOutMin"),
721
- "t_compressor_out_max": obj.get("tCompressorOutMax"),
722
- "t_compressor_in_transient_average": obj.get("tCompressorInTransientAverage"),
723
- "t_compressor_in_transient_min": obj.get("tCompressorInTransientMin"),
724
- "t_compressor_in_transient_max": obj.get("tCompressorInTransientMax"),
725
- "t_compressor_out_transient_average": obj.get("tCompressorOutTransientAverage"),
726
- "t_compressor_out_transient_min": obj.get("tCompressorOutTransientMin"),
727
- "t_compressor_out_transient_max": obj.get("tCompressorOutTransientMax"),
728
- "delta_t_compressor_in_superheat_average": obj.get("deltaTCompressorInSuperheatAverage"),
729
- "delta_t_compressor_in_superheat_min": obj.get("deltaTCompressorInSuperheatMin"),
730
- "delta_t_compressor_in_superheat_max": obj.get("deltaTCompressorInSuperheatMax"),
731
- "compressor_power_low_accuracy_average": obj.get("compressorPowerLowAccuracyAverage"),
732
- "compressor_power_low_accuracy_min": obj.get("compressorPowerLowAccuracyMin"),
733
- "compressor_power_low_accuracy_max": obj.get("compressorPowerLowAccuracyMax"),
734
- "fan_average": obj.get("fanAverage"),
735
- "fan_min": obj.get("fanMin"),
736
- "fan_max": obj.get("fanMax"),
737
- "fan_power_average": obj.get("fanPowerAverage"),
738
- "fan_power_min": obj.get("fanPowerMin"),
739
- "fan_power_max": obj.get("fanPowerMax"),
740
- "cm_mass_power_in_average": obj.get("cmMassPowerInAverage"),
741
- "cm_mass_power_out_average": obj.get("cmMassPowerOutAverage"),
742
- "p_requested_average": obj.get("pRequestedAverage"),
743
- "p_requested_min": obj.get("pRequestedMin"),
744
- "p_requested_max": obj.get("pRequestedMax"),
745
- "power_error_integral_average": obj.get("powerErrorIntegralAverage"),
746
- "power_error_integral_min": obj.get("powerErrorIntegralMin"),
747
- "power_error_integral_max": obj.get("powerErrorIntegralMax"),
748
- "thermostat_state_off": obj.get("thermostatStateOff"),
749
- "thermostat_state_on": obj.get("thermostatStateOn"),
750
- "t_room_average": obj.get("tRoomAverage"),
751
- "t_room_min": obj.get("tRoomMin"),
752
- "t_room_max": obj.get("tRoomMax"),
753
- "t_room_target_average": obj.get("tRoomTargetAverage"),
754
- "t_room_target_min": obj.get("tRoomTargetMin"),
755
- "t_room_target_max": obj.get("tRoomTargetMax"),
756
- "t_thermostat_setpoint_average": obj.get("tThermostatSetpointAverage"),
757
- "t_thermostat_setpoint_min": obj.get("tThermostatSetpointMin"),
758
- "t_thermostat_setpoint_max": obj.get("tThermostatSetpointMax"),
759
- "ot_boiler_feed_temperature_average": obj.get("otBoilerFeedTemperatureAverage"),
760
- "ot_boiler_feed_temperature_min": obj.get("otBoilerFeedTemperatureMin"),
761
- "ot_boiler_feed_temperature_max": obj.get("otBoilerFeedTemperatureMax"),
762
- "ot_boiler_return_temperature_average": obj.get("otBoilerReturnTemperatureAverage"),
763
- "ot_boiler_return_temperature_min": obj.get("otBoilerReturnTemperatureMin"),
764
- "ot_boiler_return_temperature_max": obj.get("otBoilerReturnTemperatureMax")
1384
+ "timeCoveredInInterval": obj.get("timeCoveredInInterval"),
1385
+ "heatPumpStateStandby": obj.get("heatPumpStateStandby"),
1386
+ "heatPumpStateHeating": obj.get("heatPumpStateHeating"),
1387
+ "heatPumpStateCooling": obj.get("heatPumpStateCooling"),
1388
+ "heatPumpStateDhw": obj.get("heatPumpStateDhw"),
1389
+ "heatPumpStateLegionella": obj.get("heatPumpStateLegionella"),
1390
+ "heatPumpStateManualControl": obj.get("heatPumpStateManualControl"),
1391
+ "heatPumpStateDhwDefrost": obj.get("heatPumpStateDhwDefrost"),
1392
+ "heatPumpStateHeatingDefrost": obj.get("heatPumpStateHeatingDefrost"),
1393
+ "controlBridgeStatusWaterPump": obj.get("controlBridgeStatusWaterPump"),
1394
+ "controlBridgeStatusGasBoiler": obj.get("controlBridgeStatusGasBoiler"),
1395
+ "controlBridgeStatusElectricHeater": obj.get("controlBridgeStatusElectricHeater"),
1396
+ "controlBridgeStatusWaterPump2": obj.get("controlBridgeStatusWaterPump2"),
1397
+ "t1Average": obj.get("t1Average"),
1398
+ "t1Min": obj.get("t1Min"),
1399
+ "t1Max": obj.get("t1Max"),
1400
+ "t2Average": obj.get("t2Average"),
1401
+ "t2Min": obj.get("t2Min"),
1402
+ "t2Max": obj.get("t2Max"),
1403
+ "tAirInAverage": obj.get("tAirInAverage"),
1404
+ "tAirInMin": obj.get("tAirInMin"),
1405
+ "tAirInMax": obj.get("tAirInMax"),
1406
+ "tAirOutAverage": obj.get("tAirOutAverage"),
1407
+ "tAirOutMin": obj.get("tAirOutMin"),
1408
+ "tAirOutMax": obj.get("tAirOutMax"),
1409
+ "tWaterInAverage": obj.get("tWaterInAverage"),
1410
+ "tWaterInMin": obj.get("tWaterInMin"),
1411
+ "tWaterInMax": obj.get("tWaterInMax"),
1412
+ "tWaterOutAverage": obj.get("tWaterOutAverage"),
1413
+ "tWaterOutMin": obj.get("tWaterOutMin"),
1414
+ "tWaterOutMax": obj.get("tWaterOutMax"),
1415
+ "tWaterHouseInAverage": obj.get("tWaterHouseInAverage"),
1416
+ "tWaterHouseInMin": obj.get("tWaterHouseInMin"),
1417
+ "tWaterHouseInMax": obj.get("tWaterHouseInMax"),
1418
+ "tRoomAverage": obj.get("tRoomAverage"),
1419
+ "tRoomMin": obj.get("tRoomMin"),
1420
+ "tRoomMax": obj.get("tRoomMax"),
1421
+ "tRoomTargetAverage": obj.get("tRoomTargetAverage"),
1422
+ "tRoomTargetMin": obj.get("tRoomTargetMin"),
1423
+ "tRoomTargetMax": obj.get("tRoomTargetMax"),
1424
+ "tThermostatSetpointAverage": obj.get("tThermostatSetpointAverage"),
1425
+ "tThermostatSetpointMin": obj.get("tThermostatSetpointMin"),
1426
+ "tThermostatSetpointMax": obj.get("tThermostatSetpointMax"),
1427
+ "otBoilerFeedTemperatureAverage": obj.get("otBoilerFeedTemperatureAverage"),
1428
+ "otBoilerFeedTemperatureMin": obj.get("otBoilerFeedTemperatureMin"),
1429
+ "otBoilerFeedTemperatureMax": obj.get("otBoilerFeedTemperatureMax"),
1430
+ "otBoilerReturnTemperatureAverage": obj.get("otBoilerReturnTemperatureAverage"),
1431
+ "otBoilerReturnTemperatureMin": obj.get("otBoilerReturnTemperatureMin"),
1432
+ "otBoilerReturnTemperatureMax": obj.get("otBoilerReturnTemperatureMax"),
1433
+ "thermostatStateOff": obj.get("thermostatStateOff"),
1434
+ "thermostatStateOn": obj.get("thermostatStateOn"),
1435
+ "rpmAverage": obj.get("rpmAverage"),
1436
+ "rpmMin": obj.get("rpmMin"),
1437
+ "rpmMax": obj.get("rpmMax"),
1438
+ "centralHeatingFlowAverage": obj.get("centralHeatingFlowAverage"),
1439
+ "centralHeatingFlowMin": obj.get("centralHeatingFlowMin"),
1440
+ "centralHeatingFlowMax": obj.get("centralHeatingFlowMax"),
1441
+ "centralHeatingFlowStateStandby": obj.get("centralHeatingFlowStateStandby"),
1442
+ "centralHeatingFlowStateStandbyNoPwm": obj.get("centralHeatingFlowStateStandbyNoPwm"),
1443
+ "centralHeatingFlowStateMotorBlocked": obj.get("centralHeatingFlowStateMotorBlocked"),
1444
+ "centralHeatingFlowStatePumping": obj.get("centralHeatingFlowStatePumping"),
1445
+ "centralHeatingFlowStatePumpingNoPwm": obj.get("centralHeatingFlowStatePumpingNoPwm"),
1446
+ "centralHeatingFlowStateSuboptimalRunning": obj.get("centralHeatingFlowStateSuboptimalRunning"),
1447
+ "centralHeatingFlowStateStoppedMomentarily": obj.get("centralHeatingFlowStateStoppedMomentarily"),
1448
+ "centralHeatingFlowStateStoppedPermanentDamage": obj.get("centralHeatingFlowStateStoppedPermanentDamage"),
1449
+ "dhwFlowAverage": obj.get("dhwFlowAverage"),
1450
+ "dhwFlowMin": obj.get("dhwFlowMin"),
1451
+ "dhwFlowMax": obj.get("dhwFlowMax"),
1452
+ "dhwFlowStateStandby": obj.get("dhwFlowStateStandby"),
1453
+ "dhwFlowStateStandbyNoPwm": obj.get("dhwFlowStateStandbyNoPwm"),
1454
+ "dhwFlowStateMotorBlocked": obj.get("dhwFlowStateMotorBlocked"),
1455
+ "dhwFlowStatePumping": obj.get("dhwFlowStatePumping"),
1456
+ "dhwFlowStatePumpingNoPwm": obj.get("dhwFlowStatePumpingNoPwm"),
1457
+ "dhwFlowStateSuboptimalRunning": obj.get("dhwFlowStateSuboptimalRunning"),
1458
+ "dhwFlowStateStoppedMomentarily": obj.get("dhwFlowStateStoppedMomentarily"),
1459
+ "dhwFlowStateStoppedPermanentDamage": obj.get("dhwFlowStateStoppedPermanentDamage"),
1460
+ "signalStrengthAverage": obj.get("signalStrengthAverage"),
1461
+ "signalStrengthMin": obj.get("signalStrengthMin"),
1462
+ "signalStrengthMax": obj.get("signalStrengthMax"),
1463
+ "rpmLimiterAverage": obj.get("rpmLimiterAverage"),
1464
+ "rpmLimiterMin": obj.get("rpmLimiterMin"),
1465
+ "rpmLimiterMax": obj.get("rpmLimiterMax"),
1466
+ "rpmLimiterNoLimit": obj.get("rpmLimiterNoLimit"),
1467
+ "rpmLimiterPowerLimit": obj.get("rpmLimiterPowerLimit"),
1468
+ "rpmLimiterDefrost": obj.get("rpmLimiterDefrost"),
1469
+ "rpmLimiterSilentHours": obj.get("rpmLimiterSilentHours"),
1470
+ "rpmLimiterHPControl": obj.get("rpmLimiterHPControl"),
1471
+ "rpmLimiterPressure": obj.get("rpmLimiterPressure"),
1472
+ "rpmLimiterWaterOut": obj.get("rpmLimiterWaterOut"),
1473
+ "rpmLimiterEnvelope": obj.get("rpmLimiterEnvelope"),
1474
+ "rpmLimiterHouseIn": obj.get("rpmLimiterHouseIn"),
1475
+ "pCompressorInAverage": obj.get("pCompressorInAverage"),
1476
+ "pCompressorInMin": obj.get("pCompressorInMin"),
1477
+ "pCompressorInMax": obj.get("pCompressorInMax"),
1478
+ "pCompressorOutAverage": obj.get("pCompressorOutAverage"),
1479
+ "pCompressorOutMin": obj.get("pCompressorOutMin"),
1480
+ "pCompressorOutMax": obj.get("pCompressorOutMax"),
1481
+ "pCompressorInTargetAverage": obj.get("pCompressorInTargetAverage"),
1482
+ "pCompressorInTargetMin": obj.get("pCompressorInTargetMin"),
1483
+ "pCompressorInTargetMax": obj.get("pCompressorInTargetMax"),
1484
+ "tCompressorInAverage": obj.get("tCompressorInAverage"),
1485
+ "tCompressorInMin": obj.get("tCompressorInMin"),
1486
+ "tCompressorInMax": obj.get("tCompressorInMax"),
1487
+ "tCompressorOutAverage": obj.get("tCompressorOutAverage"),
1488
+ "tCompressorOutMin": obj.get("tCompressorOutMin"),
1489
+ "tCompressorOutMax": obj.get("tCompressorOutMax"),
1490
+ "tCompressorInTransientAverage": obj.get("tCompressorInTransientAverage"),
1491
+ "tCompressorInTransientMin": obj.get("tCompressorInTransientMin"),
1492
+ "tCompressorInTransientMax": obj.get("tCompressorInTransientMax"),
1493
+ "tCompressorOutTransientAverage": obj.get("tCompressorOutTransientAverage"),
1494
+ "tCompressorOutTransientMin": obj.get("tCompressorOutTransientMin"),
1495
+ "tCompressorOutTransientMax": obj.get("tCompressorOutTransientMax"),
1496
+ "deltaTCompressorInSuperheatAverage": obj.get("deltaTCompressorInSuperheatAverage"),
1497
+ "deltaTCompressorInSuperheatMin": obj.get("deltaTCompressorInSuperheatMin"),
1498
+ "deltaTCompressorInSuperheatMax": obj.get("deltaTCompressorInSuperheatMax"),
1499
+ "fanAverage": obj.get("fanAverage"),
1500
+ "fanMin": obj.get("fanMin"),
1501
+ "fanMax": obj.get("fanMax"),
1502
+ "fanPowerAverage": obj.get("fanPowerAverage"),
1503
+ "fanPowerMin": obj.get("fanPowerMin"),
1504
+ "fanPowerMax": obj.get("fanPowerMax"),
1505
+ "temperatureErrorIntegralAverage": obj.get("temperatureErrorIntegralAverage"),
1506
+ "temperatureErrorIntegralMin": obj.get("temperatureErrorIntegralMin"),
1507
+ "temperatureErrorIntegralMax": obj.get("temperatureErrorIntegralMax"),
1508
+ "dtcNone": obj.get("dtcNone"),
1509
+ "dtcContinue": obj.get("dtcContinue"),
1510
+ "dtcCompressorOff": obj.get("dtcCompressorOff"),
1511
+ "dtcDefrostForbidden": obj.get("dtcDefrostForbidden"),
1512
+ "dtcRequestService": obj.get("dtcRequestService"),
1513
+ "dtcUseHeatingCurve": obj.get("dtcUseHeatingCurve"),
1514
+ "dtcDhwForbidden": obj.get("dtcDhwForbidden"),
1515
+ "dtcError": obj.get("dtcError"),
1516
+ "dtcInactive": obj.get("dtcInactive"),
1517
+ "controlBridgeStatusDhwValve": obj.get("controlBridgeStatusDhwValve"),
1518
+ "valveAverage": obj.get("valveAverage"),
1519
+ "valveMin": obj.get("valveMin"),
1520
+ "valveMax": obj.get("valveMax"),
1521
+ "tBoardAverage": obj.get("tBoardAverage"),
1522
+ "tBoardMin": obj.get("tBoardMin"),
1523
+ "tBoardMax": obj.get("tBoardMax"),
1524
+ "tInverterAverage": obj.get("tInverterAverage"),
1525
+ "tInverterMin": obj.get("tInverterMin"),
1526
+ "tInverterMax": obj.get("tInverterMax"),
1527
+ "compressorPowerLowAccuracyAverage": obj.get("compressorPowerLowAccuracyAverage"),
1528
+ "compressorPowerLowAccuracyMin": obj.get("compressorPowerLowAccuracyMin"),
1529
+ "compressorPowerLowAccuracyMax": obj.get("compressorPowerLowAccuracyMax"),
1530
+ "cmMassPowerInStandbyAverage": obj.get("cmMassPowerInStandbyAverage"),
1531
+ "cmMassPowerInStandbyMin": obj.get("cmMassPowerInStandbyMin"),
1532
+ "cmMassPowerInStandbyMax": obj.get("cmMassPowerInStandbyMax"),
1533
+ "cmMassPowerInHeatingAverage": obj.get("cmMassPowerInHeatingAverage"),
1534
+ "cmMassPowerInHeatingMin": obj.get("cmMassPowerInHeatingMin"),
1535
+ "cmMassPowerInHeatingMax": obj.get("cmMassPowerInHeatingMax"),
1536
+ "cmMassPowerInCoolingAverage": obj.get("cmMassPowerInCoolingAverage"),
1537
+ "cmMassPowerInCoolingMin": obj.get("cmMassPowerInCoolingMin"),
1538
+ "cmMassPowerInCoolingMax": obj.get("cmMassPowerInCoolingMax"),
1539
+ "cmMassPowerInHeatingDefrostAverage": obj.get("cmMassPowerInHeatingDefrostAverage"),
1540
+ "cmMassPowerInHeatingDefrostMin": obj.get("cmMassPowerInHeatingDefrostMin"),
1541
+ "cmMassPowerInHeatingDefrostMax": obj.get("cmMassPowerInHeatingDefrostMax"),
1542
+ "cmMassPowerInDhwDefrostAverage": obj.get("cmMassPowerInDhwDefrostAverage"),
1543
+ "cmMassPowerInDhwDefrostMin": obj.get("cmMassPowerInDhwDefrostMin"),
1544
+ "cmMassPowerInDhwDefrostMax": obj.get("cmMassPowerInDhwDefrostMax"),
1545
+ "cmMassPowerInDefrostAverage": obj.get("cmMassPowerInDefrostAverage"),
1546
+ "cmMassPowerInDefrostMin": obj.get("cmMassPowerInDefrostMin"),
1547
+ "cmMassPowerInDefrostMax": obj.get("cmMassPowerInDefrostMax"),
1548
+ "cmMassPowerInDhwAverage": obj.get("cmMassPowerInDhwAverage"),
1549
+ "cmMassPowerInDhwMin": obj.get("cmMassPowerInDhwMin"),
1550
+ "cmMassPowerInDhwMax": obj.get("cmMassPowerInDhwMax"),
1551
+ "cmMassPowerInManualControlAverage": obj.get("cmMassPowerInManualControlAverage"),
1552
+ "cmMassPowerInManualControlMin": obj.get("cmMassPowerInManualControlMin"),
1553
+ "cmMassPowerOutHeatingDefrostAverage": obj.get("cmMassPowerOutHeatingDefrostAverage"),
1554
+ "cmMassPowerOutHeatingDefrostMin": obj.get("cmMassPowerOutHeatingDefrostMin"),
1555
+ "cmMassPowerOutHeatingDefrostMax": obj.get("cmMassPowerOutHeatingDefrostMax"),
1556
+ "cmMassPowerOutDhwDefrostAverage": obj.get("cmMassPowerOutDhwDefrostAverage"),
1557
+ "cmMassPowerOutDhwDefrostMin": obj.get("cmMassPowerOutDhwDefrostMin"),
1558
+ "cmMassPowerOutDhwDefrostMax": obj.get("cmMassPowerOutDhwDefrostMax"),
1559
+ "cmMassPowerInManualControlMax": obj.get("cmMassPowerInManualControlMax"),
1560
+ "cmMassPowerOutStandbyAverage": obj.get("cmMassPowerOutStandbyAverage"),
1561
+ "cmMassPowerOutStandbyMin": obj.get("cmMassPowerOutStandbyMin"),
1562
+ "cmMassPowerOutStandbyMax": obj.get("cmMassPowerOutStandbyMax"),
1563
+ "cmMassPowerOutHeatingAverage": obj.get("cmMassPowerOutHeatingAverage"),
1564
+ "cmMassPowerOutHeatingMin": obj.get("cmMassPowerOutHeatingMin"),
1565
+ "cmMassPowerOutHeatingMax": obj.get("cmMassPowerOutHeatingMax"),
1566
+ "cmMassPowerOutCoolingAverage": obj.get("cmMassPowerOutCoolingAverage"),
1567
+ "cmMassPowerOutCoolingMin": obj.get("cmMassPowerOutCoolingMin"),
1568
+ "cmMassPowerOutCoolingMax": obj.get("cmMassPowerOutCoolingMax"),
1569
+ "cmMassPowerOutDefrostAverage": obj.get("cmMassPowerOutDefrostAverage"),
1570
+ "cmMassPowerOutDefrostMin": obj.get("cmMassPowerOutDefrostMin"),
1571
+ "cmMassPowerOutDefrostMax": obj.get("cmMassPowerOutDefrostMax"),
1572
+ "cmMassPowerOutDhwAverage": obj.get("cmMassPowerOutDhwAverage"),
1573
+ "cmMassPowerOutDhwMin": obj.get("cmMassPowerOutDhwMin"),
1574
+ "cmMassPowerOutDhwMax": obj.get("cmMassPowerOutDhwMax"),
1575
+ "cmMassPowerOutManualControlAverage": obj.get("cmMassPowerOutManualControlAverage"),
1576
+ "cmMassPowerOutManualControlMin": obj.get("cmMassPowerOutManualControlMin"),
1577
+ "cmMassPowerOutManualControlMax": obj.get("cmMassPowerOutManualControlMax"),
1578
+ "inverterInputVoltageAverage": obj.get("inverterInputVoltageAverage"),
1579
+ "inverterInputVoltageMin": obj.get("inverterInputVoltageMin"),
1580
+ "inverterInputVoltageMax": obj.get("inverterInputVoltageMax"),
1581
+ "centralHeatingPwmRequestedDutyCycleAverage": obj.get("centralHeatingPwmRequestedDutyCycleAverage"),
1582
+ "centralHeatingPwmRequestedDutyCycleMin": obj.get("centralHeatingPwmRequestedDutyCycleMin"),
1583
+ "centralHeatingPwmRequestedDutyCycleMax": obj.get("centralHeatingPwmRequestedDutyCycleMax"),
1584
+ "centralHeatingPwmRequestedDutyCycleStateStandby": obj.get("centralHeatingPwmRequestedDutyCycleStateStandby"),
1585
+ "centralHeatingPwmRequestedDutyCycleStatePumping": obj.get("centralHeatingPwmRequestedDutyCycleStatePumping"),
1586
+ "dhwPwmRequestedDutyCycleAverage": obj.get("dhwPwmRequestedDutyCycleAverage"),
1587
+ "dhwPwmRequestedDutyCycleMin": obj.get("dhwPwmRequestedDutyCycleMin"),
1588
+ "dhwPwmRequestedDutyCycleMax": obj.get("dhwPwmRequestedDutyCycleMax"),
1589
+ "dhwPwmRequestedDutyCycleStateStandby": obj.get("dhwPwmRequestedDutyCycleStateStandby"),
1590
+ "dhwPwmRequestedDutyCycleStatePumping": obj.get("dhwPwmRequestedDutyCycleStatePumping"),
1591
+ "indoorUnitHeaterTemperatureAverage": obj.get("indoorUnitHeaterTemperatureAverage"),
1592
+ "indoorUnitHeaterTemperatureMin": obj.get("indoorUnitHeaterTemperatureMin"),
1593
+ "indoorUnitHeaterTemperatureMax": obj.get("indoorUnitHeaterTemperatureMax"),
1594
+ "indoorUnitInputCurrentAverage": obj.get("indoorUnitInputCurrentAverage"),
1595
+ "indoorUnitInputCurrentMin": obj.get("indoorUnitInputCurrentMin"),
1596
+ "indoorUnitInputCurrentMax": obj.get("indoorUnitInputCurrentMax"),
1597
+ "signalSinrAverage": obj.get("signalSinrAverage"),
1598
+ "signalSinrMin": obj.get("signalSinrMin"),
1599
+ "signalSinrMax": obj.get("signalSinrMax")
765
1600
  })
766
1601
  return _obj
767
1602