rv.data.API_v1_Presentation_Response.Thumbnail
*/
class Thumbnail extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field bytes data = 1;
*/
protected $data = '';
/**
* Generated from protobuf field .rv.data.API_v1_ContentType content_type = 2;
*/
protected $content_type = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $data
* @type int $content_type
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApiV1Presentation::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field bytes data = 1;
* @return string
*/
public function getData()
{
return $this->data;
}
/**
* Generated from protobuf field bytes data = 1;
* @param string $var
* @return $this
*/
public function setData($var)
{
GPBUtil::checkString($var, False);
$this->data = $var;
return $this;
}
/**
* Generated from protobuf field .rv.data.API_v1_ContentType content_type = 2;
* @return int
*/
public function getContentType()
{
return $this->content_type;
}
/**
* Generated from protobuf field .rv.data.API_v1_ContentType content_type = 2;
* @param int $var
* @return $this
*/
public function setContentType($var)
{
GPBUtil::checkEnum($var, \Rv\Data\API_v1_ContentType::class);
$this->content_type = $var;
return $this;
}
}