Ydb.ValuePair */ class ValuePair extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .Ydb.Value key = 1; */ protected $key = null; /** * Generated from protobuf field .Ydb.Value payload = 2; */ protected $payload = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Ydb\Value $key * @type \Ydb\Value $payload * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbValue::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .Ydb.Value key = 1; * @return \Ydb\Value|null */ public function getKey() { return $this->key; } public function hasKey() { return isset($this->key); } public function clearKey() { unset($this->key); } /** * Generated from protobuf field .Ydb.Value key = 1; * @param \Ydb\Value $var * @return $this */ public function setKey($var) { GPBUtil::checkMessage($var, \Ydb\Value::class); $this->key = $var; return $this; } /** * Generated from protobuf field .Ydb.Value payload = 2; * @return \Ydb\Value|null */ public function getPayload() { return $this->payload; } public function hasPayload() { return isset($this->payload); } public function clearPayload() { unset($this->payload); } /** * Generated from protobuf field .Ydb.Value payload = 2; * @param \Ydb\Value $var * @return $this */ public function setPayload($var) { GPBUtil::checkMessage($var, \Ydb\Value::class); $this->payload = $var; return $this; } }