/
githubmirror
/
ydb-php-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-php-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
protos/Ydb/Table/QueryMeta.php
100 строк
2 KB
Alexei Shabalin
updated protos
17 фев 2023, 13:31
17 фев 2023, 13:31
ae6a264
Код
Авторство
О чём код?
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: protos/ydb_table.proto namespace Ydb\Table; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Holds query id and type of parameters * * Generated from protobuf message <code>Ydb.Table.QueryMeta</code> */ class QueryMeta extends \Google\Protobuf\Internal\Message { /** * Query identifier * * Generated from protobuf field <code>string id = 1;</code> */ protected $id = ''; /** * Type of parameters * * Generated from protobuf field <code>map<string, .Ydb.Type> parameters_types = 2;</code> */ private $parameters_types; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $id * Query identifier * @type array|\Google\Protobuf\Internal\MapField $parameters_types * Type of parameters * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbTable::initOnce(); parent::__construct($data); } /** * Query identifier * * Generated from protobuf field <code>string id = 1;</code> * @return string */ public function getId() { return $this->id; } /** * Query identifier * * Generated from protobuf field <code>string id = 1;</code> * @param string $var * @return $this */ public function setId($var) { GPBUtil::checkString($var, True); $this->id = $var; return $this; } /** * Type of parameters * * Generated from protobuf field <code>map<string, .Ydb.Type> parameters_types = 2;</code> * @return \Google\Protobuf\Internal\MapField */ public function getParametersTypes() { return $this->parameters_types; } /** * Type of parameters * * Generated from protobuf field <code>map<string, .Ydb.Type> parameters_types = 2;</code> * @param array|\Google\Protobuf\Internal\MapField $var * @return $this */ public function setParametersTypes($var) { $arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Type::class); $this->parameters_types = $arr; return $this; } }