propresenter-php/php/generated/Rv/Data/Audio/LogicalChannel.php
2026-03-01 16:12:17 +01:00

232 lines
5.5 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: audio.proto
namespace Rv\Data\Audio;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.Audio.LogicalChannel</code>
*/
class LogicalChannel extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>.rv.data.UUID uuid = 1;</code>
*/
protected $uuid = null;
/**
* Generated from protobuf field <code>string name = 2;</code>
*/
protected $name = '';
/**
* Generated from protobuf field <code>uint32 index = 3;</code>
*/
protected $index = 0;
/**
* Generated from protobuf field <code>bool muted = 4;</code>
*/
protected $muted = false;
/**
* Generated from protobuf field <code>repeated .rv.data.Audio.LogicalChannel.OutputChannel physical_audio_channels = 5;</code>
*/
private $physical_audio_channels;
/**
* Generated from protobuf field <code>bool solo = 6;</code>
*/
protected $solo = false;
/**
* Generated from protobuf field <code>bool test_tone = 7;</code>
*/
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 <code>.rv.data.UUID uuid = 1;</code>
* @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 <code>.rv.data.UUID uuid = 1;</code>
* @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 <code>string name = 2;</code>
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Generated from protobuf field <code>string name = 2;</code>
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}
/**
* Generated from protobuf field <code>uint32 index = 3;</code>
* @return int
*/
public function getIndex()
{
return $this->index;
}
/**
* Generated from protobuf field <code>uint32 index = 3;</code>
* @param int $var
* @return $this
*/
public function setIndex($var)
{
GPBUtil::checkUint32($var);
$this->index = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool muted = 4;</code>
* @return bool
*/
public function getMuted()
{
return $this->muted;
}
/**
* Generated from protobuf field <code>bool muted = 4;</code>
* @param bool $var
* @return $this
*/
public function setMuted($var)
{
GPBUtil::checkBool($var);
$this->muted = $var;
return $this;
}
/**
* Generated from protobuf field <code>repeated .rv.data.Audio.LogicalChannel.OutputChannel physical_audio_channels = 5;</code>
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getPhysicalAudioChannels()
{
return $this->physical_audio_channels;
}
/**
* Generated from protobuf field <code>repeated .rv.data.Audio.LogicalChannel.OutputChannel physical_audio_channels = 5;</code>
* @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 <code>bool solo = 6;</code>
* @return bool
*/
public function getSolo()
{
return $this->solo;
}
/**
* Generated from protobuf field <code>bool solo = 6;</code>
* @param bool $var
* @return $this
*/
public function setSolo($var)
{
GPBUtil::checkBool($var);
$this->solo = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool test_tone = 7;</code>
* @return bool
*/
public function getTestTone()
{
return $this->test_tone;
}
/**
* Generated from protobuf field <code>bool test_tone = 7;</code>
* @param bool $var
* @return $this
*/
public function setTestTone($var)
{
GPBUtil::checkBool($var);
$this->test_tone = $var;
return $this;
}
}