Ei kuvausta

Enterprise.php 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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_AndroidManagement_Enterprise extends Google_Collection
  18. {
  19. protected $collection_key = 'termsAndConditions';
  20. public $appAutoApprovalEnabled;
  21. public $enabledNotificationTypes;
  22. public $enterpriseDisplayName;
  23. protected $logoType = 'Google_Service_AndroidManagement_ExternalData';
  24. protected $logoDataType = '';
  25. public $name;
  26. public $primaryColor;
  27. public $pubsubTopic;
  28. protected $termsAndConditionsType = 'Google_Service_AndroidManagement_TermsAndConditions';
  29. protected $termsAndConditionsDataType = 'array';
  30. public function setAppAutoApprovalEnabled($appAutoApprovalEnabled)
  31. {
  32. $this->appAutoApprovalEnabled = $appAutoApprovalEnabled;
  33. }
  34. public function getAppAutoApprovalEnabled()
  35. {
  36. return $this->appAutoApprovalEnabled;
  37. }
  38. public function setEnabledNotificationTypes($enabledNotificationTypes)
  39. {
  40. $this->enabledNotificationTypes = $enabledNotificationTypes;
  41. }
  42. public function getEnabledNotificationTypes()
  43. {
  44. return $this->enabledNotificationTypes;
  45. }
  46. public function setEnterpriseDisplayName($enterpriseDisplayName)
  47. {
  48. $this->enterpriseDisplayName = $enterpriseDisplayName;
  49. }
  50. public function getEnterpriseDisplayName()
  51. {
  52. return $this->enterpriseDisplayName;
  53. }
  54. /**
  55. * @param Google_Service_AndroidManagement_ExternalData
  56. */
  57. public function setLogo(Google_Service_AndroidManagement_ExternalData $logo)
  58. {
  59. $this->logo = $logo;
  60. }
  61. /**
  62. * @return Google_Service_AndroidManagement_ExternalData
  63. */
  64. public function getLogo()
  65. {
  66. return $this->logo;
  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 setPrimaryColor($primaryColor)
  77. {
  78. $this->primaryColor = $primaryColor;
  79. }
  80. public function getPrimaryColor()
  81. {
  82. return $this->primaryColor;
  83. }
  84. public function setPubsubTopic($pubsubTopic)
  85. {
  86. $this->pubsubTopic = $pubsubTopic;
  87. }
  88. public function getPubsubTopic()
  89. {
  90. return $this->pubsubTopic;
  91. }
  92. /**
  93. * @param Google_Service_AndroidManagement_TermsAndConditions
  94. */
  95. public function setTermsAndConditions($termsAndConditions)
  96. {
  97. $this->termsAndConditions = $termsAndConditions;
  98. }
  99. /**
  100. * @return Google_Service_AndroidManagement_TermsAndConditions
  101. */
  102. public function getTermsAndConditions()
  103. {
  104. return $this->termsAndConditions;
  105. }
  106. }