124 lines
2.8 KiB
PHP
124 lines
2.8 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.PutThemeSlide</code>
|
|
*/
|
|
class PutThemeSlide 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>.rv.data.API_v1_ThemeSlide slide = 3;</code>
|
|
*/
|
|
protected $slide = null;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type string $id
|
|
* @type string $theme_slide
|
|
* @type \Rv\Data\API_v1_ThemeSlide $slide
|
|
* }
|
|
*/
|
|
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>.rv.data.API_v1_ThemeSlide slide = 3;</code>
|
|
* @return \Rv\Data\API_v1_ThemeSlide|null
|
|
*/
|
|
public function getSlide()
|
|
{
|
|
return $this->slide;
|
|
}
|
|
|
|
public function hasSlide()
|
|
{
|
|
return isset($this->slide);
|
|
}
|
|
|
|
public function clearSlide()
|
|
{
|
|
unset($this->slide);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.API_v1_ThemeSlide slide = 3;</code>
|
|
* @param \Rv\Data\API_v1_ThemeSlide $var
|
|
* @return $this
|
|
*/
|
|
public function setSlide($var)
|
|
{
|
|
GPBUtil::checkMessage($var, \Rv\Data\API_v1_ThemeSlide::class);
|
|
$this->slide = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|