source: vendor/google/apiclient-services/src/Merchant/PriceCompetitivenessProductView.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 5.5 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\Merchant;
19
20class PriceCompetitivenessProductView extends \Google\Model
21{
22 protected $benchmarkPriceType = Price::class;
23 protected $benchmarkPriceDataType = '';
24 /**
25 * @var string
26 */
27 public $brand;
28 /**
29 * @var string
30 */
31 public $categoryL1;
32 /**
33 * @var string
34 */
35 public $categoryL2;
36 /**
37 * @var string
38 */
39 public $categoryL3;
40 /**
41 * @var string
42 */
43 public $categoryL4;
44 /**
45 * @var string
46 */
47 public $categoryL5;
48 /**
49 * @var string
50 */
51 public $id;
52 /**
53 * @var string
54 */
55 public $offerId;
56 protected $priceType = Price::class;
57 protected $priceDataType = '';
58 /**
59 * @var string
60 */
61 public $productTypeL1;
62 /**
63 * @var string
64 */
65 public $productTypeL2;
66 /**
67 * @var string
68 */
69 public $productTypeL3;
70 /**
71 * @var string
72 */
73 public $productTypeL4;
74 /**
75 * @var string
76 */
77 public $productTypeL5;
78 /**
79 * @var string
80 */
81 public $reportCountryCode;
82 /**
83 * @var string
84 */
85 public $title;
86
87 /**
88 * @param Price
89 */
90 public function setBenchmarkPrice(Price $benchmarkPrice)
91 {
92 $this->benchmarkPrice = $benchmarkPrice;
93 }
94 /**
95 * @return Price
96 */
97 public function getBenchmarkPrice()
98 {
99 return $this->benchmarkPrice;
100 }
101 /**
102 * @param string
103 */
104 public function setBrand($brand)
105 {
106 $this->brand = $brand;
107 }
108 /**
109 * @return string
110 */
111 public function getBrand()
112 {
113 return $this->brand;
114 }
115 /**
116 * @param string
117 */
118 public function setCategoryL1($categoryL1)
119 {
120 $this->categoryL1 = $categoryL1;
121 }
122 /**
123 * @return string
124 */
125 public function getCategoryL1()
126 {
127 return $this->categoryL1;
128 }
129 /**
130 * @param string
131 */
132 public function setCategoryL2($categoryL2)
133 {
134 $this->categoryL2 = $categoryL2;
135 }
136 /**
137 * @return string
138 */
139 public function getCategoryL2()
140 {
141 return $this->categoryL2;
142 }
143 /**
144 * @param string
145 */
146 public function setCategoryL3($categoryL3)
147 {
148 $this->categoryL3 = $categoryL3;
149 }
150 /**
151 * @return string
152 */
153 public function getCategoryL3()
154 {
155 return $this->categoryL3;
156 }
157 /**
158 * @param string
159 */
160 public function setCategoryL4($categoryL4)
161 {
162 $this->categoryL4 = $categoryL4;
163 }
164 /**
165 * @return string
166 */
167 public function getCategoryL4()
168 {
169 return $this->categoryL4;
170 }
171 /**
172 * @param string
173 */
174 public function setCategoryL5($categoryL5)
175 {
176 $this->categoryL5 = $categoryL5;
177 }
178 /**
179 * @return string
180 */
181 public function getCategoryL5()
182 {
183 return $this->categoryL5;
184 }
185 /**
186 * @param string
187 */
188 public function setId($id)
189 {
190 $this->id = $id;
191 }
192 /**
193 * @return string
194 */
195 public function getId()
196 {
197 return $this->id;
198 }
199 /**
200 * @param string
201 */
202 public function setOfferId($offerId)
203 {
204 $this->offerId = $offerId;
205 }
206 /**
207 * @return string
208 */
209 public function getOfferId()
210 {
211 return $this->offerId;
212 }
213 /**
214 * @param Price
215 */
216 public function setPrice(Price $price)
217 {
218 $this->price = $price;
219 }
220 /**
221 * @return Price
222 */
223 public function getPrice()
224 {
225 return $this->price;
226 }
227 /**
228 * @param string
229 */
230 public function setProductTypeL1($productTypeL1)
231 {
232 $this->productTypeL1 = $productTypeL1;
233 }
234 /**
235 * @return string
236 */
237 public function getProductTypeL1()
238 {
239 return $this->productTypeL1;
240 }
241 /**
242 * @param string
243 */
244 public function setProductTypeL2($productTypeL2)
245 {
246 $this->productTypeL2 = $productTypeL2;
247 }
248 /**
249 * @return string
250 */
251 public function getProductTypeL2()
252 {
253 return $this->productTypeL2;
254 }
255 /**
256 * @param string
257 */
258 public function setProductTypeL3($productTypeL3)
259 {
260 $this->productTypeL3 = $productTypeL3;
261 }
262 /**
263 * @return string
264 */
265 public function getProductTypeL3()
266 {
267 return $this->productTypeL3;
268 }
269 /**
270 * @param string
271 */
272 public function setProductTypeL4($productTypeL4)
273 {
274 $this->productTypeL4 = $productTypeL4;
275 }
276 /**
277 * @return string
278 */
279 public function getProductTypeL4()
280 {
281 return $this->productTypeL4;
282 }
283 /**
284 * @param string
285 */
286 public function setProductTypeL5($productTypeL5)
287 {
288 $this->productTypeL5 = $productTypeL5;
289 }
290 /**
291 * @return string
292 */
293 public function getProductTypeL5()
294 {
295 return $this->productTypeL5;
296 }
297 /**
298 * @param string
299 */
300 public function setReportCountryCode($reportCountryCode)
301 {
302 $this->reportCountryCode = $reportCountryCode;
303 }
304 /**
305 * @return string
306 */
307 public function getReportCountryCode()
308 {
309 return $this->reportCountryCode;
310 }
311 /**
312 * @param string
313 */
314 public function setTitle($title)
315 {
316 $this->title = $title;
317 }
318 /**
319 * @return string
320 */
321 public function getTitle()
322 {
323 return $this->title;
324 }
325}
326
327// Adding a class alias for backwards compatibility with the previous class name.
328class_alias(PriceCompetitivenessProductView::class, 'Google_Service_Merchant_PriceCompetitivenessProductView');
Note: See TracBrowser for help on using the repository browser.