rv.data.API_v1_Status_Response.GetLayers */ class GetLayers extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field bool video_input = 1; */ protected $video_input = false; /** * Generated from protobuf field bool media = 2; */ protected $media = false; /** * Generated from protobuf field bool slide = 3; */ protected $slide = false; /** * Generated from protobuf field bool announcements = 4; */ protected $announcements = false; /** * Generated from protobuf field bool props = 5; */ protected $props = false; /** * Generated from protobuf field bool messages = 6; */ protected $messages = false; /** * Generated from protobuf field bool audio = 7; */ protected $audio = false; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type bool $video_input * @type bool $media * @type bool $slide * @type bool $announcements * @type bool $props * @type bool $messages * @type bool $audio * } */ public function __construct($data = NULL) { \GPBMetadata\ProApiV1Status::initOnce(); parent::__construct($data); } /** * Generated from protobuf field bool video_input = 1; * @return bool */ public function getVideoInput() { return $this->video_input; } /** * Generated from protobuf field bool video_input = 1; * @param bool $var * @return $this */ public function setVideoInput($var) { GPBUtil::checkBool($var); $this->video_input = $var; return $this; } /** * Generated from protobuf field bool media = 2; * @return bool */ public function getMedia() { return $this->media; } /** * Generated from protobuf field bool media = 2; * @param bool $var * @return $this */ public function setMedia($var) { GPBUtil::checkBool($var); $this->media = $var; return $this; } /** * Generated from protobuf field bool slide = 3; * @return bool */ public function getSlide() { return $this->slide; } /** * Generated from protobuf field bool slide = 3; * @param bool $var * @return $this */ public function setSlide($var) { GPBUtil::checkBool($var); $this->slide = $var; return $this; } /** * Generated from protobuf field bool announcements = 4; * @return bool */ public function getAnnouncements() { return $this->announcements; } /** * Generated from protobuf field bool announcements = 4; * @param bool $var * @return $this */ public function setAnnouncements($var) { GPBUtil::checkBool($var); $this->announcements = $var; return $this; } /** * Generated from protobuf field bool props = 5; * @return bool */ public function getProps() { return $this->props; } /** * Generated from protobuf field bool props = 5; * @param bool $var * @return $this */ public function setProps($var) { GPBUtil::checkBool($var); $this->props = $var; return $this; } /** * Generated from protobuf field bool messages = 6; * @return bool */ public function getMessages() { return $this->messages; } /** * Generated from protobuf field bool messages = 6; * @param bool $var * @return $this */ public function setMessages($var) { GPBUtil::checkBool($var); $this->messages = $var; return $this; } /** * Generated from protobuf field bool audio = 7; * @return bool */ public function getAudio() { return $this->audio; } /** * Generated from protobuf field bool audio = 7; * @param bool $var * @return $this */ public function setAudio($var) { GPBUtil::checkBool($var); $this->audio = $var; return $this; } }