설명 없음

ManagedProperty.php 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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_AndroidEnterprise_ManagedProperty extends Google_Collection
  18. {
  19. protected $collection_key = 'valueStringArray';
  20. public $key;
  21. public $valueBool;
  22. protected $valueBundleType = 'Google_Service_AndroidEnterprise_ManagedPropertyBundle';
  23. protected $valueBundleDataType = '';
  24. protected $valueBundleArrayType = 'Google_Service_AndroidEnterprise_ManagedPropertyBundle';
  25. protected $valueBundleArrayDataType = 'array';
  26. public $valueInteger;
  27. public $valueString;
  28. public $valueStringArray;
  29. public function setKey($key)
  30. {
  31. $this->key = $key;
  32. }
  33. public function getKey()
  34. {
  35. return $this->key;
  36. }
  37. public function setValueBool($valueBool)
  38. {
  39. $this->valueBool = $valueBool;
  40. }
  41. public function getValueBool()
  42. {
  43. return $this->valueBool;
  44. }
  45. /**
  46. * @param Google_Service_AndroidEnterprise_ManagedPropertyBundle
  47. */
  48. public function setValueBundle(Google_Service_AndroidEnterprise_ManagedPropertyBundle $valueBundle)
  49. {
  50. $this->valueBundle = $valueBundle;
  51. }
  52. /**
  53. * @return Google_Service_AndroidEnterprise_ManagedPropertyBundle
  54. */
  55. public function getValueBundle()
  56. {
  57. return $this->valueBundle;
  58. }
  59. /**
  60. * @param Google_Service_AndroidEnterprise_ManagedPropertyBundle
  61. */
  62. public function setValueBundleArray($valueBundleArray)
  63. {
  64. $this->valueBundleArray = $valueBundleArray;
  65. }
  66. /**
  67. * @return Google_Service_AndroidEnterprise_ManagedPropertyBundle
  68. */
  69. public function getValueBundleArray()
  70. {
  71. return $this->valueBundleArray;
  72. }
  73. public function setValueInteger($valueInteger)
  74. {
  75. $this->valueInteger = $valueInteger;
  76. }
  77. public function getValueInteger()
  78. {
  79. return $this->valueInteger;
  80. }
  81. public function setValueString($valueString)
  82. {
  83. $this->valueString = $valueString;
  84. }
  85. public function getValueString()
  86. {
  87. return $this->valueString;
  88. }
  89. public function setValueStringArray($valueStringArray)
  90. {
  91. $this->valueStringArray = $valueStringArray;
  92. }
  93. public function getValueStringArray()
  94. {
  95. return $this->valueStringArray;
  96. }
  97. }