propresenter-php/php/generated/Rv/Data/API_v1_Identifier.php
2026-03-01 16:12:17 +01:00

114 lines
2.4 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: proApiV1Identifier.proto
namespace Rv\Data;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.API_v1_Identifier</code>
*/
class API_v1_Identifier extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>string uuid = 1;</code>
*/
protected $uuid = '';
/**
* Generated from protobuf field <code>string name = 2;</code>
*/
protected $name = '';
/**
* Generated from protobuf field <code>uint32 index = 3;</code>
*/
protected $index = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $uuid
* @type string $name
* @type int $index
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApiV1Identifier::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>string uuid = 1;</code>
* @return string
*/
public function getUuid()
{
return $this->uuid;
}
/**
* Generated from protobuf field <code>string uuid = 1;</code>
* @param string $var
* @return $this
*/
public function setUuid($var)
{
GPBUtil::checkString($var, True);
$this->uuid = $var;
return $this;
}
/**
* Generated from protobuf field <code>string name = 2;</code>
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Generated from protobuf field <code>string name = 2;</code>
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}
/**
* Generated from protobuf field <code>uint32 index = 3;</code>
* @return int
*/
public function getIndex()
{
return $this->index;
}
/**
* Generated from protobuf field <code>uint32 index = 3;</code>
* @param int $var
* @return $this
*/
public function setIndex($var)
{
GPBUtil::checkUint32($var);
$this->index = $var;
return $this;
}
}