Nav apraksta

TaskQueue.php 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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_Taskqueue_TaskQueue extends Google_Model
  18. {
  19. protected $aclType = 'Google_Service_Taskqueue_TaskQueueAcl';
  20. protected $aclDataType = '';
  21. public $id;
  22. public $kind;
  23. public $maxLeases;
  24. protected $statsType = 'Google_Service_Taskqueue_TaskQueueStats';
  25. protected $statsDataType = '';
  26. /**
  27. * @param Google_Service_Taskqueue_TaskQueueAcl
  28. */
  29. public function setAcl(Google_Service_Taskqueue_TaskQueueAcl $acl)
  30. {
  31. $this->acl = $acl;
  32. }
  33. /**
  34. * @return Google_Service_Taskqueue_TaskQueueAcl
  35. */
  36. public function getAcl()
  37. {
  38. return $this->acl;
  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 setKind($kind)
  49. {
  50. $this->kind = $kind;
  51. }
  52. public function getKind()
  53. {
  54. return $this->kind;
  55. }
  56. public function setMaxLeases($maxLeases)
  57. {
  58. $this->maxLeases = $maxLeases;
  59. }
  60. public function getMaxLeases()
  61. {
  62. return $this->maxLeases;
  63. }
  64. /**
  65. * @param Google_Service_Taskqueue_TaskQueueStats
  66. */
  67. public function setStats(Google_Service_Taskqueue_TaskQueueStats $stats)
  68. {
  69. $this->stats = $stats;
  70. }
  71. /**
  72. * @return Google_Service_Taskqueue_TaskQueueStats
  73. */
  74. public function getStats()
  75. {
  76. return $this->stats;
  77. }
  78. }