rv.data.API_v1_Screen */ class API_v1_Screen 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 string presentation = 7; */ protected $presentation = ''; /** * Generated from protobuf field string mask = 8; */ protected $mask = ''; /** * 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 string $presentation * @type string $mask * } */ public function __construct($data = NULL) { \GPBMetadata\ProApiV1Looks::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 string presentation = 7; * @return string */ public function getPresentation() { return $this->presentation; } /** * Generated from protobuf field string presentation = 7; * @param string $var * @return $this */ public function setPresentation($var) { GPBUtil::checkString($var, True); $this->presentation = $var; return $this; } /** * Generated from protobuf field string mask = 8; * @return string */ public function getMask() { return $this->mask; } /** * Generated from protobuf field string mask = 8; * @param string $var * @return $this */ public function setMask($var) { GPBUtil::checkString($var, True); $this->mask = $var; return $this; } }