Ingen beskrivning

Order.php 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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_Dfareporting_Order extends Google_Collection
  18. {
  19. protected $collection_key = 'siteNames';
  20. public $accountId;
  21. public $advertiserId;
  22. public $approverUserProfileIds;
  23. public $buyerInvoiceId;
  24. public $buyerOrganizationName;
  25. public $comments;
  26. protected $contactsType = 'Google_Service_Dfareporting_OrderContact';
  27. protected $contactsDataType = 'array';
  28. public $id;
  29. public $kind;
  30. protected $lastModifiedInfoType = 'Google_Service_Dfareporting_LastModifiedInfo';
  31. protected $lastModifiedInfoDataType = '';
  32. public $name;
  33. public $notes;
  34. public $planningTermId;
  35. public $projectId;
  36. public $sellerOrderId;
  37. public $sellerOrganizationName;
  38. public $siteId;
  39. public $siteNames;
  40. public $subaccountId;
  41. public $termsAndConditions;
  42. public function setAccountId($accountId)
  43. {
  44. $this->accountId = $accountId;
  45. }
  46. public function getAccountId()
  47. {
  48. return $this->accountId;
  49. }
  50. public function setAdvertiserId($advertiserId)
  51. {
  52. $this->advertiserId = $advertiserId;
  53. }
  54. public function getAdvertiserId()
  55. {
  56. return $this->advertiserId;
  57. }
  58. public function setApproverUserProfileIds($approverUserProfileIds)
  59. {
  60. $this->approverUserProfileIds = $approverUserProfileIds;
  61. }
  62. public function getApproverUserProfileIds()
  63. {
  64. return $this->approverUserProfileIds;
  65. }
  66. public function setBuyerInvoiceId($buyerInvoiceId)
  67. {
  68. $this->buyerInvoiceId = $buyerInvoiceId;
  69. }
  70. public function getBuyerInvoiceId()
  71. {
  72. return $this->buyerInvoiceId;
  73. }
  74. public function setBuyerOrganizationName($buyerOrganizationName)
  75. {
  76. $this->buyerOrganizationName = $buyerOrganizationName;
  77. }
  78. public function getBuyerOrganizationName()
  79. {
  80. return $this->buyerOrganizationName;
  81. }
  82. public function setComments($comments)
  83. {
  84. $this->comments = $comments;
  85. }
  86. public function getComments()
  87. {
  88. return $this->comments;
  89. }
  90. /**
  91. * @param Google_Service_Dfareporting_OrderContact
  92. */
  93. public function setContacts($contacts)
  94. {
  95. $this->contacts = $contacts;
  96. }
  97. /**
  98. * @return Google_Service_Dfareporting_OrderContact
  99. */
  100. public function getContacts()
  101. {
  102. return $this->contacts;
  103. }
  104. public function setId($id)
  105. {
  106. $this->id = $id;
  107. }
  108. public function getId()
  109. {
  110. return $this->id;
  111. }
  112. public function setKind($kind)
  113. {
  114. $this->kind = $kind;
  115. }
  116. public function getKind()
  117. {
  118. return $this->kind;
  119. }
  120. /**
  121. * @param Google_Service_Dfareporting_LastModifiedInfo
  122. */
  123. public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo)
  124. {
  125. $this->lastModifiedInfo = $lastModifiedInfo;
  126. }
  127. /**
  128. * @return Google_Service_Dfareporting_LastModifiedInfo
  129. */
  130. public function getLastModifiedInfo()
  131. {
  132. return $this->lastModifiedInfo;
  133. }
  134. public function setName($name)
  135. {
  136. $this->name = $name;
  137. }
  138. public function getName()
  139. {
  140. return $this->name;
  141. }
  142. public function setNotes($notes)
  143. {
  144. $this->notes = $notes;
  145. }
  146. public function getNotes()
  147. {
  148. return $this->notes;
  149. }
  150. public function setPlanningTermId($planningTermId)
  151. {
  152. $this->planningTermId = $planningTermId;
  153. }
  154. public function getPlanningTermId()
  155. {
  156. return $this->planningTermId;
  157. }
  158. public function setProjectId($projectId)
  159. {
  160. $this->projectId = $projectId;
  161. }
  162. public function getProjectId()
  163. {
  164. return $this->projectId;
  165. }
  166. public function setSellerOrderId($sellerOrderId)
  167. {
  168. $this->sellerOrderId = $sellerOrderId;
  169. }
  170. public function getSellerOrderId()
  171. {
  172. return $this->sellerOrderId;
  173. }
  174. public function setSellerOrganizationName($sellerOrganizationName)
  175. {
  176. $this->sellerOrganizationName = $sellerOrganizationName;
  177. }
  178. public function getSellerOrganizationName()
  179. {
  180. return $this->sellerOrganizationName;
  181. }
  182. public function setSiteId($siteId)
  183. {
  184. $this->siteId = $siteId;
  185. }
  186. public function getSiteId()
  187. {
  188. return $this->siteId;
  189. }
  190. public function setSiteNames($siteNames)
  191. {
  192. $this->siteNames = $siteNames;
  193. }
  194. public function getSiteNames()
  195. {
  196. return $this->siteNames;
  197. }
  198. public function setSubaccountId($subaccountId)
  199. {
  200. $this->subaccountId = $subaccountId;
  201. }
  202. public function getSubaccountId()
  203. {
  204. return $this->subaccountId;
  205. }
  206. public function setTermsAndConditions($termsAndConditions)
  207. {
  208. $this->termsAndConditions = $termsAndConditions;
  209. }
  210. public function getTermsAndConditions()
  211. {
  212. return $this->termsAndConditions;
  213. }
  214. }