Nav apraksta

Item.php 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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_Chromewebstore_Item extends Google_Collection
  18. {
  19. protected $collection_key = 'statusDetail';
  20. protected $internal_gapi_mappings = array(
  21. "itemId" => "item_id",
  22. );
  23. public $crxVersion;
  24. public $id;
  25. public $itemError;
  26. public $itemId;
  27. public $kind;
  28. public $publicKey;
  29. public $status;
  30. public $statusDetail;
  31. public $uploadState;
  32. public function setCrxVersion($crxVersion)
  33. {
  34. $this->crxVersion = $crxVersion;
  35. }
  36. public function getCrxVersion()
  37. {
  38. return $this->crxVersion;
  39. }
  40. public function setId($id)
  41. {
  42. $this->id = $id;
  43. }
  44. public function getId()
  45. {
  46. return $this->id;
  47. }
  48. public function setItemError($itemError)
  49. {
  50. $this->itemError = $itemError;
  51. }
  52. public function getItemError()
  53. {
  54. return $this->itemError;
  55. }
  56. public function setItemId($itemId)
  57. {
  58. $this->itemId = $itemId;
  59. }
  60. public function getItemId()
  61. {
  62. return $this->itemId;
  63. }
  64. public function setKind($kind)
  65. {
  66. $this->kind = $kind;
  67. }
  68. public function getKind()
  69. {
  70. return $this->kind;
  71. }
  72. public function setPublicKey($publicKey)
  73. {
  74. $this->publicKey = $publicKey;
  75. }
  76. public function getPublicKey()
  77. {
  78. return $this->publicKey;
  79. }
  80. public function setStatus($status)
  81. {
  82. $this->status = $status;
  83. }
  84. public function getStatus()
  85. {
  86. return $this->status;
  87. }
  88. public function setStatusDetail($statusDetail)
  89. {
  90. $this->statusDetail = $statusDetail;
  91. }
  92. public function getStatusDetail()
  93. {
  94. return $this->statusDetail;
  95. }
  96. public function setUploadState($uploadState)
  97. {
  98. $this->uploadState = $uploadState;
  99. }
  100. public function getUploadState()
  101. {
  102. return $this->uploadState;
  103. }
  104. }