12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- namespace Ydb\Cms;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- class SchemaOperationQuotas extends \Google\Protobuf\Internal\Message
- {
-
- private $leaky_bucket_quotas;
-
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbCms::initOnce();
- parent::__construct($data);
- }
-
- public function getLeakyBucketQuotas()
- {
- return $this->leaky_bucket_quotas;
- }
-
- public function setLeakyBucketQuotas($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Cms\SchemaOperationQuotas\LeakyBucket::class);
- $this->leaky_bucket_quotas = $arr;
- return $this;
- }
- }
|