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

60 lines
1.7 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: proCore.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.NetworkIdentifier</code>
*/
class NetworkIdentifier extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>repeated .rv.data.NetworkIdentifier.IndexOrName identifiers = 1;</code>
*/
private $identifiers;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type array<\Rv\Data\NetworkIdentifier\IndexOrName>|\Google\Protobuf\Internal\RepeatedField $identifiers
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProCore::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>repeated .rv.data.NetworkIdentifier.IndexOrName identifiers = 1;</code>
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getIdentifiers()
{
return $this->identifiers;
}
/**
* Generated from protobuf field <code>repeated .rv.data.NetworkIdentifier.IndexOrName identifiers = 1;</code>
* @param array<\Rv\Data\NetworkIdentifier\IndexOrName>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setIdentifiers($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Rv\Data\NetworkIdentifier\IndexOrName::class);
$this->identifiers = $arr;
return $this;
}
}