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
18namespace Google\Service\DisplayVideo;
19
20class InsertionOrder extends \Google\Collection
21{
22  protected $collection_key = 'partnerCosts';
23  /**
24   * @var string
25   */
26  public $advertiserId;
27  protected $bidStrategyType = BiddingStrategy::class;
28  protected $bidStrategyDataType = '';
29  /**
30   * @var string
31   */
32  public $billableOutcome;
33  protected $budgetType = InsertionOrderBudget::class;
34  protected $budgetDataType = '';
35  /**
36   * @var string
37   */
38  public $campaignId;
39  /**
40   * @var string
41   */
42  public $displayName;
43  /**
44   * @var string
45   */
46  public $entityStatus;
47  protected $frequencyCapType = FrequencyCap::class;
48  protected $frequencyCapDataType = '';
49  /**
50   * @var string
51   */
52  public $insertionOrderId;
53  /**
54   * @var string
55   */
56  public $insertionOrderType;
57  protected $integrationDetailsType = IntegrationDetails::class;
58  protected $integrationDetailsDataType = '';
59  /**
60   * @var string
61   */
62  public $name;
63  protected $pacingType = Pacing::class;
64  protected $pacingDataType = '';
65  protected $partnerCostsType = PartnerCost::class;
66  protected $partnerCostsDataType = 'array';
67  protected $performanceGoalType = PerformanceGoal::class;
68  protected $performanceGoalDataType = '';
69  /**
70   * @var string
71   */
72  public $reservationType;
73  /**
74   * @var string
75   */
76  public $updateTime;
77
78  /**
79   * @param string
80   */
81  public function setAdvertiserId($advertiserId)
82  {
83    $this->advertiserId = $advertiserId;
84  }
85  /**
86   * @return string
87   */
88  public function getAdvertiserId()
89  {
90    return $this->advertiserId;
91  }
92  /**
93   * @param BiddingStrategy
94   */
95  public function setBidStrategy(BiddingStrategy $bidStrategy)
96  {
97    $this->bidStrategy = $bidStrategy;
98  }
99  /**
100   * @return BiddingStrategy
101   */
102  public function getBidStrategy()
103  {
104    return $this->bidStrategy;
105  }
106  /**
107   * @param string
108   */
109  public function setBillableOutcome($billableOutcome)
110  {
111    $this->billableOutcome = $billableOutcome;
112  }
113  /**
114   * @return string
115   */
116  public function getBillableOutcome()
117  {
118    return $this->billableOutcome;
119  }
120  /**
121   * @param InsertionOrderBudget
122   */
123  public function setBudget(InsertionOrderBudget $budget)
124  {
125    $this->budget = $budget;
126  }
127  /**
128   * @return InsertionOrderBudget
129   */
130  public function getBudget()
131  {
132    return $this->budget;
133  }
134  /**
135   * @param string
136   */
137  public function setCampaignId($campaignId)
138  {
139    $this->campaignId = $campaignId;
140  }
141  /**
142   * @return string
143   */
144  public function getCampaignId()
145  {
146    return $this->campaignId;
147  }
148  /**
149   * @param string
150   */
151  public function setDisplayName($displayName)
152  {
153    $this->displayName = $displayName;
154  }
155  /**
156   * @return string
157   */
158  public function getDisplayName()
159  {
160    return $this->displayName;
161  }
162  /**
163   * @param string
164   */
165  public function setEntityStatus($entityStatus)
166  {
167    $this->entityStatus = $entityStatus;
168  }
169  /**
170   * @return string
171   */
172  public function getEntityStatus()
173  {
174    return $this->entityStatus;
175  }
176  /**
177   * @param FrequencyCap
178   */
179  public function setFrequencyCap(FrequencyCap $frequencyCap)
180  {
181    $this->frequencyCap = $frequencyCap;
182  }
183  /**
184   * @return FrequencyCap
185   */
186  public function getFrequencyCap()
187  {
188    return $this->frequencyCap;
189  }
190  /**
191   * @param string
192   */
193  public function setInsertionOrderId($insertionOrderId)
194  {
195    $this->insertionOrderId = $insertionOrderId;
196  }
197  /**
198   * @return string
199   */
200  public function getInsertionOrderId()
201  {
202    return $this->insertionOrderId;
203  }
204  /**
205   * @param string
206   */
207  public function setInsertionOrderType($insertionOrderType)
208  {
209    $this->insertionOrderType = $insertionOrderType;
210  }
211  /**
212   * @return string
213   */
214  public function getInsertionOrderType()
215  {
216    return $this->insertionOrderType;
217  }
218  /**
219   * @param IntegrationDetails
220   */
221  public function setIntegrationDetails(IntegrationDetails $integrationDetails)
222  {
223    $this->integrationDetails = $integrationDetails;
224  }
225  /**
226   * @return IntegrationDetails
227   */
228  public function getIntegrationDetails()
229  {
230    return $this->integrationDetails;
231  }
232  /**
233   * @param string
234   */
235  public function setName($name)
236  {
237    $this->name = $name;
238  }
239  /**
240   * @return string
241   */
242  public function getName()
243  {
244    return $this->name;
245  }
246  /**
247   * @param Pacing
248   */
249  public function setPacing(Pacing $pacing)
250  {
251    $this->pacing = $pacing;
252  }
253  /**
254   * @return Pacing
255   */
256  public function getPacing()
257  {
258    return $this->pacing;
259  }
260  /**
261   * @param PartnerCost[]
262   */
263  public function setPartnerCosts($partnerCosts)
264  {
265    $this->partnerCosts = $partnerCosts;
266  }
267  /**
268   * @return PartnerCost[]
269   */
270  public function getPartnerCosts()
271  {
272    return $this->partnerCosts;
273  }
274  /**
275   * @param PerformanceGoal
276   */
277  public function setPerformanceGoal(PerformanceGoal $performanceGoal)
278  {
279    $this->performanceGoal = $performanceGoal;
280  }
281  /**
282   * @return PerformanceGoal
283   */
284  public function getPerformanceGoal()
285  {
286    return $this->performanceGoal;
287  }
288  /**
289   * @param string
290   */
291  public function setReservationType($reservationType)
292  {
293    $this->reservationType = $reservationType;
294  }
295  /**
296   * @return string
297   */
298  public function getReservationType()
299  {
300    return $this->reservationType;
301  }
302  /**
303   * @param string
304   */
305  public function setUpdateTime($updateTime)
306  {
307    $this->updateTime = $updateTime;
308  }
309  /**
310   * @return string
311   */
312  public function getUpdateTime()
313  {
314    return $this->updateTime;
315  }
316}
317
318// Adding a class alias for backwards compatibility with the previous class name.
319class_alias(InsertionOrder::class, 'Google_Service_DisplayVideo_InsertionOrder');
320