Ydb.Table.ExecuteScanQueryRequest
*/
class ExecuteScanQueryRequest extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .Ydb.Table.Query query = 3;
*/
protected $query = null;
/**
* Generated from protobuf field map parameters = 4;
*/
private $parameters;
/**
* Generated from protobuf field .Ydb.Table.ExecuteScanQueryRequest.Mode mode = 6;
*/
protected $mode = 0;
/**
* Generated from protobuf field .Ydb.Table.QueryStatsCollection.Mode collect_stats = 8;
*/
protected $collect_stats = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Ydb\Table\Query $query
* @type array|\Google\Protobuf\Internal\MapField $parameters
* @type int $mode
* @type int $collect_stats
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbTable::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .Ydb.Table.Query query = 3;
* @return \Ydb\Table\Query|null
*/
public function getQuery()
{
return $this->query;
}
public function hasQuery()
{
return isset($this->query);
}
public function clearQuery()
{
unset($this->query);
}
/**
* Generated from protobuf field .Ydb.Table.Query query = 3;
* @param \Ydb\Table\Query $var
* @return $this
*/
public function setQuery($var)
{
GPBUtil::checkMessage($var, \Ydb\Table\Query::class);
$this->query = $var;
return $this;
}
/**
* Generated from protobuf field map parameters = 4;
* @return \Google\Protobuf\Internal\MapField
*/
public function getParameters()
{
return $this->parameters;
}
/**
* Generated from protobuf field map parameters = 4;
* @param array|\Google\Protobuf\Internal\MapField $var
* @return $this
*/
public function setParameters($var)
{
$arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\TypedValue::class);
$this->parameters = $arr;
return $this;
}
/**
* Generated from protobuf field .Ydb.Table.ExecuteScanQueryRequest.Mode mode = 6;
* @return int
*/
public function getMode()
{
return $this->mode;
}
/**
* Generated from protobuf field .Ydb.Table.ExecuteScanQueryRequest.Mode mode = 6;
* @param int $var
* @return $this
*/
public function setMode($var)
{
GPBUtil::checkEnum($var, \Ydb\Table\ExecuteScanQueryRequest\Mode::class);
$this->mode = $var;
return $this;
}
/**
* Generated from protobuf field .Ydb.Table.QueryStatsCollection.Mode collect_stats = 8;
* @return int
*/
public function getCollectStats()
{
return $this->collect_stats;
}
/**
* Generated from protobuf field .Ydb.Table.QueryStatsCollection.Mode collect_stats = 8;
* @param int $var
* @return $this
*/
public function setCollectStats($var)
{
GPBUtil::checkEnum($var, \Ydb\Table\QueryStatsCollection\Mode::class);
$this->collect_stats = $var;
return $this;
}
}