[docs]classTemperatureCls:"""Temperature commands group definition. 5 total commands, 5 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("temperature",core,parent)@propertydefevent(self):"""event commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_event'):from.EventimportEventClsself._event=EventCls(self._core,self._cmd_group)returnself._event@propertydefcondition(self):"""condition commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_condition'):from.ConditionimportConditionClsself._condition=ConditionCls(self._core,self._cmd_group)returnself._condition@propertydefenable(self):"""enable commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_enable'):from.EnableimportEnableClsself._enable=EnableCls(self._core,self._cmd_group)returnself._enable@propertydefptransition(self):"""ptransition commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ptransition'):from.PtransitionimportPtransitionClsself._ptransition=PtransitionCls(self._core,self._cmd_group)returnself._ptransition@propertydefntransition(self):"""ntransition commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ntransition'):from.NtransitionimportNtransitionClsself._ntransition=NtransitionCls(self._core,self._cmd_group)returnself._ntransitiondefclone(self)->'TemperatureCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=TemperatureCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group