Açıklama Yok

Flag.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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_SQLAdmin_Flag extends Google_Collection
  18. {
  19. protected $collection_key = 'appliesTo';
  20. public $allowedStringValues;
  21. public $appliesTo;
  22. public $kind;
  23. public $maxValue;
  24. public $minValue;
  25. public $name;
  26. public $requiresRestart;
  27. public $type;
  28. public function setAllowedStringValues($allowedStringValues)
  29. {
  30. $this->allowedStringValues = $allowedStringValues;
  31. }
  32. public function getAllowedStringValues()
  33. {
  34. return $this->allowedStringValues;
  35. }
  36. public function setAppliesTo($appliesTo)
  37. {
  38. $this->appliesTo = $appliesTo;
  39. }
  40. public function getAppliesTo()
  41. {
  42. return $this->appliesTo;
  43. }
  44. public function setKind($kind)
  45. {
  46. $this->kind = $kind;
  47. }
  48. public function getKind()
  49. {
  50. return $this->kind;
  51. }
  52. public function setMaxValue($maxValue)
  53. {
  54. $this->maxValue = $maxValue;
  55. }
  56. public function getMaxValue()
  57. {
  58. return $this->maxValue;
  59. }
  60. public function setMinValue($minValue)
  61. {
  62. $this->minValue = $minValue;
  63. }
  64. public function getMinValue()
  65. {
  66. return $this->minValue;
  67. }
  68. public function setName($name)
  69. {
  70. $this->name = $name;
  71. }
  72. public function getName()
  73. {
  74. return $this->name;
  75. }
  76. public function setRequiresRestart($requiresRestart)
  77. {
  78. $this->requiresRestart = $requiresRestart;
  79. }
  80. public function getRequiresRestart()
  81. {
  82. return $this->requiresRestart;
  83. }
  84. public function setType($type)
  85. {
  86. $this->type = $type;
  87. }
  88. public function getType()
  89. {
  90. return $this->type;
  91. }
  92. }