Ydb.Topic.DescribeConsumerRequest
*/
class DescribeConsumerRequest extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 1;
*/
protected $operation_params = null;
/**
* Topic path.
*
* Generated from protobuf field string path = 2;
*/
protected $path = '';
/**
* Consumer name;
*
* Generated from protobuf field string consumer = 3;
*/
protected $consumer = '';
/**
* Include consumer statistics.
*
* Generated from protobuf field bool include_stats = 4;
*/
protected $include_stats = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Ydb\Operations\OperationParams $operation_params
* @type string $path
* Topic path.
* @type string $consumer
* Consumer name;
* @type bool $include_stats
* Include consumer statistics.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbTopic::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 1;
* @return \Ydb\Operations\OperationParams|null
*/
public function getOperationParams()
{
return $this->operation_params;
}
public function hasOperationParams()
{
return isset($this->operation_params);
}
public function clearOperationParams()
{
unset($this->operation_params);
}
/**
* Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 1;
* @param \Ydb\Operations\OperationParams $var
* @return $this
*/
public function setOperationParams($var)
{
GPBUtil::checkMessage($var, \Ydb\Operations\OperationParams::class);
$this->operation_params = $var;
return $this;
}
/**
* Topic path.
*
* Generated from protobuf field string path = 2;
* @return string
*/
public function getPath()
{
return $this->path;
}
/**
* Topic path.
*
* Generated from protobuf field string path = 2;
* @param string $var
* @return $this
*/
public function setPath($var)
{
GPBUtil::checkString($var, True);
$this->path = $var;
return $this;
}
/**
* Consumer name;
*
* Generated from protobuf field string consumer = 3;
* @return string
*/
public function getConsumer()
{
return $this->consumer;
}
/**
* Consumer name;
*
* Generated from protobuf field string consumer = 3;
* @param string $var
* @return $this
*/
public function setConsumer($var)
{
GPBUtil::checkString($var, True);
$this->consumer = $var;
return $this;
}
/**
* Include consumer statistics.
*
* Generated from protobuf field bool include_stats = 4;
* @return bool
*/
public function getIncludeStats()
{
return $this->include_stats;
}
/**
* Include consumer statistics.
*
* Generated from protobuf field bool include_stats = 4;
* @param bool $var
* @return $this
*/
public function setIncludeStats($var)
{
GPBUtil::checkBool($var);
$this->include_stats = $var;
return $this;
}
}