12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_export.proto
- namespace Ydb\Export;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>Ydb.Export.ExportToYtResponse</code>
- */
- class ExportToYtResponse extends \Google\Protobuf\Internal\Message
- {
- /**
- * operation.result = ExportToYtResult
- * operation.metadata = ExportToYtMetadata
- *
- * Generated from protobuf field <code>.Ydb.Operations.Operation operation = 1;</code>
- */
- protected $operation = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Ydb\Operations\Operation $operation
- * operation.result = ExportToYtResult
- * operation.metadata = ExportToYtMetadata
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbExport::initOnce();
- parent::__construct($data);
- }
- /**
- * operation.result = ExportToYtResult
- * operation.metadata = ExportToYtMetadata
- *
- * Generated from protobuf field <code>.Ydb.Operations.Operation operation = 1;</code>
- * @return \Ydb\Operations\Operation|null
- */
- public function getOperation()
- {
- return $this->operation;
- }
- public function hasOperation()
- {
- return isset($this->operation);
- }
- public function clearOperation()
- {
- unset($this->operation);
- }
- /**
- * operation.result = ExportToYtResult
- * operation.metadata = ExportToYtMetadata
- *
- * Generated from protobuf field <code>.Ydb.Operations.Operation operation = 1;</code>
- * @param \Ydb\Operations\Operation $var
- * @return $this
- */
- public function setOperation($var)
- {
- GPBUtil::checkMessage($var, \Ydb\Operations\Operation::class);
- $this->operation = $var;
- return $this;
- }
- }
|