- 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
151 lines
3.4 KiB
PHP
151 lines
3.4 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: proApiV1Presentation.proto
|
|
|
|
namespace Rv\Data\API_v1_Presentation_Request;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.API_v1_Presentation_Request.Thumbnail</code>
|
|
*/
|
|
class Thumbnail extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.UUID uuid = 1;</code>
|
|
*/
|
|
protected $uuid = null;
|
|
/**
|
|
* Generated from protobuf field <code>uint32 cue_index = 2;</code>
|
|
*/
|
|
protected $cue_index = 0;
|
|
/**
|
|
* Generated from protobuf field <code>int32 quality = 3;</code>
|
|
*/
|
|
protected $quality = 0;
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.API_v1_ContentType content_type = 4;</code>
|
|
*/
|
|
protected $content_type = 0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type \Rv\Data\UUID $uuid
|
|
* @type int $cue_index
|
|
* @type int $quality
|
|
* @type int $content_type
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\ProApiV1Presentation::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>uint32 cue_index = 2;</code>
|
|
* @return int
|
|
*/
|
|
public function getCueIndex()
|
|
{
|
|
return $this->cue_index;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>uint32 cue_index = 2;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setCueIndex($var)
|
|
{
|
|
GPBUtil::checkUint32($var);
|
|
$this->cue_index = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 quality = 3;</code>
|
|
* @return int
|
|
*/
|
|
public function getQuality()
|
|
{
|
|
return $this->quality;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 quality = 3;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setQuality($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->quality = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.API_v1_ContentType content_type = 4;</code>
|
|
* @return int
|
|
*/
|
|
public function getContentType()
|
|
{
|
|
return $this->content_type;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.API_v1_ContentType content_type = 4;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setContentType($var)
|
|
{
|
|
GPBUtil::checkEnum($var, \Rv\Data\API_v1_ContentType::class);
|
|
$this->content_type = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|