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_OrderDocument extends Google_Collection
19{
20  protected $collection_key = 'lastSentRecipients';
21  public $accountId;
22  public $advertiserId;
23  public $amendedOrderDocumentId;
24  public $approvedByUserProfileIds;
25  public $cancelled;
26  protected $createdInfoType = 'Google_Service_Dfareporting_LastModifiedInfo';
27  protected $createdInfoDataType = '';
28  public $effectiveDate;
29  public $id;
30  public $kind;
31  public $lastSentRecipients;
32  public $lastSentTime;
33  public $orderId;
34  public $projectId;
35  public $signed;
36  public $subaccountId;
37  public $title;
38  public $type;
39
40  public function setAccountId($accountId)
41  {
42    $this->accountId = $accountId;
43  }
44  public function getAccountId()
45  {
46    return $this->accountId;
47  }
48  public function setAdvertiserId($advertiserId)
49  {
50    $this->advertiserId = $advertiserId;
51  }
52  public function getAdvertiserId()
53  {
54    return $this->advertiserId;
55  }
56  public function setAmendedOrderDocumentId($amendedOrderDocumentId)
57  {
58    $this->amendedOrderDocumentId = $amendedOrderDocumentId;
59  }
60  public function getAmendedOrderDocumentId()
61  {
62    return $this->amendedOrderDocumentId;
63  }
64  public function setApprovedByUserProfileIds($approvedByUserProfileIds)
65  {
66    $this->approvedByUserProfileIds = $approvedByUserProfileIds;
67  }
68  public function getApprovedByUserProfileIds()
69  {
70    return $this->approvedByUserProfileIds;
71  }
72  public function setCancelled($cancelled)
73  {
74    $this->cancelled = $cancelled;
75  }
76  public function getCancelled()
77  {
78    return $this->cancelled;
79  }
80  /**
81   * @param Google_Service_Dfareporting_LastModifiedInfo
82   */
83  public function setCreatedInfo(Google_Service_Dfareporting_LastModifiedInfo $createdInfo)
84  {
85    $this->createdInfo = $createdInfo;
86  }
87  /**
88   * @return Google_Service_Dfareporting_LastModifiedInfo
89   */
90  public function getCreatedInfo()
91  {
92    return $this->createdInfo;
93  }
94  public function setEffectiveDate($effectiveDate)
95  {
96    $this->effectiveDate = $effectiveDate;
97  }
98  public function getEffectiveDate()
99  {
100    return $this->effectiveDate;
101  }
102  public function setId($id)
103  {
104    $this->id = $id;
105  }
106  public function getId()
107  {
108    return $this->id;
109  }
110  public function setKind($kind)
111  {
112    $this->kind = $kind;
113  }
114  public function getKind()
115  {
116    return $this->kind;
117  }
118  public function setLastSentRecipients($lastSentRecipients)
119  {
120    $this->lastSentRecipients = $lastSentRecipients;
121  }
122  public function getLastSentRecipients()
123  {
124    return $this->lastSentRecipients;
125  }
126  public function setLastSentTime($lastSentTime)
127  {
128    $this->lastSentTime = $lastSentTime;
129  }
130  public function getLastSentTime()
131  {
132    return $this->lastSentTime;
133  }
134  public function setOrderId($orderId)
135  {
136    $this->orderId = $orderId;
137  }
138  public function getOrderId()
139  {
140    return $this->orderId;
141  }
142  public function setProjectId($projectId)
143  {
144    $this->projectId = $projectId;
145  }
146  public function getProjectId()
147  {
148    return $this->projectId;
149  }
150  public function setSigned($signed)
151  {
152    $this->signed = $signed;
153  }
154  public function getSigned()
155  {
156    return $this->signed;
157  }
158  public function setSubaccountId($subaccountId)
159  {
160    $this->subaccountId = $subaccountId;
161  }
162  public function getSubaccountId()
163  {
164    return $this->subaccountId;
165  }
166  public function setTitle($title)
167  {
168    $this->title = $title;
169  }
170  public function getTitle()
171  {
172    return $this->title;
173  }
174  public function setType($type)
175  {
176    $this->type = $type;
177  }
178  public function getType()
179  {
180    return $this->type;
181  }
182}
183