/
githubmirror
/
ydb-php-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-php-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
protos/Ydb/Operations/ListOperationsRequest.php
111 строк
3 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_operation.proto namespace Ydb\Operations; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Generated from protobuf message <code>Ydb.Operations.ListOperationsRequest</code> */ class ListOperationsRequest extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field <code>string kind = 1 [(.Ydb.required) = true];</code> */ protected $kind = ''; /** * Generated from protobuf field <code>uint64 page_size = 2;</code> */ protected $page_size = 0; /** * Generated from protobuf field <code>string page_token = 3;</code> */ 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 <code>string kind = 1 [(.Ydb.required) = true];</code> * @return string */ public function getKind() { return $this->kind; } /** * Generated from protobuf field <code>string kind = 1 [(.Ydb.required) = true];</code> * @param string $var * @return $this */ public function setKind($var) { GPBUtil::checkString($var, True); $this->kind = $var; return $this; } /** * Generated from protobuf field <code>uint64 page_size = 2;</code> * @return int|string */ public function getPageSize() { return $this->page_size; } /** * Generated from protobuf field <code>uint64 page_size = 2;</code> * @param int|string $var * @return $this */ public function setPageSize($var) { GPBUtil::checkUint64($var); $this->page_size = $var; return $this; } /** * Generated from protobuf field <code>string page_token = 3;</code> * @return string */ public function getPageToken() { return $this->page_token; } /** * Generated from protobuf field <code>string page_token = 3;</code> * @param string $var * @return $this */ public function setPageToken($var) { GPBUtil::checkString($var, True); $this->page_token = $var; return $this; } }