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

370 lines
9.5 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: proAudienceLook.proto
namespace Rv\Data\ProAudienceLook;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.ProAudienceLook.ProScreenLook</code>
*/
class ProScreenLook extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>.rv.data.UUID pro_screen_uuid = 1;</code>
*/
protected $pro_screen_uuid = null;
/**
* Generated from protobuf field <code>bool props_enabled = 2;</code>
*/
protected $props_enabled = false;
/**
* Generated from protobuf field <code>bool live_video_enabled = 3;</code>
*/
protected $live_video_enabled = false;
/**
* Generated from protobuf field <code>bool presentation_background_enabled = 4;</code>
*/
protected $presentation_background_enabled = false;
/**
* Generated from protobuf field <code>.rv.data.URL template_document_file_path = 5;</code>
*/
protected $template_document_file_path = null;
/**
* Generated from protobuf field <code>.rv.data.UUID template_slide_uuid = 6;</code>
*/
protected $template_slide_uuid = null;
/**
* Generated from protobuf field <code>bool presentation_foreground_enabled = 7;</code>
*/
protected $presentation_foreground_enabled = false;
/**
* Generated from protobuf field <code>.rv.data.UUID mask_uuid = 8;</code>
*/
protected $mask_uuid = null;
/**
* Generated from protobuf field <code>bool announcements_enabled = 9;</code>
*/
protected $announcements_enabled = false;
/**
* Generated from protobuf field <code>bool props_layer_enabled = 10;</code>
*/
protected $props_layer_enabled = false;
/**
* Generated from protobuf field <code>bool messages_layer_enabled = 11;</code>
*/
protected $messages_layer_enabled = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\UUID $pro_screen_uuid
* @type bool $props_enabled
* @type bool $live_video_enabled
* @type bool $presentation_background_enabled
* @type \Rv\Data\URL $template_document_file_path
* @type \Rv\Data\UUID $template_slide_uuid
* @type bool $presentation_foreground_enabled
* @type \Rv\Data\UUID $mask_uuid
* @type bool $announcements_enabled
* @type bool $props_layer_enabled
* @type bool $messages_layer_enabled
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProAudienceLook::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>.rv.data.UUID pro_screen_uuid = 1;</code>
* @return \Rv\Data\UUID|null
*/
public function getProScreenUuid()
{
return $this->pro_screen_uuid;
}
public function hasProScreenUuid()
{
return isset($this->pro_screen_uuid);
}
public function clearProScreenUuid()
{
unset($this->pro_screen_uuid);
}
/**
* Generated from protobuf field <code>.rv.data.UUID pro_screen_uuid = 1;</code>
* @param \Rv\Data\UUID $var
* @return $this
*/
public function setProScreenUuid($var)
{
GPBUtil::checkMessage($var, \Rv\Data\UUID::class);
$this->pro_screen_uuid = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool props_enabled = 2;</code>
* @return bool
*/
public function getPropsEnabled()
{
return $this->props_enabled;
}
/**
* Generated from protobuf field <code>bool props_enabled = 2;</code>
* @param bool $var
* @return $this
*/
public function setPropsEnabled($var)
{
GPBUtil::checkBool($var);
$this->props_enabled = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool live_video_enabled = 3;</code>
* @return bool
*/
public function getLiveVideoEnabled()
{
return $this->live_video_enabled;
}
/**
* Generated from protobuf field <code>bool live_video_enabled = 3;</code>
* @param bool $var
* @return $this
*/
public function setLiveVideoEnabled($var)
{
GPBUtil::checkBool($var);
$this->live_video_enabled = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool presentation_background_enabled = 4;</code>
* @return bool
*/
public function getPresentationBackgroundEnabled()
{
return $this->presentation_background_enabled;
}
/**
* Generated from protobuf field <code>bool presentation_background_enabled = 4;</code>
* @param bool $var
* @return $this
*/
public function setPresentationBackgroundEnabled($var)
{
GPBUtil::checkBool($var);
$this->presentation_background_enabled = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.URL template_document_file_path = 5;</code>
* @return \Rv\Data\URL|null
*/
public function getTemplateDocumentFilePath()
{
return $this->template_document_file_path;
}
public function hasTemplateDocumentFilePath()
{
return isset($this->template_document_file_path);
}
public function clearTemplateDocumentFilePath()
{
unset($this->template_document_file_path);
}
/**
* Generated from protobuf field <code>.rv.data.URL template_document_file_path = 5;</code>
* @param \Rv\Data\URL $var
* @return $this
*/
public function setTemplateDocumentFilePath($var)
{
GPBUtil::checkMessage($var, \Rv\Data\URL::class);
$this->template_document_file_path = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.UUID template_slide_uuid = 6;</code>
* @return \Rv\Data\UUID|null
*/
public function getTemplateSlideUuid()
{
return $this->template_slide_uuid;
}
public function hasTemplateSlideUuid()
{
return isset($this->template_slide_uuid);
}
public function clearTemplateSlideUuid()
{
unset($this->template_slide_uuid);
}
/**
* Generated from protobuf field <code>.rv.data.UUID template_slide_uuid = 6;</code>
* @param \Rv\Data\UUID $var
* @return $this
*/
public function setTemplateSlideUuid($var)
{
GPBUtil::checkMessage($var, \Rv\Data\UUID::class);
$this->template_slide_uuid = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool presentation_foreground_enabled = 7;</code>
* @return bool
*/
public function getPresentationForegroundEnabled()
{
return $this->presentation_foreground_enabled;
}
/**
* Generated from protobuf field <code>bool presentation_foreground_enabled = 7;</code>
* @param bool $var
* @return $this
*/
public function setPresentationForegroundEnabled($var)
{
GPBUtil::checkBool($var);
$this->presentation_foreground_enabled = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.UUID mask_uuid = 8;</code>
* @return \Rv\Data\UUID|null
*/
public function getMaskUuid()
{
return $this->mask_uuid;
}
public function hasMaskUuid()
{
return isset($this->mask_uuid);
}
public function clearMaskUuid()
{
unset($this->mask_uuid);
}
/**
* Generated from protobuf field <code>.rv.data.UUID mask_uuid = 8;</code>
* @param \Rv\Data\UUID $var
* @return $this
*/
public function setMaskUuid($var)
{
GPBUtil::checkMessage($var, \Rv\Data\UUID::class);
$this->mask_uuid = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool announcements_enabled = 9;</code>
* @return bool
*/
public function getAnnouncementsEnabled()
{
return $this->announcements_enabled;
}
/**
* Generated from protobuf field <code>bool announcements_enabled = 9;</code>
* @param bool $var
* @return $this
*/
public function setAnnouncementsEnabled($var)
{
GPBUtil::checkBool($var);
$this->announcements_enabled = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool props_layer_enabled = 10;</code>
* @return bool
*/
public function getPropsLayerEnabled()
{
return $this->props_layer_enabled;
}
/**
* Generated from protobuf field <code>bool props_layer_enabled = 10;</code>
* @param bool $var
* @return $this
*/
public function setPropsLayerEnabled($var)
{
GPBUtil::checkBool($var);
$this->props_layer_enabled = $var;
return $this;
}
/**
* Generated from protobuf field <code>bool messages_layer_enabled = 11;</code>
* @return bool
*/
public function getMessagesLayerEnabled()
{
return $this->messages_layer_enabled;
}
/**
* Generated from protobuf field <code>bool messages_layer_enabled = 11;</code>
* @param bool $var
* @return $this
*/
public function setMessagesLayerEnabled($var)
{
GPBUtil::checkBool($var);
$this->messages_layer_enabled = $var;
return $this;
}
}