/
githubmirror
/
ydb-php-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-php-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
protos/Ydb/Export/ExportToYtMetadata.php
121 строка
3 KB
Alexei Shabalin
updated protos
17 фев 2023, 13:31
17 фев 2023, 13:31
ae6a264
Код
Авторство
О чём код?
<?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.ExportToYtMetadata</code> */ class ExportToYtMetadata extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field <code>.Ydb.Export.ExportToYtSettings settings = 1;</code> */ protected $settings = null; /** * Generated from protobuf field <code>.Ydb.Export.ExportProgress.Progress progress = 2;</code> */ protected $progress = 0; /** * Generated from protobuf field <code>repeated .Ydb.Export.ExportItemProgress items_progress = 3;</code> */ private $items_progress; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Ydb\Export\ExportToYtSettings $settings * @type int $progress * @type array<\Ydb\Export\ExportItemProgress>|\Google\Protobuf\Internal\RepeatedField $items_progress * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbExport::initOnce(); parent::__construct($data); } /** * Generated from protobuf field <code>.Ydb.Export.ExportToYtSettings settings = 1;</code> * @return \Ydb\Export\ExportToYtSettings|null */ public function getSettings() { return $this->settings; } public function hasSettings() { return isset($this->settings); } public function clearSettings() { unset($this->settings); } /** * Generated from protobuf field <code>.Ydb.Export.ExportToYtSettings settings = 1;</code> * @param \Ydb\Export\ExportToYtSettings $var * @return $this */ public function setSettings($var) { GPBUtil::checkMessage($var, \Ydb\Export\ExportToYtSettings::class); $this->settings = $var; return $this; } /** * Generated from protobuf field <code>.Ydb.Export.ExportProgress.Progress progress = 2;</code> * @return int */ public function getProgress() { return $this->progress; } /** * Generated from protobuf field <code>.Ydb.Export.ExportProgress.Progress progress = 2;</code> * @param int $var * @return $this */ public function setProgress($var) { GPBUtil::checkEnum($var, \Ydb\Export\ExportProgress\Progress::class); $this->progress = $var; return $this; } /** * Generated from protobuf field <code>repeated .Ydb.Export.ExportItemProgress items_progress = 3;</code> * @return \Google\Protobuf\Internal\RepeatedField */ public function getItemsProgress() { return $this->items_progress; } /** * Generated from protobuf field <code>repeated .Ydb.Export.ExportItemProgress items_progress = 3;</code> * @param array<\Ydb\Export\ExportItemProgress>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setItemsProgress($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Export\ExportItemProgress::class); $this->items_progress = $arr; return $this; } }