rv.data.API_v1_Theme_Request.PutThemeSlide */ class PutThemeSlide extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field string id = 1; */ protected $id = ''; /** * Generated from protobuf field string theme_slide = 2; */ protected $theme_slide = ''; /** * Generated from protobuf field .rv.data.API_v1_ThemeSlide slide = 3; */ 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 string id = 1; * @return string */ public function getId() { return $this->id; } /** * Generated from protobuf field string id = 1; * @param string $var * @return $this */ public function setId($var) { GPBUtil::checkString($var, True); $this->id = $var; return $this; } /** * Generated from protobuf field string theme_slide = 2; * @return string */ public function getThemeSlide() { return $this->theme_slide; } /** * Generated from protobuf field string theme_slide = 2; * @param string $var * @return $this */ public function setThemeSlide($var) { GPBUtil::checkString($var, True); $this->theme_slide = $var; return $this; } /** * Generated from protobuf field .rv.data.API_v1_ThemeSlide slide = 3; * @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 .rv.data.API_v1_ThemeSlide slide = 3; * @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; } }