weheat 2025.1.14rc1__py3-none-any.whl → 2025.1.15rc1__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.

Potentially problematic release.


This version of weheat might be problematic. Click here for more details.

Files changed (36) hide show
  1. weheat/__init__.py +7 -2
  2. weheat/abstractions/discovery.py +2 -4
  3. weheat/abstractions/heat_pump.py +6 -13
  4. weheat/abstractions/user.py +3 -5
  5. weheat/api/__init__.py +1 -0
  6. weheat/api/energy_log_api.py +306 -132
  7. weheat/api/heat_pump_api.py +521 -369
  8. weheat/api/heat_pump_log_api.py +836 -359
  9. weheat/api/user_api.py +243 -115
  10. weheat/api_client.py +234 -261
  11. weheat/api_response.py +10 -18
  12. weheat/configuration.py +4 -8
  13. weheat/exceptions.py +59 -25
  14. weheat/models/__init__.py +6 -0
  15. weheat/models/boiler_type.py +8 -3
  16. weheat/models/device_state.py +9 -4
  17. weheat/models/dhw_type.py +8 -3
  18. weheat/models/energy_view_dto.py +81 -66
  19. weheat/models/heat_pump_log_view_dto.py +527 -481
  20. weheat/models/heat_pump_model.py +8 -3
  21. weheat/models/heat_pump_status_enum.py +8 -3
  22. weheat/models/heat_pump_type.py +8 -3
  23. weheat/models/raw_heat_pump_log_dto.py +353 -315
  24. weheat/models/read_all_heat_pump_dto.py +64 -48
  25. weheat/models/read_heat_pump_dto.py +59 -43
  26. weheat/models/read_user_dto.py +54 -39
  27. weheat/models/read_user_me_dto.py +124 -0
  28. weheat/models/role.py +10 -4
  29. weheat/rest.py +142 -257
  30. weheat-2025.1.15rc1.dist-info/METADATA +115 -0
  31. weheat-2025.1.15rc1.dist-info/RECORD +37 -0
  32. weheat-2025.1.14rc1.dist-info/METADATA +0 -117
  33. weheat-2025.1.14rc1.dist-info/RECORD +0 -36
  34. {weheat-2025.1.14rc1.dist-info → weheat-2025.1.15rc1.dist-info}/LICENSE +0 -0
  35. {weheat-2025.1.14rc1.dist-info → weheat-2025.1.15rc1.dist-info}/WHEEL +0 -0
  36. {weheat-2025.1.14rc1.dist-info → weheat-2025.1.15rc1.dist-info}/top_level.txt +0 -0
@@ -18,753 +18,799 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
  from datetime import datetime
21
- from typing import Optional, Union
21
+ from typing import Any, ClassVar, Dict, List, Optional, Union
22
+ from pydantic import BaseModel, StrictFloat, StrictInt, StrictStr
23
+ from pydantic import Field
22
24
  try:
23
- from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt, StrictStr
25
+ from typing import Self
24
26
  except ImportError:
25
- from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr
27
+ from typing_extensions import Self
26
28
 
27
29
  class HeatPumpLogViewDto(BaseModel):
28
30
  """
29
31
  HeatPumpLogViewDto
30
- """
31
- time_bucket: Optional[datetime] = Field(None, alias="timeBucket", description="Timestamp of the beginning of this interval (UTC)")
32
- interval: Optional[StrictStr] = Field(None, description="Interval Granularity of this HeatPumpLogViewDto (Correct intervals include: \"Hour\", \"Day\", \"Week\", \"Month\", \"Year\")")
33
- 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")
34
- 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")
35
- 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")
36
- 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")
37
- 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")
38
- 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")
39
- 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")
40
- 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")
41
- 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")
42
- 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")
43
- 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")
44
- 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")
45
- 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")
46
- 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")
47
- 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")
48
- 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")
49
- 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")
50
- 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")
51
- 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")
52
- 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")
53
- 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)")
54
- 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)")
55
- 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)")
56
- 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)")
57
- 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)")
58
- 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)")
59
- 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)")
60
- 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)")
61
- 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)")
62
- 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)")
63
- 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)")
64
- 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)")
65
- 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")
66
- 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")
67
- 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")
68
- 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")
69
- 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")
70
- 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")
71
- 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)")
72
- 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)")
73
- 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)")
74
- 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)")
75
- 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)")
76
- 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)")
77
- 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")
78
- t_air_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tAirInMin")
79
- t_air_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tAirInMax")
80
- 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")
81
- 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")
82
- 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")
83
- 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")
84
- 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")
85
- 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")
86
- 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")
87
- 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")
88
- 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")
89
- 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")
90
- 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")
91
- 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")
92
- rpm_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="rpmAverage", description="Average RPM of the compressor for this interval (not for consumers)")
93
- rpm_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="rpmMin", description="Minimum RPM of the compressor for this interval (not for consumers)")
94
- rpm_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="rpmMax", description="Maximum RPM of the compressor for this interval (not for consumers)")
95
- 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)")
96
- 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)")
97
- 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)")
98
- 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)")
99
- 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)")
100
- 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)")
101
- 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)")
102
- 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)")
103
- 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)")
104
- 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)")
105
- 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)")
106
- 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)")
107
- 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)")
108
- 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)")
109
- 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)")
110
- 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)")
111
- 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)")
112
- 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)")
113
- 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)")
114
- 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)")
115
- 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)")
116
- t_inverter_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tInverterAverage", description="Average temperature of the inverter for this interval (staff only)")
117
- t_inverter_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tInverterMin", description="Minimum temperature of the inverter for this interval (staff only)")
118
- t_inverter_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tInverterMax", description="Maximum temperature of the inverter for this interval (staff only)")
119
- 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)")
120
- 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)")
121
- 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)")
122
- 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)")
123
- 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)")
124
- 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)")
125
- 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)")
126
- 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)")
127
- 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)")
128
- 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)")
129
- 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)")
130
- 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)")
131
- 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)")
132
- 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)")
133
- 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)")
134
- 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)")
135
- 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)")
136
- 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)")
137
- fan_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanAverage", description="Average percentage of the fan used for this interval (staff only)")
138
- fan_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanMin", description="Minimum percentage of the fan used for this interval (staff only)")
139
- fan_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanMax", description="Maximum percentage of the fan used for this interval (staff only)")
140
- fan_power_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanPowerAverage", description="Average power used by the fan for this interval (staff only)")
141
- fan_power_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanPowerMin", description="Minimum power used by the fan for this interval (staff only)")
142
- fan_power_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fanPowerMax", description="Maximum power used by the fan for this interval (staff only)")
143
- 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)")
144
- 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)")
145
- p_requested_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pRequestedAverage", description="Average Power requested by the heat pump for this interval (staff only)")
146
- p_requested_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pRequestedMin", description="Minimum Power requested by the heat pump for this interval (staff only)")
147
- p_requested_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="pRequestedMax", description="Maximum Power requested by the heat pump for this interval (staff only)")
148
- power_error_integral_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="powerErrorIntegralAverage", description="Average value of the PowerErrorIntegral for this interval (staff only)")
149
- power_error_integral_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="powerErrorIntegralMin", description="Minimum value of the PowerErrorIntegral for this interval (staff only)")
150
- power_error_integral_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="powerErrorIntegralMax", description="Maximum value of the PowerErrorIntegral for this interval (staff only)")
151
- 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")
152
- 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")
153
- t_room_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomAverage", description="Average temperature of the room for this interval")
154
- t_room_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomMin", description="Minimum temperature of the room for this interval")
155
- t_room_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomMax", description="Maximum temperature of the room for this interval")
156
- t_room_target_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomTargetAverage", description="Average target room temperature of the thermostat for this interval")
157
- t_room_target_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomTargetMin", description="Minimum target room temperature of the thermostat for this interval")
158
- t_room_target_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="tRoomTargetMax", description="Maximum target room temperature of the thermostat for this interval")
159
- 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")
160
- 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")
161
- 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")
162
- ot_boiler_feed_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerFeedTemperatureAverage", description="Average OpenTherm boiler water feed temperature for this interval")
163
- ot_boiler_feed_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerFeedTemperatureMin", description="Minimum OpenTherm boiler water feed temperature for this interval")
164
- ot_boiler_feed_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerFeedTemperatureMax", description="Maximum OpenTherm boiler water feed temperature for this interval")
165
- ot_boiler_return_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerReturnTemperatureAverage", description="Average OpenTherm boiler water return temperature for this interval")
166
- ot_boiler_return_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerReturnTemperatureMin", description="Minimum OpenTherm boiler water return temperature for this interval")
167
- ot_boiler_return_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="otBoilerReturnTemperatureMax", description="Maximum OpenTherm boiler water return temperature for this interval")
168
- __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"]
169
-
170
- class Config:
171
- """Pydantic configuration"""
172
- allow_population_by_field_name = True
173
- 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_defrost: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the defrost required active state for this interval", alias="heatPumpStateDefrost")
39
+ 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")
40
+ 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")
41
+ 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")
42
+ rpm_control_startup: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in one of the RPM Control Startup states for this interval", alias="rpmControlStartup")
43
+ rpm_control_running: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in one of the RPM Control Running state for this interval", alias="rpmControlRunning")
44
+ rpm_control_running_abnormally: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the RPM Control Running Abnormally states for this interval", alias="rpmControlRunningAbnormally")
45
+ rpm_control_shutdown: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in one of the RPM Control Shutdown states for this interval", alias="rpmControlShutdown")
46
+ 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")
47
+ 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")
48
+ 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")
49
+ 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")
50
+ 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")
51
+ 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")
52
+ 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")
53
+ 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")
54
+ 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")
55
+ 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")
56
+ 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")
57
+ 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")
58
+ 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")
59
+ 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")
60
+ 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")
61
+ 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")
62
+ 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")
63
+ 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")
64
+ 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")
65
+ 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")
66
+ 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")
67
+ 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")
68
+ 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")
69
+ t_spare_ntc_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the spare DHW sensor (TSpareNTC) of the heat pump for this interval (staff only)", alias="tSpareNtcAverage")
70
+ t_spare_ntc_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the spare DHW sensor (TSpareNTC) of the heat pump for this interval (staff only)", alias="tSpareNtcMin")
71
+ t_spare_ntc_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the spare DHW sensor (TSpareNTC) of the heat pump for this interval (staff only)", alias="tSpareNtcMax")
72
+ 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")
73
+ 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")
74
+ 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")
75
+ 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")
76
+ t_air_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="tAirInMin")
77
+ t_air_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="tAirInMax")
78
+ 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")
79
+ 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")
80
+ 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")
81
+ 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")
82
+ 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")
83
+ 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")
84
+ 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")
85
+ 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")
86
+ 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")
87
+ 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")
88
+ 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")
89
+ 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")
90
+ rpm_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average RPM of the compressor for this interval (not for consumers)", alias="rpmAverage")
91
+ rpm_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum RPM of the compressor for this interval (not for consumers)", alias="rpmMin")
92
+ rpm_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum RPM of the compressor for this interval (not for consumers)", alias="rpmMax")
93
+ 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")
94
+ 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")
95
+ 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")
96
+ 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")
97
+ 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")
98
+ 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")
99
+ 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")
100
+ 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")
101
+ 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")
102
+ 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")
103
+ 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")
104
+ 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")
105
+ 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")
106
+ 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")
107
+ 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")
108
+ 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")
109
+ 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")
110
+ 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")
111
+ 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")
112
+ 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")
113
+ 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")
114
+ t_inverter_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the inverter for this interval (staff only)", alias="tInverterAverage")
115
+ t_inverter_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the inverter for this interval (staff only)", alias="tInverterMin")
116
+ t_inverter_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the inverter for this interval (staff only)", alias="tInverterMax")
117
+ 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")
118
+ 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")
119
+ 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")
120
+ 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")
121
+ 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")
122
+ 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")
123
+ 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")
124
+ 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")
125
+ 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")
126
+ 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")
127
+ 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")
128
+ 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")
129
+ 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")
130
+ 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")
131
+ 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")
132
+ 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")
133
+ 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")
134
+ 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")
135
+ fan_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average percentage of the fan used for this interval (staff only)", alias="fanAverage")
136
+ fan_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum percentage of the fan used for this interval (staff only)", alias="fanMin")
137
+ fan_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum percentage of the fan used for this interval (staff only)", alias="fanMax")
138
+ fan_power_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power used by the fan for this interval (staff only)", alias="fanPowerAverage")
139
+ fan_power_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power used by the fan for this interval (staff only)", alias="fanPowerMin")
140
+ fan_power_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power used by the fan for this interval (staff only)", alias="fanPowerMax")
141
+ cm_mass_power_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average of the total amount of energy produced by the heat pump for this interval (staff only)", alias="cmMassPowerInAverage")
142
+ cm_mass_power_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average of the total amount of energy produced by the heat pump for this interval (staff only)", alias="cmMassPowerOutAverage")
143
+ temperature_error_integral_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralAverage")
144
+ temperature_error_integral_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralMin")
145
+ temperature_error_integral_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralMax")
146
+ 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")
147
+ 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")
148
+ t_room_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the room for this interval", alias="tRoomAverage")
149
+ t_room_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the room for this interval", alias="tRoomMin")
150
+ t_room_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the room for this interval", alias="tRoomMax")
151
+ t_room_target_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average target room temperature of the thermostat for this interval", alias="tRoomTargetAverage")
152
+ t_room_target_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum target room temperature of the thermostat for this interval", alias="tRoomTargetMin")
153
+ t_room_target_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum target room temperature of the thermostat for this interval", alias="tRoomTargetMax")
154
+ 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")
155
+ 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")
156
+ 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")
157
+ ot_boiler_feed_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureAverage")
158
+ ot_boiler_feed_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureMin")
159
+ ot_boiler_feed_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureMax")
160
+ ot_boiler_return_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureAverage")
161
+ ot_boiler_return_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureMin")
162
+ ot_boiler_return_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureMax")
163
+ __properties: ClassVar[List[str]] = ["timeBucket", "interval", "timeCoveredInInterval", "heatPumpStateStandby", "heatPumpStateHeating", "heatPumpStateDefrost", "heatPumpStateCooling", "heatPumpStateDHW", "heatPumpStateLegionella", "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", "temperatureErrorIntegralAverage", "temperatureErrorIntegralMin", "temperatureErrorIntegralMax", "thermostatStateOff", "thermostatStateOn", "tRoomAverage", "tRoomMin", "tRoomMax", "tRoomTargetAverage", "tRoomTargetMin", "tRoomTargetMax", "tThermostatSetpointAverage", "tThermostatSetpointMin", "tThermostatSetpointMax", "otBoilerFeedTemperatureAverage", "otBoilerFeedTemperatureMin", "otBoilerFeedTemperatureMax", "otBoilerReturnTemperatureAverage", "otBoilerReturnTemperatureMin", "otBoilerReturnTemperatureMax"]
164
+
165
+ model_config = {
166
+ "populate_by_name": True,
167
+ "validate_assignment": True,
168
+ "protected_namespaces": (),
169
+ }
170
+
174
171
 
