source: vendor/google/apiclient-services/src/AuthorizedBuyersMarketplace/Deal.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 3 weeks ago

Upload project files

  • Property mode set to 100644
File size: 8.4 KB
Line 
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\AuthorizedBuyersMarketplace;
19
20class Deal extends \Google\Collection
21{
22 protected $collection_key = 'eligibleSeatIds';
23 /**
24 * @var string
25 */
26 public $billedBuyer;
27 /**
28 * @var string
29 */
30 public $buyer;
31 /**
32 * @var string
33 */
34 public $client;
35 /**
36 * @var string
37 */
38 public $createTime;
39 protected $creativeRequirementsType = CreativeRequirements::class;
40 protected $creativeRequirementsDataType = '';
41 /**
42 * @var string
43 */
44 public $dealType;
45 protected $deliveryControlType = DeliveryControl::class;
46 protected $deliveryControlDataType = '';
47 /**
48 * @var string
49 */
50 public $description;
51 /**
52 * @var string
53 */
54 public $displayName;
55 /**
56 * @var string[]
57 */
58 public $eligibleSeatIds;
59 protected $estimatedGrossSpendType = Money::class;
60 protected $estimatedGrossSpendDataType = '';
61 /**
62 * @var string
63 */
64 public $flightEndTime;
65 /**
66 * @var string
67 */
68 public $flightStartTime;
69 protected $mediaPlannerType = MediaPlanner::class;
70 protected $mediaPlannerDataType = '';
71 /**
72 * @var string
73 */
74 public $name;
75 protected $preferredDealTermsType = PreferredDealTerms::class;
76 protected $preferredDealTermsDataType = '';
77 protected $privateAuctionTermsType = PrivateAuctionTerms::class;
78 protected $privateAuctionTermsDataType = '';
79 protected $programmaticGuaranteedTermsType = ProgrammaticGuaranteedTerms::class;
80 protected $programmaticGuaranteedTermsDataType = '';
81 /**
82 * @var string
83 */
84 public $proposalRevision;
85 /**
86 * @var string
87 */
88 public $publisherProfile;
89 protected $sellerTimeZoneType = TimeZone::class;
90 protected $sellerTimeZoneDataType = '';
91 protected $targetingType = MarketplaceTargeting::class;
92 protected $targetingDataType = '';
93 /**
94 * @var string
95 */
96 public $updateTime;
97
98 /**
99 * @param string
100 */
101 public function setBilledBuyer($billedBuyer)
102 {
103 $this->billedBuyer = $billedBuyer;
104 }
105 /**
106 * @return string
107 */
108 public function getBilledBuyer()
109 {
110 return $this->billedBuyer;
111 }
112 /**
113 * @param string
114 */
115 public function setBuyer($buyer)
116 {
117 $this->buyer = $buyer;
118 }
119 /**
120 * @return string
121 */
122 public function getBuyer()
123 {
124 return $this->buyer;
125 }
126 /**
127 * @param string
128 */
129 public function setClient($client)
130 {
131 $this->client = $client;
132 }
133 /**
134 * @return string
135 */
136 public function getClient()
137 {
138 return $this->client;
139 }
140 /**
141 * @param string
142 */
143 public function setCreateTime($createTime)
144 {
145 $this->createTime = $createTime;
146 }
147 /**
148 * @return string
149 */
150 public function getCreateTime()
151 {
152 return $this->createTime;
153 }
154 /**
155 * @param CreativeRequirements
156 */
157 public function setCreativeRequirements(CreativeRequirements $creativeRequirements)
158 {
159 $this->creativeRequirements = $creativeRequirements;
160 }
161 /**
162 * @return CreativeRequirements
163 */
164 public function getCreativeRequirements()
165 {
166 return $this->creativeRequirements;
167 }
168 /**
169 * @param string
170 */
171 public function setDealType($dealType)
172 {
173 $this->dealType = $dealType;
174 }
175 /**
176 * @return string
177 */
178 public function getDealType()
179 {
180 return $this->dealType;
181 }
182 /**
183 * @param DeliveryControl
184 */
185 public function setDeliveryControl(DeliveryControl $deliveryControl)
186 {
187 $this->deliveryControl = $deliveryControl;
188 }
189 /**
190 * @return DeliveryControl
191 */
192 public function getDeliveryControl()
193 {
194 return $this->deliveryControl;
195 }
196 /**
197 * @param string
198 */
199 public function setDescription($description)
200 {
201 $this->description = $description;
202 }
203 /**
204 * @return string
205 */
206 public function getDescription()
207 {
208 return $this->description;
209 }
210 /**
211 * @param string
212 */
213 public function setDisplayName($displayName)
214 {
215 $this->displayName = $displayName;
216 }
217 /**
218 * @return string
219 */
220 public function getDisplayName()
221 {
222 return $this->displayName;
223 }
224 /**
225 * @param string[]
226 */
227 public function setEligibleSeatIds($eligibleSeatIds)
228 {
229 $this->eligibleSeatIds = $eligibleSeatIds;
230 }
231 /**
232 * @return string[]
233 */
234 public function getEligibleSeatIds()
235 {
236 return $this->eligibleSeatIds;
237 }
238 /**
239 * @param Money
240 */
241 public function setEstimatedGrossSpend(Money $estimatedGrossSpend)
242 {
243 $this->estimatedGrossSpend = $estimatedGrossSpend;
244 }
245 /**
246 * @return Money
247 */
248 public function getEstimatedGrossSpend()
249 {
250 return $this->estimatedGrossSpend;
251 }
252 /**
253 * @param string
254 */
255 public function setFlightEndTime($flightEndTime)
256 {
257 $this->flightEndTime = $flightEndTime;
258 }
259 /**
260 * @return string
261 */
262 public function getFlightEndTime()
263 {
264 return $this->flightEndTime;
265 }
266 /**
267 * @param string
268 */
269 public function setFlightStartTime($flightStartTime)
270 {
271 $this->flightStartTime = $flightStartTime;
272 }
273 /**
274 * @return string
275 */
276 public function getFlightStartTime()
277 {
278 return $this->flightStartTime;
279 }
280 /**
281 * @param MediaPlanner
282 */
283 public function setMediaPlanner(MediaPlanner $mediaPlanner)
284 {
285 $this->mediaPlanner = $mediaPlanner;
286 }
287 /**
288 * @return MediaPlanner
289 */
290 public function getMediaPlanner()
291 {
292 return $this->mediaPlanner;
293 }
294 /**
295 * @param string
296 */
297 public function setName($name)
298 {
299 $this->name = $name;
300 }
301 /**
302 * @return string
303 */
304 public function getName()
305 {
306 return $this->name;
307 }
308 /**
309 * @param PreferredDealTerms
310 */
311 public function setPreferredDealTerms(PreferredDealTerms $preferredDealTerms)
312 {
313 $this->preferredDealTerms = $preferredDealTerms;
314 }
315 /**
316 * @return PreferredDealTerms
317 */
318 public function getPreferredDealTerms()
319 {
320 return $this->preferredDealTerms;
321 }
322 /**
323 * @param PrivateAuctionTerms
324 */
325 public function setPrivateAuctionTerms(PrivateAuctionTerms $privateAuctionTerms)
326 {
327 $this->privateAuctionTerms = $privateAuctionTerms;
328 }
329 /**
330 * @return PrivateAuctionTerms
331 */
332 public function getPrivateAuctionTerms()
333 {
334 return $this->privateAuctionTerms;
335 }
336 /**
337 * @param ProgrammaticGuaranteedTerms
338 */
339 public function setProgrammaticGuaranteedTerms(ProgrammaticGuaranteedTerms $programmaticGuaranteedTerms)
340 {
341 $this->programmaticGuaranteedTerms = $programmaticGuaranteedTerms;
342 }
343 /**
344 * @return ProgrammaticGuaranteedTerms
345 */
346 public function getProgrammaticGuaranteedTerms()
347 {
348 return $this->programmaticGuaranteedTerms;
349 }
350 /**
351 * @param string
352 */
353 public function setProposalRevision($proposalRevision)
354 {
355 $this->proposalRevision = $proposalRevision;
356 }
357 /**
358 * @return string
359 */
360 public function getProposalRevision()
361 {
362 return $this->proposalRevision;
363 }
364 /**
365 * @param string
366 */
367 public function setPublisherProfile($publisherProfile)
368 {
369 $this->publisherProfile = $publisherProfile;
370 }
371 /**
372 * @return string
373 */
374 public function getPublisherProfile()
375 {
376 return $this->publisherProfile;
377 }
378 /**
379 * @param TimeZone
380 */
381 public function setSellerTimeZone(TimeZone $sellerTimeZone)
382 {
383 $this->sellerTimeZone = $sellerTimeZone;
384 }
385 /**
386 * @return TimeZone
387 */
388 public function getSellerTimeZone()
389 {
390 return $this->sellerTimeZone;
391 }
392 /**
393 * @param MarketplaceTargeting
394 */
395 public function setTargeting(MarketplaceTargeting $targeting)
396 {
397 $this->targeting = $targeting;
398 }
399 /**
400 * @return MarketplaceTargeting
401 */
402 public function getTargeting()
403 {
404 return $this->targeting;
405 }
406 /**
407 * @param string
408 */
409 public function setUpdateTime($updateTime)
410 {
411 $this->updateTime = $updateTime;
412 }
413 /**
414 * @return string
415 */
416 public function getUpdateTime()
417 {
418 return $this->updateTime;
419 }
420}
421
422// Adding a class alias for backwards compatibility with the previous class name.
423class_alias(Deal::class, 'Google_Service_AuthorizedBuyersMarketplace_Deal');
Note: See TracBrowser for help on using the repository browser.