| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- # source: nacos.proto
- namespace Hyperf\Nacos\Protobuf;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\GPBUtil;
- use Google\Protobuf\Internal\MapField;
- use Google\Protobuf\Internal\Message;
- /**
- * Generated from protobuf message <code>Metadata</code>.
- */
- class Metadata extends Message
- {
- /**
- * Generated from protobuf field <code>string type = 3;</code>.
- */
- protected $type = '';
- /**
- * Generated from protobuf field <code>string clientIp = 8;</code>.
- */
- protected $clientIp = '';
- /**
- * Generated from protobuf field <code>map<string, string> headers = 7;</code>.
- */
- private $headers;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @var string $type
- * @var string $clientIp
- * @var array|MapField $headers
- * }
- */
- public function __construct($data = null)
- {
- GPBMetadata\Nacos::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>string type = 3;</code>.
- * @return string
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * Generated from protobuf field <code>string type = 3;</code>.
- * @param string $var
- * @return $this
- */
- public function setType($var)
- {
- GPBUtil::checkString($var, true);
- $this->type = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>string clientIp = 8;</code>.
- * @return string
- */
- public function getClientIp()
- {
- return $this->clientIp;
- }
- /**
- * Generated from protobuf field <code>string clientIp = 8;</code>.
- * @param string $var
- * @return $this
- */
- public function setClientIp($var)
- {
- GPBUtil::checkString($var, true);
- $this->clientIp = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>map<string, string> headers = 7;</code>.
- * @return MapField
- */
- public function getHeaders()
- {
- return $this->headers;
- }
- /**
- * Generated from protobuf field <code>map<string, string> headers = 7;</code>.
- * @param array|MapField $var
- * @return $this
- */
- public function setHeaders($var)
- {
- $arr = GPBUtil::checkMapField($var, GPBType::STRING, GPBType::STRING);
- $this->headers = $arr;
- return $this;
- }
- }
|