175
172
  def to_str(self) -> str:
176
173
  """Returns the string representation of the model using alias"""
177
- return pprint.pformat(self.dict(by_alias=True))
174
+ return pprint.pformat(self.model_dump(by_alias=True))
178
175
 
179
176
  def to_json(self) -> str:
180
177
  """Returns the JSON representation of the model using alias"""
178
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
181
179
  return json.dumps(self.to_dict())
182
180
 
183
181
  @classmethod
184
- def from_json(cls, json_str: str) -> HeatPumpLogViewDto:
182
+ def from_json(cls, json_str: str) -> Self:
185
183
  """Create an instance of HeatPumpLogViewDto from a JSON string"""
186
184
  return cls.from_dict(json.loads(json_str))
187
185
 
188
- def to_dict(self):
189
- """Returns the dictionary representation of the model using alias"""
190
- _dict = self.dict(by_alias=True,
191
- exclude={
192
- },
193
- exclude_none=True)
186
+ def to_dict(self) -> Dict[str, Any]:
187
+ """Return the dictionary representation of the model using alias.
188
+
189
+ This has the following differences from calling pydantic's
190
+ `self.model_dump(by_alias=True)`:
191
+
192
+ * `None` is only added to the output dict for nullable fields that
193
+ were set at model initialization. Other fields with value `None`
194
+ are ignored.
195
+ """
196
+ _dict = self.model_dump(
197
+ by_alias=True,
198
+ exclude={
199
+ },
200
+ exclude_none=True,
201
+ )
194
202
  # set to None if interval (nullable) is None
195
- # and __fields_set__ contains the field
196
- if self.interval is None and "interval" in self.__fields_set__:
203
+ # and model_fields_set contains the field
204
+ if self.interval is None and "interval" in self.model_fields_set:
197
205
  _dict['interval'] = None
198
206
 
207
+ # set to None if rpm_control_startup (nullable) is None
208
+ # and model_fields_set contains the field
209
+ if self.rpm_control_startup is None and "rpm_control_startup" in self.model_fields_set:
210
+ _dict['rpmControlStartup'] = None
211
+
212
+ # set to None if rpm_control_running (nullable) is None
213
+ # and model_fields_set contains the field
214
+ if self.rpm_control_running is None and "rpm_control_running" in self.model_fields_set:
215
+ _dict['rpmControlRunning'] = None
216
+
217
+ # set to None if rpm_control_shutdown (nullable) is None
218
+ # and model_fields_set contains the field
219
+ if self.rpm_control_shutdown is None and "rpm_control_shutdown" in self.model_fields_set:
220
+ _dict['rpmControlShutdown'] = None
221
+
199
222
  # set to None if control_bridge_status_dhw_valve (nullable) is None
200
- # and __fields_set__ contains the field
201
- if self.control_bridge_status_dhw_valve is None and "control_bridge_status_dhw_valve" in self.__fields_set__:
223
+ # and model_fields_set contains the field
224
+ if self.control_bridge_status_dhw_valve is None and "control_bridge_status_dhw_valve" in self.model_fields_set:
202
225
  _dict['controlBridgeStatusDhwValve'] = None
203
226
 
204
227
  # set to None if dtc_none (nullable) is None
205
- # and __fields_set__ contains the field
206
- if self.dtc_none is None and "dtc_none" in self.__fields_set__:
228
+ # and model_fields_set contains the field
229
+ if self.dtc_none is None and "dtc_none" in self.model_fields_set:
207
230
  _dict['dtcNone'] = None
208
231
 
209
232
  # set to None if dtc_continue (nullable) is None
210
- # and __fields_set__ contains the field
211
- if self.dtc_continue is None and "dtc_continue" in self.__fields_set__:
233
+ # and model_fields_set contains the field
234
+ if self.dtc_continue is None and "dtc_continue" in self.model_fields_set:
212
235
  _dict['dtcContinue'] = None
213
236
 
214
237
  # set to None if dtc_compressor_off (nullable) is None
215
- # and __fields_set__ contains the field
216
- if self.dtc_compressor_off is None and "dtc_compressor_off" in self.__fields_set__:
238
+ # and model_fields_set contains the field
239
+ if self.dtc_compressor_off is None and "dtc_compressor_off" in self.model_fields_set:
217
240
  _dict['dtcCompressorOff'] = None
218
241
 
219
242
  # set to None if dtc_defrost_forbidden (nullable) is None
