Ydb.Topic.DescribeTopicRequest */ class DescribeTopicRequest 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 = ''; /** * Include topic statistics. * * Generated from protobuf field bool include_stats = 3; */ 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 bool $include_stats * Include topic 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; } /** * Include topic statistics. * * Generated from protobuf field bool include_stats = 3; * @return bool */ public function getIncludeStats() { return $this->include_stats; } /** * Include topic statistics. * * Generated from protobuf field bool include_stats = 3; * @param bool $var * @return $this */ public function setIncludeStats($var) { GPBUtil::checkBool($var); $this->include_stats = $var; return $this; } }