rv.data.Audio.LogicalChannel */ class LogicalChannel extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .rv.data.UUID uuid = 1; */ protected $uuid = null; /** * Generated from protobuf field string name = 2; */ protected $name = ''; /** * Generated from protobuf field uint32 index = 3; */ protected $index = 0; /** * Generated from protobuf field bool muted = 4; */ protected $muted = false; /** * Generated from protobuf field repeated .rv.data.Audio.LogicalChannel.OutputChannel physical_audio_channels = 5; */ private $physical_audio_channels; /** * Generated from protobuf field bool solo = 6; */ protected $solo = false; /** * Generated from protobuf field bool test_tone = 7; */ protected $test_tone = false; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Rv\Data\UUID $uuid * @type string $name * @type int $index * @type bool $muted * @type array<\Rv\Data\Audio\LogicalChannel\OutputChannel>|\Google\Protobuf\Internal\RepeatedField $physical_audio_channels * @type bool $solo * @type bool $test_tone * } */ public function __construct($data = NULL) { \GPBMetadata\Audio::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.UUID uuid = 1; * @return \Rv\Data\UUID|null */ public function getUuid() { return $this->uuid; } public function hasUuid() { return isset($this->uuid); } public function clearUuid() { unset($this->uuid); } /** * Generated from protobuf field .rv.data.UUID uuid = 1; * @param \Rv\Data\UUID $var * @return $this */ public function setUuid($var) { GPBUtil::checkMessage($var, \Rv\Data\UUID::class); $this->uuid = $var; return $this; } /** * Generated from protobuf field string name = 2; * @return string */ public function getName() { return $this->name; } /** * Generated from protobuf field string name = 2; * @param string $var * @return $this */ public function setName($var) { GPBUtil::checkString($var, True); $this->name = $var; return $this; } /** * Generated from protobuf field uint32 index = 3; * @return int */ public function getIndex() { return $this->index; } /** * Generated from protobuf field uint32 index = 3; * @param int $var * @return $this */ public function setIndex($var) { GPBUtil::checkUint32($var); $this->index = $var; return $this; } /** * Generated from protobuf field bool muted = 4; * @return bool */ public function getMuted() { return $this->muted; } /** * Generated from protobuf field bool muted = 4; * @param bool $var * @return $this */ public function setMuted($var) { GPBUtil::checkBool($var); $this->muted = $var; return $this; } /** * Generated from protobuf field repeated .rv.data.Audio.LogicalChannel.OutputChannel physical_audio_channels = 5; * @return \Google\Protobuf\Internal\RepeatedField */ public function getPhysicalAudioChannels() { return $this->physical_audio_channels; } /** * Generated from protobuf field repeated .rv.data.Audio.LogicalChannel.OutputChannel physical_audio_channels = 5; * @param array<\Rv\Data\Audio\LogicalChannel\OutputChannel>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setPhysicalAudioChannels($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Rv\Data\Audio\LogicalChannel\OutputChannel::class); $this->physical_audio_channels = $arr; return $this; } /** * Generated from protobuf field bool solo = 6; * @return bool */ public function getSolo() { return $this->solo; } /** * Generated from protobuf field bool solo = 6; * @param bool $var * @return $this */ public function setSolo($var) { GPBUtil::checkBool($var); $this->solo = $var; return $this; } /** * Generated from protobuf field bool test_tone = 7; * @return bool */ public function getTestTone() { return $this->test_tone; } /** * Generated from protobuf field bool test_tone = 7; * @param bool $var * @return $this */ public function setTestTone($var) { GPBUtil::checkBool($var); $this->test_tone = $var; return $this; } }