220
- # and __fields_set__ contains the field
221
- if self.dtc_defrost_forbidden is None and "dtc_defrost_forbidden" in self.__fields_set__:
243
+ # and model_fields_set contains the field
244
+ if self.dtc_defrost_forbidden is None and "dtc_defrost_forbidden" in self.model_fields_set:
222
245
  _dict['dtcDefrostForbidden'] = None
223
246
 
224
247
  # set to None if dtc_request_service (nullable) is None
225
- # and __fields_set__ contains the field
226
- if self.dtc_request_service is None and "dtc_request_service" in self.__fields_set__:
248
+ # and model_fields_set contains the field
249
+ if self.dtc_request_service is None and "dtc_request_service" in self.model_fields_set:
227
250
  _dict['dtcRequestService'] = None
228
251
 
229
252
  # set to None if dtc_use_heating_curve (nullable) is None
230
- # and __fields_set__ contains the field
231
- if self.dtc_use_heating_curve is None and "dtc_use_heating_curve" in self.__fields_set__:
253
+ # and model_fields_set contains the field
254
+ if self.dtc_use_heating_curve is None and "dtc_use_heating_curve" in self.model_fields_set:
232
255
  _dict['dtcUseHeatingCurve'] = None
233
256
 
234
257
  # set to None if dtc_dhw_forbidden (nullable) is None
235
- # and __fields_set__ contains the field
236
- if self.dtc_dhw_forbidden is None and "dtc_dhw_forbidden" in self.__fields_set__:
258
+ # and model_fields_set contains the field
259
+ if self.dtc_dhw_forbidden is None and "dtc_dhw_forbidden" in self.model_fields_set:
237
260
  _dict['dtcDhwForbidden'] = None
238
261
 
239
262
  # set to None if dtc_error (nullable) is None
240
- # and __fields_set__ contains the field
241
- if self.dtc_error is None and "dtc_error" in self.__fields_set__:
263
+ # and model_fields_set contains the field
264
+ if self.dtc_error is None and "dtc_error" in self.model_fields_set:
242
265
  _dict['dtcError'] = None
243
266
 
244
267
  # set to None if dtc_inactive (nullable) is None
245
- # and __fields_set__ contains the field
246
- if self.dtc_inactive is None and "dtc_inactive" in self.__fields_set__:
268
+ # and model_fields_set contains the field
269
+ if self.dtc_inactive is None and "dtc_inactive" in self.model_fields_set:
247
270
  _dict['dtcInactive'] = None
248
271
 
249
272
  # set to None if signal_strength_average (nullable) is None
250
- # and __fields_set__ contains the field
251
- if self.signal_strength_average is None and "signal_strength_average" in self.__fields_set__:
273
+ # and model_fields_set contains the field
274
+ if self.signal_strength_average is None and "signal_strength_average" in self.model_fields_set:
252
275
  _dict['signalStrengthAverage'] = None
253
276
 
254
277
  # set to None if signal_strength_min (nullable) is None
255
- # and __fields_set__ contains the field
256
- if self.signal_strength_min is None and "signal_strength_min" in self.__fields_set__:
278
+ # and model_fields_set contains the field
279
+ if self.signal_strength_min is None and "signal_strength_min" in self.model_fields_set:
257
280
  _dict['signalStrengthMin'] = None
258
281
 
259
282
  # set to None if signal_strength_max (nullable) is None
260
- # and __fields_set__ contains the field
261
- if self.signal_strength_max is None and "signal_strength_max" in self.__fields_set__:
283
+ # and model_fields_set contains the field
284
+ if self.signal_strength_max is None and "signal_strength_max" in self.model_fields_set:
262
285
  _dict['signalStrengthMax'] = None
263
286
 
264
287
  # set to None if t1_average (nullable) is None
265
- # and __fields_set__ contains the field
266
- if self.t1_average is None and "t1_average" in self.__fields_set__:
288
+ # and model_fields_set contains the field
289
+ if self.t1_average is None and "t1_average" in self.model_fields_set:
267
290
  _dict['t1Average'] = None
268
291
 
269
292
  # set to None if t1_min (nullable) is None
270
- # and __fields_set__ contains the field
271
- if self.t1_min is None and "t1_min" in self.__fields_set__:
293
+ # and model_fields_set contains the field
294
+ if self.t1_min is None and "t1_min" in self.model_fields_set:
272
295
  _dict['t1Min'] = None
273
296
 
274
297
  # set to None if t1_max (nullable) is None
275
- # and __fields_set__ contains the field
276
- if self.t1_max is None and "t1_max" in self.__fields_set__:
298
+ # and model_fields_set contains the field
299
+ if self.t1_max is None and "t1_max" in self.model_fields_set:
277
300
  _dict['t1Max'] = None
278
301
 
279
302
  # set to None if t2_average (nullable) is None
280
- # and __fields_set__ contains the field
281
- if self.t2_average is None and "t2_average" in self.__fields_set__:
303
+ # and model_fields_set contains the field
304
+ if self.t2_average is None and "t2_average" in self.model_fields_set:
282
305
  _dict['t2Average'] = None
283
306
 
284
307
  # set to None if t2_min (nullable) is None
285
- # and __fields_set__ contains the field
286
- if self.t2_min is None and "t2_min" in self.__fields_set__:
308
+ # and model_fields_set contains the field
309
+ if self.t2_min is None and "t2_min" in self.model_fields_set:
287
310
  _dict['t2Min'] = None
288
311
 
289
312
  # set to None if t2_max (nullable) is None
290
- # and __fields_set__ contains the field
291
- if self.t2_max is None and "t2_max" in self.__fields_set__:
313
+ # and model_fields_set contains the field
314
+ if self.t2_max is None and "t2_max" in self.model_fields_set:
292
315
  _dict['t2Max'] = None
293
316
 
294
317
  # set to None if t_spare_ntc_average (nullable) is None
295
- # and __fields_set__ contains the field
296
- if self.t_spare_ntc_average is None and "t_spare_ntc_average" in self.__fields_set__:
318
+ # and model_fields_set contains the field
319
+ if self.t_spare_ntc_average is None and "t_spare_ntc_average" in self.model_fields_set:
297
320
  _dict['tSpareNtcAverage'] = None
298
321
 
299
322
  # set to None if t_spare_ntc_min (nullable) is None
300
- # and __fields_set__ contains the field
301
- if self.t_spare_ntc_min is None and "t_spare_ntc_min" in self.__fields_set__:
323
+ # and model_fields_set contains the field
324
+ if self.t_spare_ntc_min is None and "t_spare_ntc_min" in self.model_fields_set:
302
325
  _dict['tSpareNtcMin'] = None
303
326
 
304
327
  # set to None if t_spare_ntc_max (nullable) is None
305
- # and __fields_set__ contains the field
306
- if self.t_spare_ntc_max is None and "t_spare_ntc_max" in self.__fields_set__:
328
+ # and model_fields_set contains the field
329
+ if self.t_spare_ntc_max is None and "t_spare_ntc_max" in self.model_fields_set:
307
330
  _dict['tSpareNtcMax'] = None
308
331
 
309
332
  # set to None if t_board_average (nullable) is None
310
- # and __fields_set__ contains the field
311
- if self.t_board_average is None and "t_board_average" in self.__fields_set__:
333
+ # and model_fields_set contains the field
334
+ if self.t_board_average is None and "t_board_average" in self.model_fields_set:
312
335
  _dict['tBoardAverage'] = None
313
336
 
314
337
  # set to None if t_board_min (nullable) is None
315
- # and __fields_set__ contains the field
316
- if self.t_board_min is None and "t_board_min" in self.__fields_set__:
338
+ # and model_fields_set contains the field
339
+ if self.t_board_min is None and "t_board_min" in self.model_fields_set:
317
340
  _dict['tBoardMin'] = None
318
341
 
319
342
  # set to None if t_board_max (nullable) is None
320
- # and __fields_set__ contains the field
321
- if self.t_board_max is None and "t_board_max" in self.__fields_set__:
343
+ # and model_fields_set contains the field
344
+ if self.t_board_max is None and "t_board_max" in self.model_fields_set:
322
345
  _dict['tBoardMax'] = None
323
346
 
347
+ # set to None if t_air_out_average (nullable) is None
348
+ # and model_fields_set contains the field
349
+ if self.t_air_out_average is None and "t_air_out_average" in self.model_fields_set:
350
+ _dict['tAirOutAverage'] = None
351
+
352
+ # set to None if t_air_out_min (nullable) is None
353
+ # and model_fields_set contains the field
354
+ if self.t_air_out_min is None and "t_air_out_min" in self.model_fields_set:
355
+ _dict['tAirOutMin'] = None
356
+
357
+ # set to None if t_air_out_max (nullable) is None
358
+ # and model_fields_set contains the field
359
+ if self.t_air_out_max is None and "t_air_out_max" in self.model_fields_set:
360
+ _dict['tAirOutMax'] = None
361
+
324
362
  # set to None if rpm_average (nullable) is None
325
- # and __fields_set__ contains the field
326
- if self.rpm_average is None and "rpm_average" in self.__fields_set__:
363
+ # and model_fields_set contains the field
364
+ if self.rpm_average is None and "rpm_average" in self.model_fields_set:
327
365
  _dict['rpmAverage'] = None
328
366
 
329
367
  # set to None if rpm_min (nullable) is None
330
- # and __fields_set__ contains the field
331
- if self.rpm_min is None and "rpm_min" in self.__fields_set__:
368
+ # and model_fields_set contains the field
369
+ if self.rpm_min is None and "rpm_min" in self.model_fields_set:
332
370
  _dict['rpmMin'] = None
333
371
 
334
372
  # set to None if rpm_max (nullable) is None
