Sin descripción

QuotaBucketDefinition.php 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. /*
  3. * Copyright 2014 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. class Google_Service_Devprojects_QuotaBucketDefinition extends Google_Model
  18. {
  19. protected $billableDailyLimitType = 'Google_Service_Devprojects_ApiLimitDefinition';
  20. protected $billableDailyLimitDataType = '';
  21. protected $dailyLimitType = 'Google_Service_Devprojects_ApiLimitDefinition';
  22. protected $dailyLimitDataType = '';
  23. protected $idType = 'Google_Service_Devprojects_BucketId';
  24. protected $idDataType = '';
  25. public $kind;
  26. public $name;
  27. public $variableTermQuotaDescription;
  28. public $visible;
  29. protected $visitorRateLimitType = 'Google_Service_Devprojects_ApiLimitDefinition';
  30. protected $visitorRateLimitDataType = '';
  31. public function setBillableDailyLimit(Google_Service_Devprojects_ApiLimitDefinition $billableDailyLimit)
  32. {
  33. $this->billableDailyLimit = $billableDailyLimit;
  34. }
  35. public function getBillableDailyLimit()
  36. {
  37. return $this->billableDailyLimit;
  38. }
  39. public function setDailyLimit(Google_Service_Devprojects_ApiLimitDefinition $dailyLimit)
  40. {
  41. $this->dailyLimit = $dailyLimit;
  42. }
  43. public function getDailyLimit()
  44. {
  45. return $this->dailyLimit;
  46. }
  47. public function setId(Google_Service_Devprojects_BucketId $id)
  48. {
  49. $this->id = $id;
  50. }
  51. public function getId()
  52. {
  53. return $this->id;
  54. }
  55. public function setKind($kind)
  56. {
  57. $this->kind = $kind;
  58. }
  59. public function getKind()
  60. {
  61. return $this->kind;
  62. }
  63. public function setName($name)
  64. {
  65. $this->name = $name;
  66. }
  67. public function getName()
  68. {
  69. return $this->name;
  70. }
  71. public function setVariableTermQuotaDescription($variableTermQuotaDescription)
  72. {
  73. $this->variableTermQuotaDescription = $variableTermQuotaDescription;
  74. }
  75. public function getVariableTermQuotaDescription()
  76. {
  77. return $this->variableTermQuotaDescription;
  78. }
  79. public function setVisible($visible)
  80. {
  81. $this->visible = $visible;
  82. }
  83. public function getVisible()
  84. {
  85. return $this->visible;
  86. }
  87. public function setVisitorRateLimit(Google_Service_Devprojects_ApiLimitDefinition $visitorRateLimit)
  88. {
  89. $this->visitorRateLimit = $visitorRateLimit;
  90. }
  91. public function getVisitorRateLimit()
  92. {
  93. return $this->visitorRateLimit;
  94. }
  95. }