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

87 lines
2 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_Response;
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_Response.Thumbnail</code>
*/
class Thumbnail extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>bytes data = 1;</code>
*/
protected $data = '';
/**
* Generated from protobuf field <code>.rv.data.API_v1_ContentType content_type = 2;</code>
*/
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 <code>bytes data = 1;</code>
* @return string
*/
public function getData()
{
return $this->data;
}
/**
* Generated from protobuf field <code>bytes data = 1;</code>
* @param string $var
* @return $this
*/
public function setData($var)
{
GPBUtil::checkString($var, False);
$this->data = $var;
return $this;
}
/**
* Generated from protobuf field <code>.rv.data.API_v1_ContentType content_type = 2;</code>
* @return int
*/
public function getContentType()
{
return $this->content_type;
}
/**
* Generated from protobuf field <code>.rv.data.API_v1_ContentType content_type = 2;</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;
}
}