[docs]classFpGenericCls:"""FpGeneric commands group definition. 3 total commands, 3 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("fpGeneric",core,parent)@propertydefdata(self):"""data commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_data'):from.DataimportDataClsself._data=DataCls(self._core,self._cmd_group)returnself._data@propertydefdlength(self):"""dlength commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_dlength'):from.DlengthimportDlengthClsself._dlength=DlengthCls(self._core,self._cmd_group)returnself._dlength@propertydefplength(self):"""plength commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_plength'):from.PlengthimportPlengthClsself._plength=PlengthCls(self._core,self._cmd_group)returnself._plengthdefclone(self)->'FpGenericCls':"""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=FpGenericCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group