rv.data.Slide.Element.DataLink.AlternateElementFill
*/
class AlternateElementFill extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.UUID other_element_uuid = 1;
*/
protected $other_element_uuid = null;
/**
* Generated from protobuf field string other_element_name = 2;
*/
protected $other_element_name = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\UUID $other_element_uuid
* @type string $other_element_name
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Slide::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.UUID other_element_uuid = 1;
* @return \Rv\Data\UUID|null
*/
public function getOtherElementUuid()
{
return $this->other_element_uuid;
}
public function hasOtherElementUuid()
{
return isset($this->other_element_uuid);
}
public function clearOtherElementUuid()
{
unset($this->other_element_uuid);
}
/**
* Generated from protobuf field .rv.data.UUID other_element_uuid = 1;
* @param \Rv\Data\UUID $var
* @return $this
*/
public function setOtherElementUuid($var)
{
GPBUtil::checkMessage($var, \Rv\Data\UUID::class);
$this->other_element_uuid = $var;
return $this;
}
/**
* Generated from protobuf field string other_element_name = 2;
* @return string
*/
public function getOtherElementName()
{
return $this->other_element_name;
}
/**
* Generated from protobuf field string other_element_name = 2;
* @param string $var
* @return $this
*/
public function setOtherElementName($var)
{
GPBUtil::checkString($var, True);
$this->other_element_name = $var;
return $this;
}
}