335
- # and __fields_set__ contains the field
336
- if self.rpm_max is None and "rpm_max" in self.__fields_set__:
373
+ # and model_fields_set contains the field
374
+ if self.rpm_max is None and "rpm_max" in self.model_fields_set:
337
375
  _dict['rpmMax'] = None
338
376
 
339
377
  # set to None if rpm_limiter_average (nullable) is None
340
- # and __fields_set__ contains the field
341
- if self.rpm_limiter_average is None and "rpm_limiter_average" in self.__fields_set__:
378
+ # and model_fields_set contains the field
379
+ if self.rpm_limiter_average is None and "rpm_limiter_average" in self.model_fields_set:
342
380
  _dict['rpmLimiterAverage'] = None
343
381
 
344
382
  # set to None if rpm_limiter_min (nullable) is None
345
- # and __fields_set__ contains the field
346
- if self.rpm_limiter_min is None and "rpm_limiter_min" in self.__fields_set__:
383
+ # and model_fields_set contains the field
384
+ if self.rpm_limiter_min is None and "rpm_limiter_min" in self.model_fields_set:
347
385
  _dict['rpmLimiterMin'] = None
348
386
 
349
387
  # set to None if rpm_limiter_max (nullable) is None
350
- # and __fields_set__ contains the field
351
- if self.rpm_limiter_max is None and "rpm_limiter_max" in self.__fields_set__:
388
+ # and model_fields_set contains the field
389
+ if self.rpm_limiter_max is None and "rpm_limiter_max" in self.model_fields_set:
352
390
  _dict['rpmLimiterMax'] = None
353
391
 
354
392
  # set to None if rpm_limiter_no_limit (nullable) is None
355
- # and __fields_set__ contains the field
356
- if self.rpm_limiter_no_limit is None and "rpm_limiter_no_limit" in self.__fields_set__:
393
+ # and model_fields_set contains the field
394
+ if self.rpm_limiter_no_limit is None and "rpm_limiter_no_limit" in self.model_fields_set:
357
395
  _dict['rpmLimiterNoLimit'] = None
358
396
 
359
397
  # set to None if rpm_limiter_power_limit (nullable) is None
360
- # and __fields_set__ contains the field
361
- if self.rpm_limiter_power_limit is None and "rpm_limiter_power_limit" in self.__fields_set__:
398
+ # and model_fields_set contains the field
399
+ if self.rpm_limiter_power_limit is None and "rpm_limiter_power_limit" in self.model_fields_set:
362
400
  _dict['rpmLimiterPowerLimit'] = None
363
401
 
364
402
  # set to None if rpm_limiter_defrost (nullable) is None
365
- # and __fields_set__ contains the field
366
- if self.rpm_limiter_defrost is None and "rpm_limiter_defrost" in self.__fields_set__:
403
+ # and model_fields_set contains the field
404
+ if self.rpm_limiter_defrost is None and "rpm_limiter_defrost" in self.model_fields_set:
367
405
  _dict['rpmLimiterDefrost'] = None
368
406
 
369
407
  # set to None if rpm_limiter_silent_hours (nullable) is None
370
- # and __fields_set__ contains the field
371
- if self.rpm_limiter_silent_hours is None and "rpm_limiter_silent_hours" in self.__fields_set__:
408
+ # and model_fields_set contains the field
409
+ if self.rpm_limiter_silent_hours is None and "rpm_limiter_silent_hours" in self.model_fields_set:
372
410
  _dict['rpmLimiterSilentHours'] = None
373
411
 
374
412
  # set to None if rpm_limiter_hp_control (nullable) is None
375
- # and __fields_set__ contains the field
376
- if self.rpm_limiter_hp_control is None and "rpm_limiter_hp_control" in self.__fields_set__:
413
+ # and model_fields_set contains the field
414
+ if self.rpm_limiter_hp_control is None and "rpm_limiter_hp_control" in self.model_fields_set:
377
415
  _dict['rpmLimiterHPControl'] = None
378
416
 
379
417
  # set to None if rpm_limiter_pressure (nullable) is None
380
- # and __fields_set__ contains the field
381
- if self.rpm_limiter_pressure is None and "rpm_limiter_pressure" in self.__fields_set__:
418
+ # and model_fields_set contains the field
419
+ if self.rpm_limiter_pressure is None and "rpm_limiter_pressure" in self.model_fields_set:
382
420
  _dict['rpmLimiterPressure'] = None
383
421
 
384
422
  # set to None if rpm_limiter_water_out (nullable) is None
385
- # and __fields_set__ contains the field
386
- if self.rpm_limiter_water_out is None and "rpm_limiter_water_out" in self.__fields_set__:
423
+ # and model_fields_set contains the field
424
+ if self.rpm_limiter_water_out is None and "rpm_limiter_water_out" in self.model_fields_set:
387
425
  _dict['rpmLimiterWaterOut'] = None
388
426
 
389
427
  # set to None if rpm_limiter_envelope (nullable) is None
390
- # and __fields_set__ contains the field
391
- if self.rpm_limiter_envelope is None and "rpm_limiter_envelope" in self.__fields_set__:
428
+ # and model_fields_set contains the field
429
+ if self.rpm_limiter_envelope is None and "rpm_limiter_envelope" in self.model_fields_set:
392
430
  _dict['rpmLimiterEnvelope'] = None
393
431
 
394
432
  # set to None if rpm_limiter_house_in (nullable) is None
395
- # and __fields_set__ contains the field
396
- if self.rpm_limiter_house_in is None and "rpm_limiter_house_in" in self.__fields_set__:
433
+ # and model_fields_set contains the field
434
+ if self.rpm_limiter_house_in is None and "rpm_limiter_house_in" in self.model_fields_set:
397
435
  _dict['rpmLimiterHouseIn'] = None
398
436
 
399
437
  # set to None if p_compressor_in_average (nullable) is None
400
- # and __fields_set__ contains the field
401
- if self.p_compressor_in_average is None and "p_compressor_in_average" in self.__fields_set__:
438
+ # and model_fields_set contains the field
439
+ if self.p_compressor_in_average is None and "p_compressor_in_average" in self.model_fields_set:
402
440
  _dict['pCompressorInAverage'] = None
403
441
 
404
442
  # set to None if p_compressor_in_min (nullable) is None
405
- # and __fields_set__ contains the field
406
- if self.p_compressor_in_min is None and "p_compressor_in_min" in self.__fields_set__:
443
+ # and model_fields_set contains the field
444
+ if self.p_compressor_in_min is None and "p_compressor_in_min" in self.model_fields_set:
407
445
  _dict['pCompressorInMin'] = None
408
446
 
409
447
  # set to None if p_compressor_in_max (nullable) is None
410
- # and __fields_set__ contains the field
411
- if self.p_compressor_in_max is None and "p_compressor_in_max" in self.__fields_set__:
448
+ # and model_fields_set contains the field
449
+ if self.p_compressor_in_max is None and "p_compressor_in_max" in self.model_fields_set:
412
450
  _dict['pCompressorInMax'] = None
413
451
 
414
452
  # set to None if p_compressor_out_average (nullable) is None
415
- # and __fields_set__ contains the field
416
- if self.p_compressor_out_average is None and "p_compressor_out_average" in self.__fields_set__:
453
+ # and model_fields_set contains the field
454
+ if self.p_compressor_out_average is None and "p_compressor_out_average" in self.model_fields_set:
417
455
  _dict['pCompressorOutAverage'] = None
418
456
 
419
457
  # set to None if p_compressor_out_min (nullable) is None
420
- # and __fields_set__ contains the field
421
- if self.p_compressor_out_min is None and "p_compressor_out_min" in self.__fields_set__:
458
+ # and model_fields_set contains the field
459
+ if self.p_compressor_out_min is None and "p_compressor_out_min" in self.model_fields_set:
422
460
  _dict['pCompressorOutMin'] = None
423
461
 
424
462
  # set to None if p_compressor_out_max (nullable) is None
425
- # and __fields_set__ contains the field
426
- if self.p_compressor_out_max is None and "p_compressor_out_max" in self.__fields_set__:
463
+ # and model_fields_set contains the field
464
+ if self.p_compressor_out_max is None and "p_compressor_out_max" in self.model_fields_set:
427
465
  _dict['pCompressorOutMax'] = None
428
466
 
429
467
  # set to None if p_compressor_in_target_average (nullable) is None
430
- # and __fields_set__ contains the field
431
- if self.p_compressor_in_target_average is None and "p_compressor_in_target_average" in self.__fields_set__:
468
+ # and model_fields_set contains the field
469
+ if self.p_compressor_in_target_average is None and "p_compressor_in_target_average" in self.model_fields_set:
432
470
  _dict['pCompressorInTargetAverage'] = None
433
471
 
434
472
  # set to None if p_compressor_in_target_min (nullable) is None
435
- # and __fields_set__ contains the field
436
- if self.p_compressor_in_target_min is None and "p_compressor_in_target_min" in self.__fields_set__:
473
+ # and model_fields_set contains the field
474
+ if self.p_compressor_in_target_min is None and "p_compressor_in_target_min" in self.model_fields_set:
437
475
  _dict['pCompressorInTargetMin'] = None
438
476
 
439
477
  # set to None if p_compressor_in_target_max (nullable) is None
440
- # and __fields_set__ contains the field
441
- if self.p_compressor_in_target_max is None and "p_compressor_in_target_max" in self.__fields_set__:
478
+ # and model_fields_set contains the field
479
+ if self.p_compressor_in_target_max is None and "p_compressor_in_target_max" in self.model_fields_set:
442
480
  _dict['pCompressorInTargetMax'] = None
443
481
 
444
482
  # set to None if t_inverter_average (nullable) is None
