114 lines
2.5 KiB
PHP
114 lines
2.5 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: proApiV1Theme.proto
|
|
|
|
namespace Rv\Data\API_v1_Theme_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_Theme_Request.GetThemeSlideThumbnail</code>
|
|
*/
|
|
class GetThemeSlideThumbnail extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>string id = 1;</code>
|
|
*/
|
|
protected $id = '';
|
|
/**
|
|
* Generated from protobuf field <code>string theme_slide = 2;</code>
|
|
*/
|
|
protected $theme_slide = '';
|
|
/**
|
|
* Generated from protobuf field <code>int32 quality = 3;</code>
|
|
*/
|
|
protected $quality = 0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type string $id
|
|
* @type string $theme_slide
|
|
* @type int $quality
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\ProApiV1Theme::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string id = 1;</code>
|
|
* @return string
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string id = 1;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setId($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->id = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string theme_slide = 2;</code>
|
|
* @return string
|
|
*/
|
|
public function getThemeSlide()
|
|
{
|
|
return $this->theme_slide;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string theme_slide = 2;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setThemeSlide($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->theme_slide = $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;
|
|
}
|
|
|
|
}
|
|
|