123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <?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.ListOperationsResponse</code>
- */
- class ListOperationsResponse extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>.Ydb.StatusIds.StatusCode status = 1;</code>
- */
- protected $status = 0;
- /**
- * Generated from protobuf field <code>repeated .Ydb.Issue.IssueMessage issues = 2;</code>
- */
- private $issues;
- /**
- * Generated from protobuf field <code>repeated .Ydb.Operations.Operation operations = 3;</code>
- */
- private $operations;
- /**
- * Generated from protobuf field <code>string next_page_token = 4;</code>
- */
- protected $next_page_token = '';
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int $status
- * @type array<\Ydb\Issue\IssueMessage>|\Google\Protobuf\Internal\RepeatedField $issues
- * @type array<\Ydb\Operations\Operation>|\Google\Protobuf\Internal\RepeatedField $operations
- * @type string $next_page_token
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbOperation::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>.Ydb.StatusIds.StatusCode status = 1;</code>
- * @return int
- */
- public function getStatus()
- {
- return $this->status;
- }
- /**
- * Generated from protobuf field <code>.Ydb.StatusIds.StatusCode status = 1;</code>
- * @param int $var
- * @return $this
- */
- public function setStatus($var)
- {
- GPBUtil::checkEnum($var, \Ydb\StatusIds\StatusCode::class);
- $this->status = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>repeated .Ydb.Issue.IssueMessage issues = 2;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getIssues()
- {
- return $this->issues;
- }
- /**
- * Generated from protobuf field <code>repeated .Ydb.Issue.IssueMessage issues = 2;</code>
- * @param array<\Ydb\Issue\IssueMessage>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setIssues($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Issue\IssueMessage::class);
- $this->issues = $arr;
- return $this;
- }
- /**
- * Generated from protobuf field <code>repeated .Ydb.Operations.Operation operations = 3;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getOperations()
- {
- return $this->operations;
- }
- /**
- * Generated from protobuf field <code>repeated .Ydb.Operations.Operation operations = 3;</code>
- * @param array<\Ydb\Operations\Operation>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setOperations($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Operations\Operation::class);
- $this->operations = $arr;
- return $this;
- }
- /**
- * Generated from protobuf field <code>string next_page_token = 4;</code>
- * @return string
- */
- public function getNextPageToken()
- {
- return $this->next_page_token;
- }
- /**
- * Generated from protobuf field <code>string next_page_token = 4;</code>
- * @param string $var
- * @return $this
- */
- public function setNextPageToken($var)
- {
- GPBUtil::checkString($var, True);
- $this->next_page_token = $var;
- return $this;
- }
- }
|