[docs]classEstimationCls:"""Estimation commands group definition. 4 total commands, 4 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("estimation",core,parent)@propertydeffull(self):"""full commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_full'):from.FullimportFullClsself._full=FullCls(self._core,self._cmd_group)returnself._full@propertydefrange(self):"""range commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_range'):from.RangeimportRangeClsself._range=RangeCls(self._core,self._cmd_group)returnself._range@propertydefstart(self):"""start commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_start'):from.StartimportStartClsself._start=StartCls(self._core,self._cmd_group)returnself._start@propertydefstop(self):"""stop commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_stop'):from.StopimportStopClsself._stop=StopCls(self._core,self._cmd_group)returnself._stopdefclone(self)->'EstimationCls':"""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=EstimationCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group