445
- # and __fields_set__ contains the field
446
- if self.t_inverter_average is None and "t_inverter_average" in self.__fields_set__:
483
+ # and model_fields_set contains the field
484
+ if self.t_inverter_average is None and "t_inverter_average" in self.model_fields_set:
447
485
  _dict['tInverterAverage'] = None
448
486
 
449
487
  # set to None if t_inverter_min (nullable) is None
450
- # and __fields_set__ contains the field
451
- if self.t_inverter_min is None and "t_inverter_min" in self.__fields_set__:
488
+ # and model_fields_set contains the field
489
+ if self.t_inverter_min is None and "t_inverter_min" in self.model_fields_set:
452
490
  _dict['tInverterMin'] = None
453
491
 
454
492
  # set to None if t_inverter_max (nullable) is None
455
- # and __fields_set__ contains the field
456
- if self.t_inverter_max is None and "t_inverter_max" in self.__fields_set__:
493
+ # and model_fields_set contains the field
494
+ if self.t_inverter_max is None and "t_inverter_max" in self.model_fields_set:
457
495
  _dict['tInverterMax'] = None
458
496
 
459
497
  # set to None if t_compressor_in_average (nullable) is None
460
- # and __fields_set__ contains the field
461
- if self.t_compressor_in_average is None and "t_compressor_in_average" in self.__fields_set__:
498
+ # and model_fields_set contains the field
499
+ if self.t_compressor_in_average is None and "t_compressor_in_average" in self.model_fields_set:
462
500
  _dict['tCompressorInAverage'] = None
463
501
 
464
502
  # set to None if t_compressor_in_min (nullable) is None
465
- # and __fields_set__ contains the field
466
- if self.t_compressor_in_min is None and "t_compressor_in_min" in self.__fields_set__:
503
+ # and model_fields_set contains the field
504
+ if self.t_compressor_in_min is None and "t_compressor_in_min" in self.model_fields_set:
467
505
  _dict['tCompressorInMin'] = None
468
506
 
469
507
  # set to None if t_compressor_in_max (nullable) is None
470
- # and __fields_set__ contains the field
471
- if self.t_compressor_in_max is None and "t_compressor_in_max" in self.__fields_set__:
508
+ # and model_fields_set contains the field
509
+ if self.t_compressor_in_max is None and "t_compressor_in_max" in self.model_fields_set:
472
510
  _dict['tCompressorInMax'] = None
473
511
 
474
512
  # set to None if t_compressor_out_average (nullable) is None
475
- # and __fields_set__ contains the field
476
- if self.t_compressor_out_average is None and "t_compressor_out_average" in self.__fields_set__:
513
+ # and model_fields_set contains the field
514
+ if self.t_compressor_out_average is None and "t_compressor_out_average" in self.model_fields_set:
477
515
  _dict['tCompressorOutAverage'] = None
478
516
 
479
517
  # set to None if t_compressor_out_min (nullable) is None
480
- # and __fields_set__ contains the field
481
- if self.t_compressor_out_min is None and "t_compressor_out_min" in self.__fields_set__:
518
+ # and model_fields_set contains the field
519
+ if self.t_compressor_out_min is None and "t_compressor_out_min" in self.model_fields_set:
482
520
  _dict['tCompressorOutMin'] = None
483
521
 
484
522
  # set to None if t_compressor_out_max (nullable) is None
485
- # and __fields_set__ contains the field
486
- if self.t_compressor_out_max is None and "t_compressor_out_max" in self.__fields_set__:
523
+ # and model_fields_set contains the field
524
+ if self.t_compressor_out_max is None and "t_compressor_out_max" in self.model_fields_set:
487
525
  _dict['tCompressorOutMax'] = None
488
526
 
489
527
  # set to None if t_compressor_in_transient_average (nullable) is None
490
- # and __fields_set__ contains the field
491
- if self.t_compressor_in_transient_average is None and "t_compressor_in_transient_average" in self.__fields_set__:
528
+ # and model_fields_set contains the field
529
+ if self.t_compressor_in_transient_average is None and "t_compressor_in_transient_average" in self.model_fields_set:
492
530
  _dict['tCompressorInTransientAverage'] = None
493
531
 
494
532
  # set to None if t_compressor_in_transient_min (nullable) is None
495
- # and __fields_set__ contains the field
496
- if self.t_compressor_in_transient_min is None and "t_compressor_in_transient_min" in self.__fields_set__:
533
+ # and model_fields_set contains the field
534
+ if self.t_compressor_in_transient_min is None and "t_compressor_in_transient_min" in self.model_fields_set:
497
535
  _dict['tCompressorInTransientMin'] = None
498
536
 
499
537
  # set to None if t_compressor_in_transient_max (nullable) is None
500
- # and __fields_set__ contains the field
501
- if self.t_compressor_in_transient_max is None and "t_compressor_in_transient_max" in self.__fields_set__:
538
+ # and model_fields_set contains the field
539
+ if self.t_compressor_in_transient_max is None and "t_compressor_in_transient_max" in self.model_fields_set:
502
540
  _dict['tCompressorInTransientMax'] = None
503
541
 
504
542
  # set to None if t_compressor_out_transient_average (nullable) is None
505
- # and __fields_set__ contains the field
506
- if self.t_compressor_out_transient_average is None and "t_compressor_out_transient_average" in self.__fields_set__:
543
+ # and model_fields_set contains the field
544
+ if self.t_compressor_out_transient_average is None and "t_compressor_out_transient_average" in self.model_fields_set:
507
545
  _dict['tCompressorOutTransientAverage'] = None
508
546
 
509
547
  # set to None if t_compressor_out_transient_min (nullable) is None
510
- # and __fields_set__ contains the field
511
- if self.t_compressor_out_transient_min is None and "t_compressor_out_transient_min" in self.__fields_set__:
548
+ # and model_fields_set contains the field
549
+ if self.t_compressor_out_transient_min is None and "t_compressor_out_transient_min" in self.model_fields_set:
512
550
  _dict['tCompressorOutTransientMin'] = None
513
551
 
514
552
  # set to None if t_compressor_out_transient_max (nullable) is None
515
- # and __fields_set__ contains the field
516
- if self.t_compressor_out_transient_max is None and "t_compressor_out_transient_max" in self.__fields_set__:
553
+ # and model_fields_set contains the field
554
+ if self.t_compressor_out_transient_max is None and "t_compressor_out_transient_max" in self.model_fields_set:
517
555
  _dict['tCompressorOutTransientMax'] = None
518
556
 
519
557
  # set to None if delta_t_compressor_in_superheat_average (nullable) is None
520
- # and __fields_set__ contains the field
521
- if self.delta_t_compressor_in_superheat_average is None and "delta_t_compressor_in_superheat_average" in self.__fields_set__:
558
+ # and model_fields_set contains the field
559
+ if self.delta_t_compressor_in_superheat_average is None and "delta_t_compressor_in_superheat_average" in self.model_fields_set:
522
560
  _dict['deltaTCompressorInSuperheatAverage'] = None
523
561
 
524
562
  # set to None if delta_t_compressor_in_superheat_min (nullable) is None
525
- # and __fields_set__ contains the field
526
- if self.delta_t_compressor_in_superheat_min is None and "delta_t_compressor_in_superheat_min" in self.__fields_set__:
563
+ # and model_fields_set contains the field
564
+ if self.delta_t_compressor_in_superheat_min is None and "delta_t_compressor_in_superheat_min" in self.model_fields_set:
527
565
  _dict['deltaTCompressorInSuperheatMin'] = None
528
566
 
529
567
  # set to None if delta_t_compressor_in_superheat_max (nullable) is None
530
- # and __fields_set__ contains the field
531
- if self.delta_t_compressor_in_superheat_max is None and "delta_t_compressor_in_superheat_max" in self.__fields_set__:
568
+ # and model_fields_set contains the field
569
+ if self.delta_t_compressor_in_superheat_max is None and "delta_t_compressor_in_superheat_max" in self.model_fields_set:
532
570
  _dict['deltaTCompressorInSuperheatMax'] = None
533
571
 
534
572
  # set to None if compressor_power_low_accuracy_average (nullable) is None
535
- # and __fields_set__ contains the field
536
- if self.compressor_power_low_accuracy_average is None and "compressor_power_low_accuracy_average" in self.__fields_set__:
573
+ # and model_fields_set contains the field
574
+ if self.compressor_power_low_accuracy_average is None and "compressor_power_low_accuracy_average" in self.model_fields_set:
537
575
  _dict['compressorPowerLowAccuracyAverage'] = None
538
576
 
539
577
  # set to None if compressor_power_low_accuracy_min (nullable) is None
540
- # and __fields_set__ contains the field
541
- if self.compressor_power_low_accuracy_min is None and "compressor_power_low_accuracy_min" in self.__fields_set__:
578
+ # and model_fields_set contains the field
579
+ if self.compressor_power_low_accuracy_min is None and "compressor_power_low_accuracy_min" in self.model_fields_set:
542
580
  _dict['compressorPowerLowAccuracyMin'] = None
543
581
 
544
582
  # set to None if compressor_power_low_accuracy_max (nullable) is None
545
- # and __fields_set__ contains the field
546
- if self.compressor_power_low_accuracy_max is None and "compressor_power_low_accuracy_max" in self.__fields_set__:
583
+ # and model_fields_set contains the field
584
+ if self.compressor_power_low_accuracy_max is None and "compressor_power_low_accuracy_max" in self.model_fields_set:
547
585
  _dict['compressorPowerLowAccuracyMax'] = None
548
586
 
549
587
  # set to None if fan_average (nullable) is None
550
- # and __fields_set__ contains the field
551
- if self.fan_average is None and "fan_average" in self.__fields_set__:
588
+ # and model_fields_set contains the field
589
+ if self.fan_average is None and "fan_average" in self.model_fields_set:
552
590
  _dict['fanAverage'] = None
