12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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.ForgetOperationRequest</code>
- */
- class ForgetOperationRequest extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>string id = 1 [(.Ydb.required) = true];</code>
- */
- protected $id = '';
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $id
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbOperation::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>string id = 1 [(.Ydb.required) = true];</code>
- * @return string
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Generated from protobuf field <code>string id = 1 [(.Ydb.required) = true];</code>
- * @param string $var
- * @return $this
- */
- public function setId($var)
- {
- GPBUtil::checkString($var, True);
- $this->id = $var;
- return $this;
- }
- }
|