rv.data.API_v1_Presentation_Request.Thumbnail
*/
class Thumbnail extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.UUID uuid = 1;
*/
protected $uuid = null;
/**
* Generated from protobuf field uint32 cue_index = 2;
*/
protected $cue_index = 0;
/**
* Generated from protobuf field int32 quality = 3;
*/
protected $quality = 0;
/**
* Generated from protobuf field .rv.data.API_v1_ContentType content_type = 4;
*/
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 .rv.data.UUID uuid = 1;
* @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 .rv.data.UUID uuid = 1;
* @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 uint32 cue_index = 2;
* @return int
*/
public function getCueIndex()
{
return $this->cue_index;
}
/**
* Generated from protobuf field uint32 cue_index = 2;
* @param int $var
* @return $this
*/
public function setCueIndex($var)
{
GPBUtil::checkUint32($var);
$this->cue_index = $var;
return $this;
}
/**
* Generated from protobuf field int32 quality = 3;
* @return int
*/
public function getQuality()
{
return $this->quality;
}
/**
* Generated from protobuf field int32 quality = 3;
* @param int $var
* @return $this
*/
public function setQuality($var)
{
GPBUtil::checkInt32($var);
$this->quality = $var;
return $this;
}
/**
* Generated from protobuf field .rv.data.API_v1_ContentType content_type = 4;
* @return int
*/
public function getContentType()
{
return $this->content_type;
}
/**
* Generated from protobuf field .rv.data.API_v1_ContentType content_type = 4;
* @param int $var
* @return $this
*/
public function setContentType($var)
{
GPBUtil::checkEnum($var, \Rv\Data\API_v1_ContentType::class);
$this->content_type = $var;
return $this;
}
}