Ydb.Operations.ListOperationsRequest
*/
class ListOperationsRequest extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field string kind = 1 [(.Ydb.required) = true];
*/
protected $kind = '';
/**
* Generated from protobuf field uint64 page_size = 2;
*/
protected $page_size = 0;
/**
* Generated from protobuf field string page_token = 3;
*/
protected $page_token = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $kind
* @type int|string $page_size
* @type string $page_token
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbOperation::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field string kind = 1 [(.Ydb.required) = true];
* @return string
*/
public function getKind()
{
return $this->kind;
}
/**
* Generated from protobuf field string kind = 1 [(.Ydb.required) = true];
* @param string $var
* @return $this
*/
public function setKind($var)
{
GPBUtil::checkString($var, True);
$this->kind = $var;
return $this;
}
/**
* Generated from protobuf field uint64 page_size = 2;
* @return int|string
*/
public function getPageSize()
{
return $this->page_size;
}
/**
* Generated from protobuf field uint64 page_size = 2;
* @param int|string $var
* @return $this
*/
public function setPageSize($var)
{
GPBUtil::checkUint64($var);
$this->page_size = $var;
return $this;
}
/**
* Generated from protobuf field string page_token = 3;
* @return string
*/
public function getPageToken()
{
return $this->page_token;
}
/**
* Generated from protobuf field string page_token = 3;
* @param string $var
* @return $this
*/
public function setPageToken($var)
{
GPBUtil::checkString($var, True);
$this->page_token = $var;
return $this;
}
}