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