propresenter-php/php/generated/Rv/Data/Slide/Element/DataLink/Presentation.php
2026-03-01 16:12:17 +01:00

60 lines
1.6 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: slide.proto
namespace Rv\Data\Slide\Element\DataLink;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.Slide.Element.DataLink.Presentation</code>
*/
class Presentation extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>.rv.data.Slide.Element.DataLink.Presentation.PresentationSource presentation_source = 1;</code>
*/
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 <code>.rv.data.Slide.Element.DataLink.Presentation.PresentationSource presentation_source = 1;</code>
* @return int
*/
public function getPresentationSource()
{
return $this->presentation_source;
}
/**
* Generated from protobuf field <code>.rv.data.Slide.Element.DataLink.Presentation.PresentationSource presentation_source = 1;</code>
* @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;
}
}