Нема описа

Snapshot.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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_Snapshot extends Google_Model
  18. {
  19. protected $coverImageType = 'Google_Service_Games_SnapshotImage';
  20. protected $coverImageDataType = '';
  21. public $description;
  22. public $driveId;
  23. public $durationMillis;
  24. public $id;
  25. public $kind;
  26. public $lastModifiedMillis;
  27. public $progressValue;
  28. public $title;
  29. public $type;
  30. public $uniqueName;
  31. /**
  32. * @param Google_Service_Games_SnapshotImage
  33. */
  34. public function setCoverImage(Google_Service_Games_SnapshotImage $coverImage)
  35. {
  36. $this->coverImage = $coverImage;
  37. }
  38. /**
  39. * @return Google_Service_Games_SnapshotImage
  40. */
  41. public function getCoverImage()
  42. {
  43. return $this->coverImage;
  44. }
  45. public function setDescription($description)
  46. {
  47. $this->description = $description;
  48. }
  49. public function getDescription()
  50. {
  51. return $this->description;
  52. }
  53. public function setDriveId($driveId)
  54. {
  55. $this->driveId = $driveId;
  56. }
  57. public function getDriveId()
  58. {
  59. return $this->driveId;
  60. }
  61. public function setDurationMillis($durationMillis)
  62. {
  63. $this->durationMillis = $durationMillis;
  64. }
  65. public function getDurationMillis()
  66. {
  67. return $this->durationMillis;
  68. }
  69. public function setId($id)
  70. {
  71. $this->id = $id;
  72. }
  73. public function getId()
  74. {
  75. return $this->id;
  76. }
  77. public function setKind($kind)
  78. {
  79. $this->kind = $kind;
  80. }
  81. public function getKind()
  82. {
  83. return $this->kind;
  84. }
  85. public function setLastModifiedMillis($lastModifiedMillis)
  86. {
  87. $this->lastModifiedMillis = $lastModifiedMillis;
  88. }
  89. public function getLastModifiedMillis()
  90. {
  91. return $this->lastModifiedMillis;
  92. }
  93. public function setProgressValue($progressValue)
  94. {
  95. $this->progressValue = $progressValue;
  96. }
  97. public function getProgressValue()
  98. {
  99. return $this->progressValue;
  100. }
  101. public function setTitle($title)
  102. {
  103. $this->title = $title;
  104. }
  105. public function getTitle()
  106. {
  107. return $this->title;
  108. }
  109. public function setType($type)
  110. {
  111. $this->type = $type;
  112. }
  113. public function getType()
  114. {
  115. return $this->type;
  116. }
  117. public function setUniqueName($uniqueName)
  118. {
  119. $this->uniqueName = $uniqueName;
  120. }
  121. public function getUniqueName()
  122. {
  123. return $this->uniqueName;
  124. }
  125. }