[docs]classSequenceCls:"""Sequence commands group definition. 12 total commands, 8 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("sequence",core,parent)@propertydefoscilloscope(self):"""oscilloscope commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_oscilloscope'):from.OscilloscopeimportOscilloscopeClsself._oscilloscope=OscilloscopeCls(self._core,self._cmd_group)returnself._oscilloscope@propertydefdtime(self):"""dtime commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_dtime'):from.DtimeimportDtimeClsself._dtime=DtimeCls(self._core,self._cmd_group)returnself._dtime@propertydefholdoff(self):"""holdoff commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_holdoff'):from.HoldoffimportHoldoffClsself._holdoff=HoldoffCls(self._core,self._cmd_group)returnself._holdoff@propertydefifPower(self):"""ifPower commands group. 2 Sub-classes, 0 commands."""ifnothasattr(self,'_ifPower'):from.IfPowerimportIfPowerClsself._ifPower=IfPowerCls(self._core,self._cmd_group)returnself._ifPower@propertydeflevel(self):"""level commands group. 4 Sub-classes, 0 commands."""ifnothasattr(self,'_level'):from.LevelimportLevelClsself._level=LevelCls(self._core,self._cmd_group)returnself._level@propertydefrfPower(self):"""rfPower commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_rfPower'):from.RfPowerimportRfPowerClsself._rfPower=RfPowerCls(self._core,self._cmd_group)returnself._rfPower@propertydefslope(self):"""slope commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_slope'):from.SlopeimportSlopeClsself._slope=SlopeCls(self._core,self._cmd_group)returnself._slope@propertydefsource(self):"""source commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_source'):from.SourceimportSourceClsself._source=SourceCls(self._core,self._cmd_group)returnself._sourcedefclone(self)->'SequenceCls':"""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=SequenceCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group