[docs]classPmSettlingCls:"""PmSettling commands group definition. 15 total commands, 3 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("pmSettling",core,parent)@propertydefpmSpoint(self):"""pmSpoint commands group. 4 Sub-classes, 1 commands."""ifnothasattr(self,'_pmSpoint'):from.PmSpointimportPmSpointClsself._pmSpoint=PmSpointCls(self._core,self._cmd_group)returnself._pmSpoint@propertydefpmStime(self):"""pmStime commands group. 4 Sub-classes, 1 commands."""ifnothasattr(self,'_pmStime'):from.PmStimeimportPmStimeClsself._pmStime=PmStimeCls(self._core,self._cmd_group)returnself._pmStime@propertydefpmsLength(self):"""pmsLength commands group. 4 Sub-classes, 1 commands."""ifnothasattr(self,'_pmsLength'):from.PmsLengthimportPmsLengthClsself._pmsLength=PmsLengthCls(self._core,self._cmd_group)returnself._pmsLengthdefclone(self)->'PmSettlingCls':"""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=PmSettlingCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group