Няма описание

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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_Games_Application extends Google_Collection
  18. {
  19. protected $collection_key = 'instances';
  20. protected $internal_gapi_mappings = array(
  21. "achievementCount" => "achievement_count",
  22. "leaderboardCount" => "leaderboard_count",
  23. );
  24. public $achievementCount;
  25. protected $assetsType = 'Google_Service_Games_ImageAsset';
  26. protected $assetsDataType = 'array';
  27. public $author;
  28. protected $categoryType = 'Google_Service_Games_ApplicationCategory';
  29. protected $categoryDataType = '';
  30. public $description;
  31. public $enabledFeatures;
  32. public $id;
  33. protected $instancesType = 'Google_Service_Games_Instance';
  34. protected $instancesDataType = 'array';
  35. public $kind;
  36. public $lastUpdatedTimestamp;
  37. public $leaderboardCount;
  38. public $name;
  39. public $themeColor;
  40. public function setAchievementCount($achievementCount)
  41. {
  42. $this->achievementCount = $achievementCount;
  43. }
  44. public function getAchievementCount()
  45. {
  46. return $this->achievementCount;
  47. }
  48. /**
  49. * @param Google_Service_Games_ImageAsset
  50. */
  51. public function setAssets($assets)
  52. {
  53. $this->assets = $assets;
  54. }
  55. /**
  56. * @return Google_Service_Games_ImageAsset
  57. */
  58. public function getAssets()
  59. {
  60. return $this->assets;
  61. }
  62. public function setAuthor($author)
  63. {
  64. $this->author = $author;
  65. }
  66. public function getAuthor()
  67. {
  68. return $this->author;
  69. }
  70. /**
  71. * @param Google_Service_Games_ApplicationCategory
  72. */
  73. public function setCategory(Google_Service_Games_ApplicationCategory $category)
  74. {
  75. $this->category = $category;
  76. }
  77. /**
  78. * @return Google_Service_Games_ApplicationCategory
  79. */
  80. public function getCategory()
  81. {
  82. return $this->category;
  83. }
  84. public function setDescription($description)
  85. {
  86. $this->description = $description;
  87. }
  88. public function getDescription()
  89. {
  90. return $this->description;
  91. }
  92. public function setEnabledFeatures($enabledFeatures)
  93. {
  94. $this->enabledFeatures = $enabledFeatures;
  95. }
  96. public function getEnabledFeatures()
  97. {
  98. return $this->enabledFeatures;
  99. }
  100. public function setId($id)
  101. {
  102. $this->id = $id;
  103. }
  104. public function getId()
  105. {
  106. return $this->id;
  107. }
  108. /**
  109. * @param Google_Service_Games_Instance
  110. */
  111. public function setInstances($instances)
  112. {
  113. $this->instances = $instances;
  114. }
  115. /**
  116. * @return Google_Service_Games_Instance
  117. */
  118. public function getInstances()
  119. {
  120. return $this->instances;
  121. }
  122. public function setKind($kind)
  123. {
  124. $this->kind = $kind;
  125. }
  126. public function getKind()
  127. {
  128. return $this->kind;
  129. }
  130. public function setLastUpdatedTimestamp($lastUpdatedTimestamp)
  131. {
  132. $this->lastUpdatedTimestamp = $lastUpdatedTimestamp;
  133. }
  134. public function getLastUpdatedTimestamp()
  135. {
  136. return $this->lastUpdatedTimestamp;
  137. }
  138. public function setLeaderboardCount($leaderboardCount)
  139. {
  140. $this->leaderboardCount = $leaderboardCount;
  141. }
  142. public function getLeaderboardCount()
  143. {
  144. return $this->leaderboardCount;
  145. }
  146. public function setName($name)
  147. {
  148. $this->name = $name;
  149. }
  150. public function getName()
  151. {
  152. return $this->name;
  153. }
  154. public function setThemeColor($themeColor)
  155. {
  156. $this->themeColor = $themeColor;
  157. }
  158. public function getThemeColor()
  159. {
  160. return $this->themeColor;
  161. }
  162. }