Nav apraksta

Organization.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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_People_Organization extends Google_Model
  18. {
  19. public $current;
  20. public $department;
  21. public $domain;
  22. protected $endDateType = 'Google_Service_People_Date';
  23. protected $endDateDataType = '';
  24. public $formattedType;
  25. public $jobDescription;
  26. public $location;
  27. protected $metadataType = 'Google_Service_People_FieldMetadata';
  28. protected $metadataDataType = '';
  29. public $name;
  30. public $phoneticName;
  31. protected $startDateType = 'Google_Service_People_Date';
  32. protected $startDateDataType = '';
  33. public $symbol;
  34. public $title;
  35. public $type;
  36. public function setCurrent($current)
  37. {
  38. $this->current = $current;
  39. }
  40. public function getCurrent()
  41. {
  42. return $this->current;
  43. }
  44. public function setDepartment($department)
  45. {
  46. $this->department = $department;
  47. }
  48. public function getDepartment()
  49. {
  50. return $this->department;
  51. }
  52. public function setDomain($domain)
  53. {
  54. $this->domain = $domain;
  55. }
  56. public function getDomain()
  57. {
  58. return $this->domain;
  59. }
  60. public function setEndDate(Google_Service_People_Date $endDate)
  61. {
  62. $this->endDate = $endDate;
  63. }
  64. public function getEndDate()
  65. {
  66. return $this->endDate;
  67. }
  68. public function setFormattedType($formattedType)
  69. {
  70. $this->formattedType = $formattedType;
  71. }
  72. public function getFormattedType()
  73. {
  74. return $this->formattedType;
  75. }
  76. public function setJobDescription($jobDescription)
  77. {
  78. $this->jobDescription = $jobDescription;
  79. }
  80. public function getJobDescription()
  81. {
  82. return $this->jobDescription;
  83. }
  84. public function setLocation($location)
  85. {
  86. $this->location = $location;
  87. }
  88. public function getLocation()
  89. {
  90. return $this->location;
  91. }
  92. public function setMetadata(Google_Service_People_FieldMetadata $metadata)
  93. {
  94. $this->metadata = $metadata;
  95. }
  96. public function getMetadata()
  97. {
  98. return $this->metadata;
  99. }
  100. public function setName($name)
  101. {
  102. $this->name = $name;
  103. }
  104. public function getName()
  105. {
  106. return $this->name;
  107. }
  108. public function setPhoneticName($phoneticName)
  109. {
  110. $this->phoneticName = $phoneticName;
  111. }
  112. public function getPhoneticName()
  113. {
  114. return $this->phoneticName;
  115. }
  116. public function setStartDate(Google_Service_People_Date $startDate)
  117. {
  118. $this->startDate = $startDate;
  119. }
  120. public function getStartDate()
  121. {
  122. return $this->startDate;
  123. }
  124. public function setSymbol($symbol)
  125. {
  126. $this->symbol = $symbol;
  127. }
  128. public function getSymbol()
  129. {
  130. return $this->symbol;
  131. }
  132. public function setTitle($title)
  133. {
  134. $this->title = $title;
  135. }
  136. public function getTitle()
  137. {
  138. return $this->title;
  139. }
  140. public function setType($type)
  141. {
  142. $this->type = $type;
  143. }
  144. public function getType()
  145. {
  146. return $this->type;
  147. }
  148. }