553
591
 
554
592
  # set to None if fan_min (nullable) is None
555
- # and __fields_set__ contains the field
556
- if self.fan_min is None and "fan_min" in self.__fields_set__:
593
+ # and model_fields_set contains the field
594
+ if self.fan_min is None and "fan_min" in self.model_fields_set:
557
595
  _dict['fanMin'] = None
558
596
 
559
597
  # set to None if fan_max (nullable) is None
560
- # and __fields_set__ contains the field
561
- if self.fan_max is None and "fan_max" in self.__fields_set__:
598
+ # and model_fields_set contains the field
599
+ if self.fan_max is None and "fan_max" in self.model_fields_set:
562
600
  _dict['fanMax'] = None
563
601
 
564
602
  # set to None if fan_power_average (nullable) is None
565
- # and __fields_set__ contains the field
566
- if self.fan_power_average is None and "fan_power_average" in self.__fields_set__:
603
+ # and model_fields_set contains the field
604
+ if self.fan_power_average is None and "fan_power_average" in self.model_fields_set:
567
605
  _dict['fanPowerAverage'] = None
568
606
 
569
607
  # set to None if fan_power_min (nullable) is None
570
- # and __fields_set__ contains the field
571
- if self.fan_power_min is None and "fan_power_min" in self.__fields_set__:
608
+ # and model_fields_set contains the field
609
+ if self.fan_power_min is None and "fan_power_min" in self.model_fields_set:
572
610
  _dict['fanPowerMin'] = None
573
611
 
574
612
  # set to None if fan_power_max (nullable) is None
575
- # and __fields_set__ contains the field
576
- if self.fan_power_max is None and "fan_power_max" in self.__fields_set__:
613
+ # and model_fields_set contains the field
614
+ if self.fan_power_max is None and "fan_power_max" in self.model_fields_set:
577
615
  _dict['fanPowerMax'] = None
578
616
 
579
617
  # set to None if cm_mass_power_in_average (nullable) is None
580
- # and __fields_set__ contains the field
581
- if self.cm_mass_power_in_average is None and "cm_mass_power_in_average" in self.__fields_set__:
618
+ # and model_fields_set contains the field
619
+ if self.cm_mass_power_in_average is None and "cm_mass_power_in_average" in self.model_fields_set:
582
620
  _dict['cmMassPowerInAverage'] = None
583
621
 
584
622
  # set to None if cm_mass_power_out_average (nullable) is None
585
- # and __fields_set__ contains the field
586
- if self.cm_mass_power_out_average is None and "cm_mass_power_out_average" in self.__fields_set__:
623
+ # and model_fields_set contains the field
624
+ if self.cm_mass_power_out_average is None and "cm_mass_power_out_average" in self.model_fields_set:
587
625
  _dict['cmMassPowerOutAverage'] = None
588
626
 
589
- # set to None if p_requested_average (nullable) is None
590
- # and __fields_set__ contains the field
591
- if self.p_requested_average is None and "p_requested_average" in self.__fields_set__:
592
- _dict['pRequestedAverage'] = None
593
-
594
- # set to None if p_requested_min (nullable) is None
595
- # and __fields_set__ contains the field
596
- if self.p_requested_min is None and "p_requested_min" in self.__fields_set__:
597
- _dict['pRequestedMin'] = None
598
-
599
- # set to None if p_requested_max (nullable) is None
600
- # and __fields_set__ contains the field
601
- if self.p_requested_max is None and "p_requested_max" in self.__fields_set__:
602
- _dict['pRequestedMax'] = None
603
-
604
- # set to None if power_error_integral_average (nullable) is None
605
- # and __fields_set__ contains the field
606
- if self.power_error_integral_average is None and "power_error_integral_average" in self.__fields_set__:
607
- _dict['powerErrorIntegralAverage'] = None
608
-
609
- # set to None if power_error_integral_min (nullable) is None
610
- # and __fields_set__ contains the field
611
- if self.power_error_integral_min is None and "power_error_integral_min" in self.__fields_set__:
612
- _dict['powerErrorIntegralMin'] = None
613
-
614
- # set to None if power_error_integral_max (nullable) is None
615
- # and __fields_set__ contains the field
616
- if self.power_error_integral_max is None and "power_error_integral_max" in self.__fields_set__:
617
- _dict['powerErrorIntegralMax'] = None
627
+ # set to None if temperature_error_integral_average (nullable) is None
628
+ # and model_fields_set contains the field
629
+ if self.temperature_error_integral_average is None and "temperature_error_integral_average" in self.model_fields_set:
630
+ _dict['temperatureErrorIntegralAverage'] = None
631
+
632
+ # set to None if temperature_error_integral_min (nullable) is None
633
+ # and model_fields_set contains the field
634
+ if self.temperature_error_integral_min is None and "temperature_error_integral_min" in self.model_fields_set:
635
+ _dict['temperatureErrorIntegralMin'] = None
636
+
637
+ # set to None if temperature_error_integral_max (nullable) is None
638
+ # and model_fields_set contains the field
639
+ if self.temperature_error_integral_max is None and "temperature_error_integral_max" in self.model_fields_set:
640
+ _dict['temperatureErrorIntegralMax'] = None
641
+
642
+ # set to None if ot_boiler_feed_temperature_average (nullable) is None
643
+ # and model_fields_set contains the field
644
+ if self.ot_boiler_feed_temperature_average is None and "ot_boiler_feed_temperature_average" in self.model_fields_set:
645
+ _dict['otBoilerFeedTemperatureAverage'] = None
646
+
647
+ # set to None if ot_boiler_feed_temperature_min (nullable) is None
648
+ # and model_fields_set contains the field
649
+ if self.ot_boiler_feed_temperature_min is None and "ot_boiler_feed_temperature_min" in self.model_fields_set:
650
+ _dict['otBoilerFeedTemperatureMin'] = None
651
+
652
+ # set to None if ot_boiler_feed_temperature_max (nullable) is None
653
+ # and model_fields_set contains the field
654
+ if self.ot_boiler_feed_temperature_max is None and "ot_boiler_feed_temperature_max" in self.model_fields_set:
655
+ _dict['otBoilerFeedTemperatureMax'] = None
656
+
657
+ # set to None if ot_boiler_return_temperature_average (nullable) is None
658
+ # and model_fields_set contains the field
659
+ if self.ot_boiler_return_temperature_average is None and "ot_boiler_return_temperature_average" in self.model_fields_set:
660
+ _dict['otBoilerReturnTemperatureAverage'] = None
661
+
662
+ # set to None if ot_boiler_return_temperature_min (nullable) is None
663
+ # and model_fields_set contains the field
664
+ if self.ot_boiler_return_temperature_min is None and "ot_boiler_return_temperature_min" in self.model_fields_set:
665
+ _dict['otBoilerReturnTemperatureMin'] = None
666
+
667
+ # set to None if ot_boiler_return_temperature_max (nullable) is None
668
+ # and model_fields_set contains the field
669
+ if self.ot_boiler_return_temperature_max is None and "ot_boiler_return_temperature_max" in self.model_fields_set:
670
+ _dict['otBoilerReturnTemperatureMax'] = None
618
671
 
619
672
  return _dict
620
673
 
621
674
  @classmethod
622
- def from_dict(cls, obj: dict) -> HeatPumpLogViewDto:
675
+ def from_dict(cls, obj: Dict) -> Self:
623
676
  """Create an instance of HeatPumpLogViewDto from a dict"""
624
677
  if obj is None:
625
678
  return None
626
679
 
627
680
  if not isinstance(obj, dict):
628
- return HeatPumpLogViewDto.parse_obj(obj)
681
+ return cls.model_validate(obj)
629
682
 
