Няма описание

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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_Lead extends Google_Collection
  18. {
  19. protected $collection_key = 'gpsMotivations';
  20. public $adwordsCustomerId;
  21. public $comments;
  22. public $createTime;
  23. public $email;
  24. public $familyName;
  25. public $givenName;
  26. public $gpsMotivations;
  27. public $id;
  28. public $languageCode;
  29. public $marketingOptIn;
  30. protected $minMonthlyBudgetType = 'Google_Service_Partners_Money';
  31. protected $minMonthlyBudgetDataType = '';
  32. public $phoneNumber;
  33. public $state;
  34. public $type;
  35. public $websiteUrl;
  36. public function setAdwordsCustomerId($adwordsCustomerId)
  37. {
  38. $this->adwordsCustomerId = $adwordsCustomerId;
  39. }
  40. public function getAdwordsCustomerId()
  41. {
  42. return $this->adwordsCustomerId;
  43. }
  44. public function setComments($comments)
  45. {
  46. $this->comments = $comments;
  47. }
  48. public function getComments()
  49. {
  50. return $this->comments;
  51. }
  52. public function setCreateTime($createTime)
  53. {
  54. $this->createTime = $createTime;
  55. }
  56. public function getCreateTime()
  57. {
  58. return $this->createTime;
  59. }
  60. public function setEmail($email)
  61. {
  62. $this->email = $email;
  63. }
  64. public function getEmail()
  65. {
  66. return $this->email;
  67. }
  68. public function setFamilyName($familyName)
  69. {
  70. $this->familyName = $familyName;
  71. }
  72. public function getFamilyName()
  73. {
  74. return $this->familyName;
  75. }
  76. public function setGivenName($givenName)
  77. {
  78. $this->givenName = $givenName;
  79. }
  80. public function getGivenName()
  81. {
  82. return $this->givenName;
  83. }
  84. public function setGpsMotivations($gpsMotivations)
  85. {
  86. $this->gpsMotivations = $gpsMotivations;
  87. }
  88. public function getGpsMotivations()
  89. {
  90. return $this->gpsMotivations;
  91. }
  92. public function setId($id)
  93. {
  94. $this->id = $id;
  95. }
  96. public function getId()
  97. {
  98. return $this->id;
  99. }
  100. public function setLanguageCode($languageCode)
  101. {
  102. $this->languageCode = $languageCode;
  103. }
  104. public function getLanguageCode()
  105. {
  106. return $this->languageCode;
  107. }
  108. public function setMarketingOptIn($marketingOptIn)
  109. {
  110. $this->marketingOptIn = $marketingOptIn;
  111. }
  112. public function getMarketingOptIn()
  113. {
  114. return $this->marketingOptIn;
  115. }
  116. /**
  117. * @param Google_Service_Partners_Money
  118. */
  119. public function setMinMonthlyBudget(Google_Service_Partners_Money $minMonthlyBudget)
  120. {
  121. $this->minMonthlyBudget = $minMonthlyBudget;
  122. }
  123. /**
  124. * @return Google_Service_Partners_Money
  125. */
  126. public function getMinMonthlyBudget()
  127. {
  128. return $this->minMonthlyBudget;
  129. }
  130. public function setPhoneNumber($phoneNumber)
  131. {
  132. $this->phoneNumber = $phoneNumber;
  133. }
  134. public function getPhoneNumber()
  135. {
  136. return $this->phoneNumber;
  137. }
  138. public function setState($state)
  139. {
  140. $this->state = $state;
  141. }
  142. public function getState()
  143. {
  144. return $this->state;
  145. }
  146. public function setType($type)
  147. {
  148. $this->type = $type;
  149. }
  150. public function getType()
  151. {
  152. return $this->type;
  153. }
  154. public function setWebsiteUrl($websiteUrl)
  155. {
  156. $this->websiteUrl = $websiteUrl;
  157. }
  158. public function getWebsiteUrl()
  159. {
  160. return $this->websiteUrl;
  161. }
  162. }