123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_import.proto
- namespace Ydb\Import;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- */ Data
- *
- * Generated from protobuf message <code>Ydb.Import.YdbDumpFormat</code>
- */
- class YdbDumpFormat extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>repeated string columns = 1;</code>
- */
- private $columns;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type array<string>|\Google\Protobuf\Internal\RepeatedField $columns
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbImport::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>repeated string columns = 1;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getColumns()
- {
- return $this->columns;
- }
- /**
- * Generated from protobuf field <code>repeated string columns = 1;</code>
- * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setColumns($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
- $this->columns = $arr;
- return $this;
- }
- }
|