rv.data.NetworkAPI.IndexOrNameIdentifierPair */ class IndexOrNameIdentifierPair extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier key = 1; */ protected $key = null; /** * Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier value = 2; */ protected $value = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Rv\Data\NetworkAPI\IndexOrNameIdentifier $key * @type \Rv\Data\NetworkAPI\IndexOrNameIdentifier $value * } */ public function __construct($data = NULL) { \GPBMetadata\ProApi::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier key = 1; * @return \Rv\Data\NetworkAPI\IndexOrNameIdentifier|null */ public function getKey() { return $this->key; } public function hasKey() { return isset($this->key); } public function clearKey() { unset($this->key); } /** * Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier key = 1; * @param \Rv\Data\NetworkAPI\IndexOrNameIdentifier $var * @return $this */ public function setKey($var) { GPBUtil::checkMessage($var, \Rv\Data\NetworkAPI\IndexOrNameIdentifier::class); $this->key = $var; return $this; } /** * Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier value = 2; * @return \Rv\Data\NetworkAPI\IndexOrNameIdentifier|null */ public function getValue() { return $this->value; } public function hasValue() { return isset($this->value); } public function clearValue() { unset($this->value); } /** * Generated from protobuf field .rv.data.NetworkAPI.IndexOrNameIdentifier value = 2; * @param \Rv\Data\NetworkAPI\IndexOrNameIdentifier $var * @return $this */ public function setValue($var) { GPBUtil::checkMessage($var, \Rv\Data\NetworkAPI\IndexOrNameIdentifier::class); $this->value = $var; return $this; } }