rv.data.Slide.Element.DataLink.SlideLabelText
*/
class SlideLabelText extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.Slide.Element.DataLink.SlideLabelSource slide_label_source = 1;
*/
protected $slide_label_source = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $slide_label_source
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Slide::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.Slide.Element.DataLink.SlideLabelSource slide_label_source = 1;
* @return int
*/
public function getSlideLabelSource()
{
return $this->slide_label_source;
}
/**
* Generated from protobuf field .rv.data.Slide.Element.DataLink.SlideLabelSource slide_label_source = 1;
* @param int $var
* @return $this
*/
public function setSlideLabelSource($var)
{
GPBUtil::checkEnum($var, \Rv\Data\Slide\Element\DataLink\SlideLabelSource::class);
$this->slide_label_source = $var;
return $this;
}
}