source: vendor/google/apiclient-services/src/ShoppingContent/Segments.php

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

Upload project files

  • Property mode set to 100644
File size: 7.1 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\ShoppingContent;
19
20class Segments extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $brand;
26 /**
27 * @var string
28 */
29 public $categoryL1;
30 /**
31 * @var string
32 */
33 public $categoryL2;
34 /**
35 * @var string
36 */
37 public $categoryL3;
38 /**
39 * @var string
40 */
41 public $categoryL4;
42 /**
43 * @var string
44 */
45 public $categoryL5;
46 /**
47 * @var string
48 */
49 public $currencyCode;
50 /**
51 * @var string
52 */
53 public $customLabel0;
54 /**
55 * @var string
56 */
57 public $customLabel1;
58 /**
59 * @var string
60 */
61 public $customLabel2;
62 /**
63 * @var string
64 */
65 public $customLabel3;
66 /**
67 * @var string
68 */
69 public $customLabel4;
70 /**
71 * @var string
72 */
73 public $customerCountryCode;
74 protected $dateType = Date::class;
75 protected $dateDataType = '';
76 /**
77 * @var string
78 */
79 public $offerId;
80 /**
81 * @var string
82 */
83 public $productTypeL1;
84 /**
85 * @var string
86 */
87 public $productTypeL2;
88 /**
89 * @var string
90 */
91 public $productTypeL3;
92 /**
93 * @var string
94 */
95 public $productTypeL4;
96 /**
97 * @var string
98 */
99 public $productTypeL5;
100 /**
101 * @var string
102 */
103 public $program;
104 /**
105 * @var string
106 */
107 public $title;
108 protected $weekType = Date::class;
109 protected $weekDataType = '';
110
111 /**
112 * @param string
113 */
114 public function setBrand($brand)
115 {
116 $this->brand = $brand;
117 }
118 /**
119 * @return string
120 */
121 public function getBrand()
122 {
123 return $this->brand;
124 }
125 /**
126 * @param string
127 */
128 public function setCategoryL1($categoryL1)
129 {
130 $this->categoryL1 = $categoryL1;
131 }
132 /**
133 * @return string
134 */
135 public function getCategoryL1()
136 {
137 return $this->categoryL1;
138 }
139 /**
140 * @param string
141 */
142 public function setCategoryL2($categoryL2)
143 {
144 $this->categoryL2 = $categoryL2;
145 }
146 /**
147 * @return string
148 */
149 public function getCategoryL2()
150 {
151 return $this->categoryL2;
152 }
153 /**
154 * @param string
155 */
156 public function setCategoryL3($categoryL3)
157 {
158 $this->categoryL3 = $categoryL3;
159 }
160 /**
161 * @return string
162 */
163 public function getCategoryL3()
164 {
165 return $this->categoryL3;
166 }
167 /**
168 * @param string
169 */
170 public function setCategoryL4($categoryL4)
171 {
172 $this->categoryL4 = $categoryL4;
173 }
174 /**
175 * @return string
176 */
177 public function getCategoryL4()
178 {
179 return $this->categoryL4;
180 }
181 /**
182 * @param string
183 */
184 public function setCategoryL5($categoryL5)
185 {
186 $this->categoryL5 = $categoryL5;
187 }
188 /**
189 * @return string
190 */
191 public function getCategoryL5()
192 {
193 return $this->categoryL5;
194 }
195 /**
196 * @param string
197 */
198 public function setCurrencyCode($currencyCode)
199 {
200 $this->currencyCode = $currencyCode;
201 }
202 /**
203 * @return string
204 */
205 public function getCurrencyCode()
206 {
207 return $this->currencyCode;
208 }
209 /**
210 * @param string
211 */
212 public function setCustomLabel0($customLabel0)
213 {
214 $this->customLabel0 = $customLabel0;
215 }
216 /**
217 * @return string
218 */
219 public function getCustomLabel0()
220 {
221 return $this->customLabel0;
222 }
223 /**
224 * @param string
225 */
226 public function setCustomLabel1($customLabel1)
227 {
228 $this->customLabel1 = $customLabel1;
229 }
230 /**
231 * @return string
232 */
233 public function getCustomLabel1()
234 {
235 return $this->customLabel1;
236 }
237 /**
238 * @param string
239 */
240 public function setCustomLabel2($customLabel2)
241 {
242 $this->customLabel2 = $customLabel2;
243 }
244 /**
245 * @return string
246 */
247 public function getCustomLabel2()
248 {
249 return $this->customLabel2;
250 }
251 /**
252 * @param string
253 */
254 public function setCustomLabel3($customLabel3)
255 {
256 $this->customLabel3 = $customLabel3;
257 }
258 /**
259 * @return string
260 */
261 public function getCustomLabel3()
262 {
263 return $this->customLabel3;
264 }
265 /**
266 * @param string
267 */
268 public function setCustomLabel4($customLabel4)
269 {
270 $this->customLabel4 = $customLabel4;
271 }
272 /**
273 * @return string
274 */
275 public function getCustomLabel4()
276 {
277 return $this->customLabel4;
278 }
279 /**
280 * @param string
281 */
282 public function setCustomerCountryCode($customerCountryCode)
283 {
284 $this->customerCountryCode = $customerCountryCode;
285 }
286 /**
287 * @return string
288 */
289 public function getCustomerCountryCode()
290 {
291 return $this->customerCountryCode;
292 }
293 /**
294 * @param Date
295 */
296 public function setDate(Date $date)
297 {
298 $this->date = $date;
299 }
300 /**
301 * @return Date
302 */
303 public function getDate()
304 {
305 return $this->date;
306 }
307 /**
308 * @param string
309 */
310 public function setOfferId($offerId)
311 {
312 $this->offerId = $offerId;
313 }
314 /**
315 * @return string
316 */
317 public function getOfferId()
318 {
319 return $this->offerId;
320 }
321 /**
322 * @param string
323 */
324 public function setProductTypeL1($productTypeL1)
325 {
326 $this->productTypeL1 = $productTypeL1;
327 }
328 /**
329 * @return string
330 */
331 public function getProductTypeL1()
332 {
333 return $this->productTypeL1;
334 }
335 /**
336 * @param string
337 */
338 public function setProductTypeL2($productTypeL2)
339 {
340 $this->productTypeL2 = $productTypeL2;
341 }
342 /**
343 * @return string
344 */
345 public function getProductTypeL2()
346 {
347 return $this->productTypeL2;
348 }
349 /**
350 * @param string
351 */
352 public function setProductTypeL3($productTypeL3)
353 {
354 $this->productTypeL3 = $productTypeL3;
355 }
356 /**
357 * @return string
358 */
359 public function getProductTypeL3()
360 {
361 return $this->productTypeL3;
362 }
363 /**
364 * @param string
365 */
366 public function setProductTypeL4($productTypeL4)
367 {
368 $this->productTypeL4 = $productTypeL4;
369 }
370 /**
371 * @return string
372 */
373 public function getProductTypeL4()
374 {
375 return $this->productTypeL4;
376 }
377 /**
378 * @param string
379 */
380 public function setProductTypeL5($productTypeL5)
381 {
382 $this->productTypeL5 = $productTypeL5;
383 }
384 /**
385 * @return string
386 */
387 public function getProductTypeL5()
388 {
389 return $this->productTypeL5;
390 }
391 /**
392 * @param string
393 */
394 public function setProgram($program)
395 {
396 $this->program = $program;
397 }
398 /**
399 * @return string
400 */
401 public function getProgram()
402 {
403 return $this->program;
404 }
405 /**
406 * @param string
407 */
408 public function setTitle($title)
409 {
410 $this->title = $title;
411 }
412 /**
413 * @return string
414 */
415 public function getTitle()
416 {
417 return $this->title;
418 }
419 /**
420 * @param Date
421 */
422 public function setWeek(Date $week)
423 {
424 $this->week = $week;
425 }
426 /**
427 * @return Date
428 */
429 public function getWeek()
430 {
431 return $this->week;
432 }
433}
434
435// Adding a class alias for backwards compatibility with the previous class name.
436class_alias(Segments::class, 'Google_Service_ShoppingContent_Segments');
Note: See TracBrowser for help on using the repository browser.