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

98 lines
2 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: proApi.proto
namespace Rv\Data\NetworkAPI;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.NetworkAPI.IndexOrNameIdentifier</code>
*/
class IndexOrNameIdentifier extends \Google\Protobuf\Internal\Message
{
protected $Component;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $index
* @type string $name
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApi::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>int32 index = 1;</code>
* @return int
*/
public function getIndex()
{
return $this->readOneof(1);
}
public function hasIndex()
{
return $this->hasOneof(1);
}
/**
* Generated from protobuf field <code>int32 index = 1;</code>
* @param int $var
* @return $this
*/
public function setIndex($var)
{
GPBUtil::checkInt32($var);
$this->writeOneof(1, $var);
return $this;
}
/**
* Generated from protobuf field <code>string name = 2;</code>
* @return string
*/
public function getName()
{
return $this->readOneof(2);
}
public function hasName()
{
return $this->hasOneof(2);
}
/**
* Generated from protobuf field <code>string name = 2;</code>
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->writeOneof(2, $var);
return $this;
}
/**
* @return string
*/
public function getComponent()
{
return $this->whichOneof("Component");
}
}