No Description

AndroidVersion.php 2.3KB

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_Testing_AndroidVersion extends Google_Collection
  18. {
  19. protected $collection_key = 'tags';
  20. public $apiLevel;
  21. public $codeName;
  22. protected $distributionType = 'Google_Service_Testing_Distribution';
  23. protected $distributionDataType = '';
  24. public $id;
  25. protected $releaseDateType = 'Google_Service_Testing_Date';
  26. protected $releaseDateDataType = '';
  27. public $tags;
  28. public $versionString;
  29. public function setApiLevel($apiLevel)
  30. {
  31. $this->apiLevel = $apiLevel;
  32. }
  33. public function getApiLevel()
  34. {
  35. return $this->apiLevel;
  36. }
  37. public function setCodeName($codeName)
  38. {
  39. $this->codeName = $codeName;
  40. }
  41. public function getCodeName()
  42. {
  43. return $this->codeName;
  44. }
  45. /**
  46. * @param Google_Service_Testing_Distribution
  47. */
  48. public function setDistribution(Google_Service_Testing_Distribution $distribution)
  49. {
  50. $this->distribution = $distribution;
  51. }
  52. /**
  53. * @return Google_Service_Testing_Distribution
  54. */
  55. public function getDistribution()
  56. {
  57. return $this->distribution;
  58. }
  59. public function setId($id)
  60. {
  61. $this->id = $id;
  62. }
  63. public function getId()
  64. {
  65. return $this->id;
  66. }
  67. /**
  68. * @param Google_Service_Testing_Date
  69. */
  70. public function setReleaseDate(Google_Service_Testing_Date $releaseDate)
  71. {
  72. $this->releaseDate = $releaseDate;
  73. }
  74. /**
  75. * @return Google_Service_Testing_Date
  76. */
  77. public function getReleaseDate()
  78. {
  79. return $this->releaseDate;
  80. }
  81. public function setTags($tags)
  82. {
  83. $this->tags = $tags;
  84. }
  85. public function getTags()
  86. {
  87. return $this->tags;
  88. }
  89. public function setVersionString($versionString)
  90. {
  91. $this->versionString = $versionString;
  92. }
  93. public function getVersionString()
  94. {
  95. return $this->versionString;
  96. }
  97. }