630
- _obj = HeatPumpLogViewDto.parse_obj({
631
- "time_bucket": obj.get("timeBucket"),
683
+ _obj = cls.model_validate({
684
+ "timeBucket": obj.get("timeBucket"),
632
685
  "interval": obj.get("interval"),
633
- "time_covered_in_interval": obj.get("timeCoveredInInterval"),
634
- "heat_pump_state_standby": obj.get("heatPumpStateStandby"),
635
- "heat_pump_state_heating": obj.get("heatPumpStateHeating"),
636
- "heat_pump_state_defrost_req_active": obj.get("heatPumpStateDefrostReqActive"),
637
- "heat_pump_state_defrost_open_valve": obj.get("heatPumpStateDefrostOpenValve"),
638
- "heat_pump_state_defrost_close_valve": obj.get("heatPumpStateDefrostCloseValve"),
639
- "heat_pump_state_defrost_drip": obj.get("heatPumpStateDefrostDrip"),
640
- "heat_pump_state_defrost_cooling": obj.get("heatPumpStateDefrostCooling"),
641
- "heat_pump_state_cooling": obj.get("heatPumpStateCooling"),
642
- "heat_pump_state_dhw": obj.get("heatPumpStateDHW"),
643
- "heat_pump_state_legionnaires_disease_prevention": obj.get("heatPumpStateLegionnairesDiseasePrevention"),
644
- "rpm_control_startup": obj.get("rpmControlStartup"),
645
- "rpm_control_running": obj.get("rpmControlRunning"),
646
- "rpm_control_running_abnormally": obj.get("rpmControlRunningAbnormally"),
647
- "rpm_control_shutdown": obj.get("rpmControlShutdown"),
648
- "control_bridge_status_water_pump": obj.get("controlBridgeStatusWaterPump"),
649
- "control_bridge_status_dhw_valve": obj.get("controlBridgeStatusDhwValve"),
650
- "control_bridge_status_gas_boiler": obj.get("controlBridgeStatusGasBoiler"),
651
- "control_bridge_status_electric_heater": obj.get("controlBridgeStatusElectricHeater"),
652
- "control_bridge_status_water_pump2": obj.get("controlBridgeStatusWaterPump2"),
653
- "dtc_none": obj.get("dtcNone"),
654
- "dtc_continue": obj.get("dtcContinue"),
655
- "dtc_compressor_off": obj.get("dtcCompressorOff"),
656
- "dtc_defrost_forbidden": obj.get("dtcDefrostForbidden"),
657
- "dtc_request_service": obj.get("dtcRequestService"),
658
- "dtc_use_heating_curve": obj.get("dtcUseHeatingCurve"),
659
- "dtc_dhw_forbidden": obj.get("dtcDhwForbidden"),
660
- "dtc_error": obj.get("dtcError"),
661
- "dtc_inactive": obj.get("dtcInactive"),
662
- "signal_strength_average": obj.get("signalStrengthAverage"),
663
- "signal_strength_min": obj.get("signalStrengthMin"),
664
- "signal_strength_max": obj.get("signalStrengthMax"),
665
- "t1_average": obj.get("t1Average"),
666
- "t1_min": obj.get("t1Min"),
667
- "t1_max": obj.get("t1Max"),
668
- "t2_average": obj.get("t2Average"),
669
- "t2_min": obj.get("t2Min"),
670
- "t2_max": obj.get("t2Max"),
671
- "t_spare_ntc_average": obj.get("tSpareNtcAverage"),
672
- "t_spare_ntc_min": obj.get("tSpareNtcMin"),
673
- "t_spare_ntc_max": obj.get("tSpareNtcMax"),
674
- "t_board_average": obj.get("tBoardAverage"),
675
- "t_board_min": obj.get("tBoardMin"),
676
- "t_board_max": obj.get("tBoardMax"),
677
- "t_air_in_average": obj.get("tAirInAverage"),
678
- "t_air_in_min": obj.get("tAirInMin"),
679
- "t_air_in_max": obj.get("tAirInMax"),
680
- "t_air_out_average": obj.get("tAirOutAverage"),
681
- "t_air_out_min": obj.get("tAirOutMin"),
682
- "t_air_out_max": obj.get("tAirOutMax"),
683
- "t_water_in_average": obj.get("tWaterInAverage"),
684
- "t_water_in_min": obj.get("tWaterInMin"),
685
- "t_water_in_max": obj.get("tWaterInMax"),
686
- "t_water_out_average": obj.get("tWaterOutAverage"),
687
- "t_water_out_min": obj.get("tWaterOutMin"),
688
- "t_water_out_max": obj.get("tWaterOutMax"),
689
- "t_water_house_in_average": obj.get("tWaterHouseInAverage"),
690
- "t_water_house_in_min": obj.get("tWaterHouseInMin"),
691
- "t_water_house_in_max": obj.get("tWaterHouseInMax"),
692
- "rpm_average": obj.get("rpmAverage"),
693
- "rpm_min": obj.get("rpmMin"),
694
- "rpm_max": obj.get("rpmMax"),
695
- "rpm_limiter_average": obj.get("rpmLimiterAverage"),
696
- "rpm_limiter_min": obj.get("rpmLimiterMin"),
697
- "rpm_limiter_max": obj.get("rpmLimiterMax"),
698
- "rpm_limiter_no_limit": obj.get("rpmLimiterNoLimit"),
699
- "rpm_limiter_power_limit": obj.get("rpmLimiterPowerLimit"),
700
- "rpm_limiter_defrost": obj.get("rpmLimiterDefrost"),
701
- "rpm_limiter_silent_hours": obj.get("rpmLimiterSilentHours"),
702
- "rpm_limiter_hp_control": obj.get("rpmLimiterHPControl"),
703
- "rpm_limiter_pressure": obj.get("rpmLimiterPressure"),
704
- "rpm_limiter_water_out": obj.get("rpmLimiterWaterOut"),
705
- "rpm_limiter_envelope": obj.get("rpmLimiterEnvelope"),
706
- "rpm_limiter_house_in": obj.get("rpmLimiterHouseIn"),
707
- "p_compressor_in_average": obj.get("pCompressorInAverage"),
708
- "p_compressor_in_min": obj.get("pCompressorInMin"),
709
- "p_compressor_in_max": obj.get("pCompressorInMax"),
710
- "p_compressor_out_average": obj.get("pCompressorOutAverage"),
711
- "p_compressor_out_min": obj.get("pCompressorOutMin"),
712
- "p_compressor_out_max": obj.get("pCompressorOutMax"),
713
- "p_compressor_in_target_average": obj.get("pCompressorInTargetAverage"),
714
- "p_compressor_in_target_min": obj.get("pCompressorInTargetMin"),
715
- "p_compressor_in_target_max": obj.get("pCompressorInTargetMax"),
716
- "t_inverter_average": obj.get("tInverterAverage"),
717
- "t_inverter_min": obj.get("tInverterMin"),
718
- "t_inverter_max": obj.get("tInverterMax"),
719
- "t_compressor_in_average": obj.get("tCompressorInAverage"),
720
- "t_compressor_in_min": obj.get("tCompressorInMin"),
721
- "t_compressor_in_max": obj.get("tCompressorInMax"),
722
- "t_compressor_out_average": obj.get("tCompressorOutAverage"),
723
- "t_compressor_out_min": obj.get("tCompressorOutMin"),
724
- "t_compressor_out_max": obj.get("tCompressorOutMax"),
725
- "t_compressor_in_transient_average": obj.get("tCompressorInTransientAverage"),
726
- "t_compressor_in_transient_min": obj.get("tCompressorInTransientMin"),
727
- "t_compressor_in_transient_max": obj.get("tCompressorInTransientMax"),
728
- "t_compressor_out_transient_average": obj.get("tCompressorOutTransientAverage"),
729
- "t_compressor_out_transient_min": obj.get("tCompressorOutTransientMin"),
730
- "t_compressor_out_transient_max": obj.get("tCompressorOutTransientMax"),
731
- "delta_t_compressor_in_superheat_average": obj.get("deltaTCompressorInSuperheatAverage"),
732
- "delta_t_compressor_in_superheat_min": obj.get("deltaTCompressorInSuperheatMin"),
733
- "delta_t_compressor_in_superheat_max": obj.get("deltaTCompressorInSuperheatMax"),
734
- "compressor_power_low_accuracy_average": obj.get("compressorPowerLowAccuracyAverage"),
735
- "compressor_power_low_accuracy_min": obj.get("compressorPowerLowAccuracyMin"),
736
- "compressor_power_low_accuracy_max": obj.get("compressorPowerLowAccuracyMax"),
737
- "fan_average": obj.get("fanAverage"),
738
- "fan_min": obj.get("fanMin"),
739
- "fan_max": obj.get("fanMax"),
740
- "fan_power_average": obj.get("fanPowerAverage"),
741
- "fan_power_min": obj.get("fanPowerMin"),
742
- "fan_power_max": obj.get("fanPowerMax"),
743
- "cm_mass_power_in_average": obj.get("cmMassPowerInAverage"),
744
- "cm_mass_power_out_average": obj.get("cmMassPowerOutAverage"),
745
- "p_requested_average": obj.get("pRequestedAverage"),
746
- "p_requested_min": obj.get("pRequestedMin"),
747
- "p_requested_max": obj.get("pRequestedMax"),
748
- "power_error_integral_average": obj.get("powerErrorIntegralAverage"),
749
- "power_error_integral_min": obj.get("powerErrorIntegralMin"),
750
- "power_error_integral_max": obj.get("powerErrorIntegralMax"),
751
- "thermostat_state_off": obj.get("thermostatStateOff"),
752
- "thermostat_state_on": obj.get("thermostatStateOn"),
753
- "t_room_average": obj.get("tRoomAverage"),
754
- "t_room_min": obj.get("tRoomMin"),
755
- "t_room_max": obj.get("tRoomMax"),
756
- "t_room_target_average": obj.get("tRoomTargetAverage"),
757
- "t_room_target_min": obj.get("tRoomTargetMin"),
758
- "t_room_target_max": obj.get("tRoomTargetMax"),
759
- "t_thermostat_setpoint_average": obj.get("tThermostatSetpointAverage"),
760
- "t_thermostat_setpoint_min": obj.get("tThermostatSetpointMin"),
761
- "t_thermostat_setpoint_max": obj.get("tThermostatSetpointMax"),
762
- "ot_boiler_feed_temperature_average": obj.get("otBoilerFeedTemperatureAverage"),
763
- "ot_boiler_feed_temperature_min": obj.get("otBoilerFeedTemperatureMin"),
764
- "ot_boiler_feed_temperature_max": obj.get("otBoilerFeedTemperatureMax"),
765
- "ot_boiler_return_temperature_average": obj.get("otBoilerReturnTemperatureAverage"),
766
- "ot_boiler_return_temperature_min": obj.get("otBoilerReturnTemperatureMin"),
767
- "ot_boiler_return_temperature_max": obj.get("otBoilerReturnTemperatureMax")
686
+ "timeCoveredInInterval": obj.get("timeCoveredInInterval"),
687
+ "heatPumpStateStandby": obj.get("heatPumpStateStandby"),
688
+ "heatPumpStateHeating": obj.get("heatPumpStateHeating"),
689
+ "heatPumpStateDefrost": obj.get("heatPumpStateDefrost"),
690
+ "heatPumpStateCooling": obj.get("heatPumpStateCooling"),
691
+ "heatPumpStateDHW": obj.get("heatPumpStateDHW"),
692
+ "heatPumpStateLegionella": obj.get("heatPumpStateLegionella"),
693
+ "rpmControlStartup": obj.get("rpmControlStartup"),
694
+ "rpmControlRunning": obj.get("rpmControlRunning"),
695
+ "rpmControlRunningAbnormally": obj.get("rpmControlRunningAbnormally"),
696
+ "rpmControlShutdown": obj.get("rpmControlShutdown"),
697
+ "controlBridgeStatusWaterPump": obj.get("controlBridgeStatusWaterPump"),
698
+ "controlBridgeStatusDhwValve": obj.get("controlBridgeStatusDhwValve"),
699
+ "controlBridgeStatusGasBoiler": obj.get("controlBridgeStatusGasBoiler"),
700
+ "controlBridgeStatusElectricHeater": obj.get("controlBridgeStatusElectricHeater"),
701
+ "controlBridgeStatusWaterPump2": obj.get("controlBridgeStatusWaterPump2"),
702
+ "dtcNone": obj.get("dtcNone"),
703
+ "dtcContinue": obj.get("dtcContinue"),
704
+ "dtcCompressorOff": obj.get("dtcCompressorOff"),
705
+ "dtcDefrostForbidden": obj.get("dtcDefrostForbidden"),
706
+ "dtcRequestService": obj.get("dtcRequestService"),
707
+ "dtcUseHeatingCurve": obj.get("dtcUseHeatingCurve"),
708
+ "dtcDhwForbidden": obj.get("dtcDhwForbidden"),
709
+ "dtcError": obj.get("dtcError"),
710
+ "dtcInactive": obj.get("dtcInactive"),
711
+ "signalStrengthAverage": obj.get("signalStrengthAverage"),
712
+ "signalStrengthMin": obj.get("signalStrengthMin"),
713
+ "signalStrengthMax": obj.get("signalStrengthMax"),
714
+ "t1Average": obj.get("t1Average"),
715
+ "t1Min": obj.get("t1Min"),
716
+ "t1Max": obj.get("t1Max"),
717
+ "t2Average": obj.get("t2Average"),
718
+ "t2Min": obj.get("t2Min"),
719
+ "t2Max": obj.get("t2Max"),
720
+ "tSpareNtcAverage": obj.get("tSpareNtcAverage"),
721
+ "tSpareNtcMin": obj.get("tSpareNtcMin"),
722
+ "tSpareNtcMax": obj.get("tSpareNtcMax"),
723
+ "tBoardAverage": obj.get("tBoardAverage"),
724
+ "tBoardMin": obj.get("tBoardMin"),
725
+ "tBoardMax": obj.get("tBoardMax"),
726
+ "tAirInAverage": obj.get("tAirInAverage"),
727
+ "tAirInMin": obj.get("tAirInMin"),
728
+ "tAirInMax": obj.get("tAirInMax"),
729
+ "tAirOutAverage": obj.get("tAirOutAverage"),
730
+ "tAirOutMin": obj.get("tAirOutMin"),
731
+ "tAirOutMax": obj.get("tAirOutMax"),
732
+ "tWaterInAverage": obj.get("tWaterInAverage"),
733
+ "tWaterInMin": obj.get("tWaterInMin"),
734
+ "tWaterInMax": obj.get("tWaterInMax"),
735
+ "tWaterOutAverage": obj.get("tWaterOutAverage"),
736
+ "tWaterOutMin": obj.get("tWaterOutMin"),
737
+ "tWaterOutMax": obj.get("tWaterOutMax"),
738
+ "tWaterHouseInAverage": obj.get("tWaterHouseInAverage"),
739
+ "tWaterHouseInMin": obj.get("tWaterHouseInMin"),
740
+ "tWaterHouseInMax": obj.get("tWaterHouseInMax"),
741
+ "rpmAverage": obj.get("rpmAverage"),
742
+ "rpmMin": obj.get("rpmMin"),
743
+ "rpmMax": obj.get("rpmMax"),
744
+ "rpmLimiterAverage": obj.get("rpmLimiterAverage"),
745
+ "rpmLimiterMin": obj.get("rpmLimiterMin"),
746
+ "rpmLimiterMax": obj.get("rpmLimiterMax"),
747
+ "rpmLimiterNoLimit": obj.get("rpmLimiterNoLimit"),
748
+ "rpmLimiterPowerLimit": obj.get("rpmLimiterPowerLimit"),
749
+ "rpmLimiterDefrost": obj.get("rpmLimiterDefrost"),
750
+ "rpmLimiterSilentHours": obj.get("rpmLimiterSilentHours"),
751
+ "rpmLimiterHPControl": obj.get("rpmLimiterHPControl"),
752
+ "rpmLimiterPressure": obj.get("rpmLimiterPressure"),
753
+ "rpmLimiterWaterOut": obj.get("rpmLimiterWaterOut"),
754
+ "rpmLimiterEnvelope": obj.get("rpmLimiterEnvelope"),
755
+ "rpmLimiterHouseIn": obj.get("rpmLimiterHouseIn"),
756
+ "pCompressorInAverage": obj.get("pCompressorInAverage"),
757
+ "pCompressorInMin": obj.get("pCompressorInMin"),
758
+ "pCompressorInMax": obj.get("pCompressorInMax"),
759
+ "pCompressorOutAverage": obj.get("pCompressorOutAverage"),
760
+ "pCompressorOutMin": obj.get("pCompressorOutMin"),
761
+ "pCompressorOutMax": obj.get("pCompressorOutMax"),
762
+ "pCompressorInTargetAverage": obj.get("pCompressorInTargetAverage"),
763
+ "pCompressorInTargetMin": obj.get("pCompressorInTargetMin"),
764
+ "pCompressorInTargetMax": obj.get("pCompressorInTargetMax"),
765
+ "tInverterAverage": obj.get("tInverterAverage"),
766
+ "tInverterMin": obj.get("tInverterMin"),
767
+ "tInverterMax": obj.get("tInverterMax"),
768
+ "tCompressorInAverage": obj.get("tCompressorInAverage"),
769
+ "tCompressorInMin": obj.get("tCompressorInMin"),
770
+ "tCompressorInMax": obj.get("tCompressorInMax"),
771
+ "tCompressorOutAverage": obj.get("tCompressorOutAverage"),
772
+ "tCompressorOutMin": obj.get("tCompressorOutMin"),
773
+ "tCompressorOutMax": obj.get("tCompressorOutMax"),
774
+ "tCompressorInTransientAverage": obj.get("tCompressorInTransientAverage"),
775
+ "tCompressorInTransientMin": obj.get("tCompressorInTransientMin"),
776
+ "tCompressorInTransientMax": obj.get("tCompressorInTransientMax"),
777
+ "tCompressorOutTransientAverage": obj.get("tCompressorOutTransientAverage"),
778
+ "tCompressorOutTransientMin": obj.get("tCompressorOutTransientMin"),
779
+ "tCompressorOutTransientMax": obj.get("tCompressorOutTransientMax"),
780
+ "deltaTCompressorInSuperheatAverage": obj.get("deltaTCompressorInSuperheatAverage"),
781
+ "deltaTCompressorInSuperheatMin": obj.get("deltaTCompressorInSuperheatMin"),
782
+ "deltaTCompressorInSuperheatMax": obj.get("deltaTCompressorInSuperheatMax"),
783
+ "compressorPowerLowAccuracyAverage": obj.get("compressorPowerLowAccuracyAverage"),
784
+ "compressorPowerLowAccuracyMin": obj.get("compressorPowerLowAccuracyMin"),
785
+ "compressorPowerLowAccuracyMax": obj.get("compressorPowerLowAccuracyMax"),
786
+ "fanAverage": obj.get("fanAverage"),
787
+ "fanMin": obj.get("fanMin"),
788
+ "fanMax": obj.get("fanMax"),
789
+ "fanPowerAverage": obj.get("fanPowerAverage"),
790
+ "fanPowerMin": obj.get("fanPowerMin"),
791
+ "fanPowerMax": obj.get("fanPowerMax"),
792
+ "cmMassPowerInAverage": obj.get("cmMassPowerInAverage"),
793
+ "cmMassPowerOutAverage": obj.get("cmMassPowerOutAverage"),
794
+ "temperatureErrorIntegralAverage": obj.get("temperatureErrorIntegralAverage"),
795
+ "temperatureErrorIntegralMin": obj.get("temperatureErrorIntegralMin"),
796
+ "temperatureErrorIntegralMax": obj.get("temperatureErrorIntegralMax"),
797
+ "thermostatStateOff": obj.get("thermostatStateOff"),
798
+ "thermostatStateOn": obj.get("thermostatStateOn"),
799
+ "tRoomAverage": obj.get("tRoomAverage"),
800
+ "tRoomMin": obj.get("tRoomMin"),
801
+ "tRoomMax": obj.get("tRoomMax"),
802
+ "tRoomTargetAverage": obj.get("tRoomTargetAverage"),
803
+ "tRoomTargetMin": obj.get("tRoomTargetMin"),
804
+ "tRoomTargetMax": obj.get("tRoomTargetMax"),
805
+ "tThermostatSetpointAverage": obj.get("tThermostatSetpointAverage"),
806
+ "tThermostatSetpointMin": obj.get("tThermostatSetpointMin"),
807
+ "tThermostatSetpointMax": obj.get("tThermostatSetpointMax"),
808
+ "otBoilerFeedTemperatureAverage": obj.get("otBoilerFeedTemperatureAverage"),
809
+ "otBoilerFeedTemperatureMin": obj.get("otBoilerFeedTemperatureMin"),
810
+ "otBoilerFeedTemperatureMax": obj.get("otBoilerFeedTemperatureMax"),
811
+ "otBoilerReturnTemperatureAverage": obj.get("otBoilerReturnTemperatureAverage"),
812
+ "otBoilerReturnTemperatureMin": obj.get("otBoilerReturnTemperatureMin"),
813
+ "otBoilerReturnTemperatureMax": obj.get("otBoilerReturnTemperatureMax")
768
814
  })
769
815
  return _obj
770
816