60 lines
1.5 KiB
PHP
60 lines
1.5 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.GroupName</code>
|
|
*/
|
|
class GroupName extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.Slide.Element.DataLink.GroupSourceType groupSource = 1;</code>
|
|
*/
|
|
protected $groupSource = 0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type int $groupSource
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\Slide::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.Slide.Element.DataLink.GroupSourceType groupSource = 1;</code>
|
|
* @return int
|
|
*/
|
|
public function getGroupSource()
|
|
{
|
|
return $this->groupSource;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.Slide.Element.DataLink.GroupSourceType groupSource = 1;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setGroupSource($var)
|
|
{
|
|
GPBUtil::checkEnum($var, \Rv\Data\Slide\Element\DataLink\GroupSourceType::class);
|
|
$this->groupSource = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|