暫無描述

JobState.php 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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_Coordinate_JobState extends Google_Collection
  18. {
  19. protected $collection_key = 'note';
  20. public $assignee;
  21. protected $customFieldsType = 'Google_Service_Coordinate_CustomFields';
  22. protected $customFieldsDataType = '';
  23. public $customerName;
  24. public $customerPhoneNumber;
  25. public $kind;
  26. protected $locationType = 'Google_Service_Coordinate_Location';
  27. protected $locationDataType = '';
  28. public $note;
  29. public $progress;
  30. public $title;
  31. public function setAssignee($assignee)
  32. {
  33. $this->assignee = $assignee;
  34. }
  35. public function getAssignee()
  36. {
  37. return $this->assignee;
  38. }
  39. public function setCustomFields(Google_Service_Coordinate_CustomFields $customFields)
  40. {
  41. $this->customFields = $customFields;
  42. }
  43. public function getCustomFields()
  44. {
  45. return $this->customFields;
  46. }
  47. public function setCustomerName($customerName)
  48. {
  49. $this->customerName = $customerName;
  50. }
  51. public function getCustomerName()
  52. {
  53. return $this->customerName;
  54. }
  55. public function setCustomerPhoneNumber($customerPhoneNumber)
  56. {
  57. $this->customerPhoneNumber = $customerPhoneNumber;
  58. }
  59. public function getCustomerPhoneNumber()
  60. {
  61. return $this->customerPhoneNumber;
  62. }
  63. public function setKind($kind)
  64. {
  65. $this->kind = $kind;
  66. }
  67. public function getKind()
  68. {
  69. return $this->kind;
  70. }
  71. public function setLocation(Google_Service_Coordinate_Location $location)
  72. {
  73. $this->location = $location;
  74. }
  75. public function getLocation()
  76. {
  77. return $this->location;
  78. }
  79. public function setNote($note)
  80. {
  81. $this->note = $note;
  82. }
  83. public function getNote()
  84. {
  85. return $this->note;
  86. }
  87. public function setProgress($progress)
  88. {
  89. $this->progress = $progress;
  90. }
  91. public function getProgress()
  92. {
  93. return $this->progress;
  94. }
  95. public function setTitle($title)
  96. {
  97. $this->title = $title;
  98. }
  99. public function getTitle()
  100. {
  101. return $this->title;
  102. }
  103. }