[docs]classSyncCls:"""Sync commands group definition. 4 total commands, 4 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("sync",core,parent)@propertydefinCoverage(self):"""inCoverage commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_inCoverage'):from.InCoverageimportInCoverageClsself._inCoverage=InCoverageCls(self._core,self._cmd_group)returnself._inCoverage@propertydefoffsetInd(self):"""offsetInd commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_offsetInd'):from.OffsetIndimportOffsetIndClsself._offsetInd=OffsetIndCls(self._core,self._cmd_group)returnself._offsetInd@propertydefslssId(self):"""slssId commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_slssId'):from.SlssIdimportSlssIdClsself._slssId=SlssIdCls(self._core,self._cmd_group)returnself._slssId@propertydefstate(self):"""state commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_state'):from.StateimportStateClsself._state=StateCls(self._core,self._cmd_group)returnself._statedefclone(self)->'SyncCls':"""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=SyncCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group