- Move src/, tests/, bin/, generated/, proto/, composer.json, composer.lock, phpunit.xml from php/ to repo root - Move ref/ to doc/reference_samples/ for better organization - Remove vendor/ from git tracking (now properly gitignored) - Update all test file paths (dirname adjustments and ref/ -> doc/reference_samples/) - Update all documentation paths (AGENTS.md, doc/*.md) - Remove php.bak/ directory - All 252 tests pass
249 lines
5.4 KiB
PHP
249 lines
5.4 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: proApiV1Looks.proto
|
|
|
|
namespace Rv\Data;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.API_v1_Screen</code>
|
|
*/
|
|
class API_v1_Screen extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>bool video_input = 1;</code>
|
|
*/
|
|
protected $video_input = false;
|
|
/**
|
|
* Generated from protobuf field <code>bool media = 2;</code>
|
|
*/
|
|
protected $media = false;
|
|
/**
|
|
* Generated from protobuf field <code>bool slide = 3;</code>
|
|
*/
|
|
protected $slide = false;
|
|
/**
|
|
* Generated from protobuf field <code>bool announcements = 4;</code>
|
|
*/
|
|
protected $announcements = false;
|
|
/**
|
|
* Generated from protobuf field <code>bool props = 5;</code>
|
|
*/
|
|
protected $props = false;
|
|
/**
|
|
* Generated from protobuf field <code>bool messages = 6;</code>
|
|
*/
|
|
protected $messages = false;
|
|
/**
|
|
* Generated from protobuf field <code>string presentation = 7;</code>
|
|
*/
|
|
protected $presentation = '';
|
|
/**
|
|
* Generated from protobuf field <code>string mask = 8;</code>
|
|
*/
|
|
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 <code>bool video_input = 1;</code>
|
|
* @return bool
|
|
*/
|
|
public function getVideoInput()
|
|
{
|
|
return $this->video_input;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool video_input = 1;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setVideoInput($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->video_input = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool media = 2;</code>
|
|
* @return bool
|
|
*/
|
|
public function getMedia()
|
|
{
|
|
return $this->media;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool media = 2;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setMedia($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->media = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool slide = 3;</code>
|
|
* @return bool
|
|
*/
|
|
public function getSlide()
|
|
{
|
|
return $this->slide;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool slide = 3;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setSlide($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->slide = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool announcements = 4;</code>
|
|
* @return bool
|
|
*/
|
|
public function getAnnouncements()
|
|
{
|
|
return $this->announcements;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool announcements = 4;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setAnnouncements($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->announcements = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool props = 5;</code>
|
|
* @return bool
|
|
*/
|
|
public function getProps()
|
|
{
|
|
return $this->props;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool props = 5;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setProps($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->props = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool messages = 6;</code>
|
|
* @return bool
|
|
*/
|
|
public function getMessages()
|
|
{
|
|
return $this->messages;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool messages = 6;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setMessages($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->messages = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string presentation = 7;</code>
|
|
* @return string
|
|
*/
|
|
public function getPresentation()
|
|
{
|
|
return $this->presentation;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string presentation = 7;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setPresentation($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->presentation = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string mask = 8;</code>
|
|
* @return string
|
|
*/
|
|
public function getMask()
|
|
{
|
|
return $this->mask;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string mask = 8;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setMask($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->mask = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|