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