123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- namespace Ydb\Scheme;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- class ListDirectoryResponse extends \Google\Protobuf\Internal\Message
- {
-
- protected $operation = null;
-
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbScheme::initOnce();
- parent::__construct($data);
- }
-
- public function getOperation()
- {
- return $this->operation;
- }
- public function hasOperation()
- {
- return isset($this->operation);
- }
- public function clearOperation()
- {
- unset($this->operation);
- }
-
- public function setOperation($var)
- {
- GPBUtil::checkMessage($var, \Ydb\Operations\Operation::class);
- $this->operation = $var;
- return $this;
- }
- }
|