Нет описания

CompanyRelation.php 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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_Partners_CompanyRelation extends Google_Collection
  18. {
  19. protected $collection_key = 'specializationStatus';
  20. public $address;
  21. public $badgeTier;
  22. public $companyAdmin;
  23. public $companyId;
  24. public $creationTime;
  25. public $internalCompanyId;
  26. public $isPending;
  27. public $logoUrl;
  28. public $managerAccount;
  29. public $name;
  30. public $phoneNumber;
  31. protected $primaryAddressType = 'Google_Service_Partners_Location';
  32. protected $primaryAddressDataType = '';
  33. public $primaryCountryCode;
  34. public $primaryLanguageCode;
  35. public $resolvedTimestamp;
  36. public $segment;
  37. protected $specializationStatusType = 'Google_Service_Partners_SpecializationStatus';
  38. protected $specializationStatusDataType = 'array';
  39. public $state;
  40. public $website;
  41. public function setAddress($address)
  42. {
  43. $this->address = $address;
  44. }
  45. public function getAddress()
  46. {
  47. return $this->address;
  48. }
  49. public function setBadgeTier($badgeTier)
  50. {
  51. $this->badgeTier = $badgeTier;
  52. }
  53. public function getBadgeTier()
  54. {
  55. return $this->badgeTier;
  56. }
  57. public function setCompanyAdmin($companyAdmin)
  58. {
  59. $this->companyAdmin = $companyAdmin;
  60. }
  61. public function getCompanyAdmin()
  62. {
  63. return $this->companyAdmin;
  64. }
  65. public function setCompanyId($companyId)
  66. {
  67. $this->companyId = $companyId;
  68. }
  69. public function getCompanyId()
  70. {
  71. return $this->companyId;
  72. }
  73. public function setCreationTime($creationTime)
  74. {
  75. $this->creationTime = $creationTime;
  76. }
  77. public function getCreationTime()
  78. {
  79. return $this->creationTime;
  80. }
  81. public function setInternalCompanyId($internalCompanyId)
  82. {
  83. $this->internalCompanyId = $internalCompanyId;
  84. }
  85. public function getInternalCompanyId()
  86. {
  87. return $this->internalCompanyId;
  88. }
  89. public function setIsPending($isPending)
  90. {
  91. $this->isPending = $isPending;
  92. }
  93. public function getIsPending()
  94. {
  95. return $this->isPending;
  96. }
  97. public function setLogoUrl($logoUrl)
  98. {
  99. $this->logoUrl = $logoUrl;
  100. }
  101. public function getLogoUrl()
  102. {
  103. return $this->logoUrl;
  104. }
  105. public function setManagerAccount($managerAccount)
  106. {
  107. $this->managerAccount = $managerAccount;
  108. }
  109. public function getManagerAccount()
  110. {
  111. return $this->managerAccount;
  112. }
  113. public function setName($name)
  114. {
  115. $this->name = $name;
  116. }
  117. public function getName()
  118. {
  119. return $this->name;
  120. }
  121. public function setPhoneNumber($phoneNumber)
  122. {
  123. $this->phoneNumber = $phoneNumber;
  124. }
  125. public function getPhoneNumber()
  126. {
  127. return $this->phoneNumber;
  128. }
  129. /**
  130. * @param Google_Service_Partners_Location
  131. */
  132. public function setPrimaryAddress(Google_Service_Partners_Location $primaryAddress)
  133. {
  134. $this->primaryAddress = $primaryAddress;
  135. }
  136. /**
  137. * @return Google_Service_Partners_Location
  138. */
  139. public function getPrimaryAddress()
  140. {
  141. return $this->primaryAddress;
  142. }
  143. public function setPrimaryCountryCode($primaryCountryCode)
  144. {
  145. $this->primaryCountryCode = $primaryCountryCode;
  146. }
  147. public function getPrimaryCountryCode()
  148. {
  149. return $this->primaryCountryCode;
  150. }
  151. public function setPrimaryLanguageCode($primaryLanguageCode)
  152. {
  153. $this->primaryLanguageCode = $primaryLanguageCode;
  154. }
  155. public function getPrimaryLanguageCode()
  156. {
  157. return $this->primaryLanguageCode;
  158. }
  159. public function setResolvedTimestamp($resolvedTimestamp)
  160. {
  161. $this->resolvedTimestamp = $resolvedTimestamp;
  162. }
  163. public function getResolvedTimestamp()
  164. {
  165. return $this->resolvedTimestamp;
  166. }
  167. public function setSegment($segment)
  168. {
  169. $this->segment = $segment;
  170. }
  171. public function getSegment()
  172. {
  173. return $this->segment;
  174. }
  175. /**
  176. * @param Google_Service_Partners_SpecializationStatus
  177. */
  178. public function setSpecializationStatus($specializationStatus)
  179. {
  180. $this->specializationStatus = $specializationStatus;
  181. }
  182. /**
  183. * @return Google_Service_Partners_SpecializationStatus
  184. */
  185. public function getSpecializationStatus()
  186. {
  187. return $this->specializationStatus;
  188. }
  189. public function setState($state)
  190. {
  191. $this->state = $state;
  192. }
  193. public function getState()
  194. {
  195. return $this->state;
  196. }
  197. public function setWebsite($website)
  198. {
  199. $this->website = $website;
  200. }
  201. public function getWebsite()
  202. {
  203. return $this->website;
  204. }
  205. }