rv.data.API_v1_SlideDisplayDetails
*/
class API_v1_SlideDisplayDetails extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field string text = 1;
*/
protected $text = '';
/**
* Generated from protobuf field string notes = 2;
*/
protected $notes = '';
/**
* Generated from protobuf field string uuid = 3;
*/
protected $uuid = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $text
* @type string $notes
* @type string $uuid
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApiV1Status::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field string text = 1;
* @return string
*/
public function getText()
{
return $this->text;
}
/**
* Generated from protobuf field string text = 1;
* @param string $var
* @return $this
*/
public function setText($var)
{
GPBUtil::checkString($var, True);
$this->text = $var;
return $this;
}
/**
* Generated from protobuf field string notes = 2;
* @return string
*/
public function getNotes()
{
return $this->notes;
}
/**
* Generated from protobuf field string notes = 2;
* @param string $var
* @return $this
*/
public function setNotes($var)
{
GPBUtil::checkString($var, True);
$this->notes = $var;
return $this;
}
/**
* Generated from protobuf field string uuid = 3;
* @return string
*/
public function getUuid()
{
return $this->uuid;
}
/**
* Generated from protobuf field string uuid = 3;
* @param string $var
* @return $this
*/
public function setUuid($var)
{
GPBUtil::checkString($var, True);
$this->uuid = $var;
return $this;
}
}