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 SendRfpRequest extends \Google\Collection
21{
22  protected $collection_key = 'buyerContacts';
23  protected $buyerContactsType = Contact::class;
24  protected $buyerContactsDataType = 'array';
25  /**
26   * @var string
27   */
28  public $client;
29  /**
30   * @var string
31   */
32  public $displayName;
33  protected $estimatedGrossSpendType = Money::class;
34  protected $estimatedGrossSpendDataType = '';
35  /**
36   * @var string
37   */
38  public $flightEndTime;
39  /**
40   * @var string
41   */
42  public $flightStartTime;
43  protected $geoTargetingType = CriteriaTargeting::class;
44  protected $geoTargetingDataType = '';
45  protected $inventorySizeTargetingType = InventorySizeTargeting::class;
46  protected $inventorySizeTargetingDataType = '';
47  /**
48   * @var string
49   */
50  public $note;
51  protected $preferredDealTermsType = PreferredDealTerms::class;
52  protected $preferredDealTermsDataType = '';
53  protected $programmaticGuaranteedTermsType = ProgrammaticGuaranteedTerms::class;
54  protected $programmaticGuaranteedTermsDataType = '';
55  /**
56   * @var string
57   */
58  public $publisherProfile;
59
60  /**
61   * @param Contact[]
62   */
63  public function setBuyerContacts($buyerContacts)
64  {
65    $this->buyerContacts = $buyerContacts;
66  }
67  /**
68   * @return Contact[]
69   */
70  public function getBuyerContacts()
71  {
72    return $this->buyerContacts;
73  }
74  /**
75   * @param string
76   */
77  public function setClient($client)
78  {
79    $this->client = $client;
80  }
81  /**
82   * @return string
83   */
84  public function getClient()
85  {
86    return $this->client;
87  }
88  /**
89   * @param string
90   */
91  public function setDisplayName($displayName)
92  {
93    $this->displayName = $displayName;
94  }
95  /**
96   * @return string
97   */
98  public function getDisplayName()
99  {
100    return $this->displayName;
101  }
102  /**
103   * @param Money
104   */
105  public function setEstimatedGrossSpend(Money $estimatedGrossSpend)
106  {
107    $this->estimatedGrossSpend = $estimatedGrossSpend;
108  }
109  /**
110   * @return Money
111   */
112  public function getEstimatedGrossSpend()
113  {
114    return $this->estimatedGrossSpend;
115  }
116  /**
117   * @param string
118   */
119  public function setFlightEndTime($flightEndTime)
120  {
121    $this->flightEndTime = $flightEndTime;
122  }
123  /**
124   * @return string
125   */
126  public function getFlightEndTime()
127  {
128    return $this->flightEndTime;
129  }
130  /**
131   * @param string
132   */
133  public function setFlightStartTime($flightStartTime)
134  {
135    $this->flightStartTime = $flightStartTime;
136  }
137  /**
138   * @return string
139   */
140  public function getFlightStartTime()
141  {
142    return $this->flightStartTime;
143  }
144  /**
145   * @param CriteriaTargeting
146   */
147  public function setGeoTargeting(CriteriaTargeting $geoTargeting)
148  {
149    $this->geoTargeting = $geoTargeting;
150  }
151  /**
152   * @return CriteriaTargeting
153   */
154  public function getGeoTargeting()
155  {
156    return $this->geoTargeting;
157  }
158  /**
159   * @param InventorySizeTargeting
160   */
161  public function setInventorySizeTargeting(InventorySizeTargeting $inventorySizeTargeting)
162  {
163    $this->inventorySizeTargeting = $inventorySizeTargeting;
164  }
165  /**
166   * @return InventorySizeTargeting
167   */
168  public function getInventorySizeTargeting()
169  {
170    return $this->inventorySizeTargeting;
171  }
172  /**
173   * @param string
174   */
175  public function setNote($note)
176  {
177    $this->note = $note;
178  }
179  /**
180   * @return string
181   */
182  public function getNote()
183  {
184    return $this->note;
185  }
186  /**
187   * @param PreferredDealTerms
188   */
189  public function setPreferredDealTerms(PreferredDealTerms $preferredDealTerms)
190  {
191    $this->preferredDealTerms = $preferredDealTerms;
192  }
193  /**
194   * @return PreferredDealTerms
195   */
196  public function getPreferredDealTerms()
197  {
198    return $this->preferredDealTerms;
199  }
200  /**
201   * @param ProgrammaticGuaranteedTerms
202   */
203  public function setProgrammaticGuaranteedTerms(ProgrammaticGuaranteedTerms $programmaticGuaranteedTerms)
204  {
205    $this->programmaticGuaranteedTerms = $programmaticGuaranteedTerms;
206  }
207  /**
208   * @return ProgrammaticGuaranteedTerms
209   */
210  public function getProgrammaticGuaranteedTerms()
211  {
212    return $this->programmaticGuaranteedTerms;
213  }
214  /**
215   * @param string
216   */
217  public function setPublisherProfile($publisherProfile)
218  {
219    $this->publisherProfile = $publisherProfile;
220  }
221  /**
222   * @return string
223   */
224  public function getPublisherProfile()
225  {
226    return $this->publisherProfile;
227  }
228}
229
230// Adding a class alias for backwards compatibility with the previous class name.
231class_alias(SendRfpRequest::class, 'Google_Service_AuthorizedBuyersMarketplace_SendRfpRequest');
232