Нет описания

AchievementDefinition.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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_AchievementDefinition extends Google_Model
  18. {
  19. public $achievementType;
  20. public $description;
  21. public $experiencePoints;
  22. public $formattedTotalSteps;
  23. public $id;
  24. public $initialState;
  25. public $isRevealedIconUrlDefault;
  26. public $isUnlockedIconUrlDefault;
  27. public $kind;
  28. public $name;
  29. public $revealedIconUrl;
  30. public $totalSteps;
  31. public $unlockedIconUrl;
  32. public function setAchievementType($achievementType)
  33. {
  34. $this->achievementType = $achievementType;
  35. }
  36. public function getAchievementType()
  37. {
  38. return $this->achievementType;
  39. }
  40. public function setDescription($description)
  41. {
  42. $this->description = $description;
  43. }
  44. public function getDescription()
  45. {
  46. return $this->description;
  47. }
  48. public function setExperiencePoints($experiencePoints)
  49. {
  50. $this->experiencePoints = $experiencePoints;
  51. }
  52. public function getExperiencePoints()
  53. {
  54. return $this->experiencePoints;
  55. }
  56. public function setFormattedTotalSteps($formattedTotalSteps)
  57. {
  58. $this->formattedTotalSteps = $formattedTotalSteps;
  59. }
  60. public function getFormattedTotalSteps()
  61. {
  62. return $this->formattedTotalSteps;
  63. }
  64. public function setId($id)
  65. {
  66. $this->id = $id;
  67. }
  68. public function getId()
  69. {
  70. return $this->id;
  71. }
  72. public function setInitialState($initialState)
  73. {
  74. $this->initialState = $initialState;
  75. }
  76. public function getInitialState()
  77. {
  78. return $this->initialState;
  79. }
  80. public function setIsRevealedIconUrlDefault($isRevealedIconUrlDefault)
  81. {
  82. $this->isRevealedIconUrlDefault = $isRevealedIconUrlDefault;
  83. }
  84. public function getIsRevealedIconUrlDefault()
  85. {
  86. return $this->isRevealedIconUrlDefault;
  87. }
  88. public function setIsUnlockedIconUrlDefault($isUnlockedIconUrlDefault)
  89. {
  90. $this->isUnlockedIconUrlDefault = $isUnlockedIconUrlDefault;
  91. }
  92. public function getIsUnlockedIconUrlDefault()
  93. {
  94. return $this->isUnlockedIconUrlDefault;
  95. }
  96. public function setKind($kind)
  97. {
  98. $this->kind = $kind;
  99. }
  100. public function getKind()
  101. {
  102. return $this->kind;
  103. }
  104. public function setName($name)
  105. {
  106. $this->name = $name;
  107. }
  108. public function getName()
  109. {
  110. return $this->name;
  111. }
  112. public function setRevealedIconUrl($revealedIconUrl)
  113. {
  114. $this->revealedIconUrl = $revealedIconUrl;
  115. }
  116. public function getRevealedIconUrl()
  117. {
  118. return $this->revealedIconUrl;
  119. }
  120. public function setTotalSteps($totalSteps)
  121. {
  122. $this->totalSteps = $totalSteps;
  123. }
  124. public function getTotalSteps()
  125. {
  126. return $this->totalSteps;
  127. }
  128. public function setUnlockedIconUrl($unlockedIconUrl)
  129. {
  130. $this->unlockedIconUrl = $unlockedIconUrl;
  131. }
  132. public function getUnlockedIconUrl()
  133. {
  134. return $this->unlockedIconUrl;
  135. }
  136. }