source: vendor/google/apiclient-services/src/Merchant/BestSellersProductClusterView.php

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

Upload project files

  • Property mode set to 100644
File size: 6.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\Merchant;
19
20class BestSellersProductClusterView extends \Google\Collection
21{
22 protected $collection_key = 'variantGtins';
23 /**
24 * @var string
25 */
26 public $brand;
27 /**
28 * @var string
29 */
30 public $brandInventoryStatus;
31 /**
32 * @var string
33 */
34 public $categoryL1;
35 /**
36 * @var string
37 */
38 public $categoryL2;
39 /**
40 * @var string
41 */
42 public $categoryL3;
43 /**
44 * @var string
45 */
46 public $categoryL4;
47 /**
48 * @var string
49 */
50 public $categoryL5;
51 /**
52 * @var string
53 */
54 public $inventoryStatus;
55 /**
56 * @var string
57 */
58 public $previousRank;
59 /**
60 * @var string
61 */
62 public $previousRelativeDemand;
63 /**
64 * @var string
65 */
66 public $rank;
67 /**
68 * @var string
69 */
70 public $relativeDemand;
71 /**
72 * @var string
73 */
74 public $relativeDemandChange;
75 /**
76 * @var string
77 */
78 public $reportCategoryId;
79 /**
80 * @var string
81 */
82 public $reportCountryCode;
83 protected $reportDateType = Date::class;
84 protected $reportDateDataType = '';
85 /**
86 * @var string
87 */
88 public $reportGranularity;
89 /**
90 * @var string
91 */
92 public $title;
93 /**
94 * @var string[]
95 */
96 public $variantGtins;
97
98 /**
99 * @param string
100 */
101 public function setBrand($brand)
102 {
103 $this->brand = $brand;
104 }
105 /**
106 * @return string
107 */
108 public function getBrand()
109 {
110 return $this->brand;
111 }
112 /**
113 * @param string
114 */
115 public function setBrandInventoryStatus($brandInventoryStatus)
116 {
117 $this->brandInventoryStatus = $brandInventoryStatus;
118 }
119 /**
120 * @return string
121 */
122 public function getBrandInventoryStatus()
123 {
124 return $this->brandInventoryStatus;
125 }
126 /**
127 * @param string
128 */
129 public function setCategoryL1($categoryL1)
130 {
131 $this->categoryL1 = $categoryL1;
132 }
133 /**
134 * @return string
135 */
136 public function getCategoryL1()
137 {
138 return $this->categoryL1;
139 }
140 /**
141 * @param string
142 */
143 public function setCategoryL2($categoryL2)
144 {
145 $this->categoryL2 = $categoryL2;
146 }
147 /**
148 * @return string
149 */
150 public function getCategoryL2()
151 {
152 return $this->categoryL2;
153 }
154 /**
155 * @param string
156 */
157 public function setCategoryL3($categoryL3)
158 {
159 $this->categoryL3 = $categoryL3;
160 }
161 /**
162 * @return string
163 */
164 public function getCategoryL3()
165 {
166 return $this->categoryL3;
167 }
168 /**
169 * @param string
170 */
171 public function setCategoryL4($categoryL4)
172 {
173 $this->categoryL4 = $categoryL4;
174 }
175 /**
176 * @return string
177 */
178 public function getCategoryL4()
179 {
180 return $this->categoryL4;
181 }
182 /**
183 * @param string
184 */
185 public function setCategoryL5($categoryL5)
186 {
187 $this->categoryL5 = $categoryL5;
188 }
189 /**
190 * @return string
191 */
192 public function getCategoryL5()
193 {
194 return $this->categoryL5;
195 }
196 /**
197 * @param string
198 */
199 public function setInventoryStatus($inventoryStatus)
200 {
201 $this->inventoryStatus = $inventoryStatus;
202 }
203 /**
204 * @return string
205 */
206 public function getInventoryStatus()
207 {
208 return $this->inventoryStatus;
209 }
210 /**
211 * @param string
212 */
213 public function setPreviousRank($previousRank)
214 {
215 $this->previousRank = $previousRank;
216 }
217 /**
218 * @return string
219 */
220 public function getPreviousRank()
221 {
222 return $this->previousRank;
223 }
224 /**
225 * @param string
226 */
227 public function setPreviousRelativeDemand($previousRelativeDemand)
228 {
229 $this->previousRelativeDemand = $previousRelativeDemand;
230 }
231 /**
232 * @return string
233 */
234 public function getPreviousRelativeDemand()
235 {
236 return $this->previousRelativeDemand;
237 }
238 /**
239 * @param string
240 */
241 public function setRank($rank)
242 {
243 $this->rank = $rank;
244 }
245 /**
246 * @return string
247 */
248 public function getRank()
249 {
250 return $this->rank;
251 }
252 /**
253 * @param string
254 */
255 public function setRelativeDemand($relativeDemand)
256 {
257 $this->relativeDemand = $relativeDemand;
258 }
259 /**
260 * @return string
261 */
262 public function getRelativeDemand()
263 {
264 return $this->relativeDemand;
265 }
266 /**
267 * @param string
268 */
269 public function setRelativeDemandChange($relativeDemandChange)
270 {
271 $this->relativeDemandChange = $relativeDemandChange;
272 }
273 /**
274 * @return string
275 */
276 public function getRelativeDemandChange()
277 {
278 return $this->relativeDemandChange;
279 }
280 /**
281 * @param string
282 */
283 public function setReportCategoryId($reportCategoryId)
284 {
285 $this->reportCategoryId = $reportCategoryId;
286 }
287 /**
288 * @return string
289 */
290 public function getReportCategoryId()
291 {
292 return $this->reportCategoryId;
293 }
294 /**
295 * @param string
296 */
297 public function setReportCountryCode($reportCountryCode)
298 {
299 $this->reportCountryCode = $reportCountryCode;
300 }
301 /**
302 * @return string
303 */
304 public function getReportCountryCode()
305 {
306 return $this->reportCountryCode;
307 }
308 /**
309 * @param Date
310 */
311 public function setReportDate(Date $reportDate)
312 {
313 $this->reportDate = $reportDate;
314 }
315 /**
316 * @return Date
317 */
318 public function getReportDate()
319 {
320 return $this->reportDate;
321 }
322 /**
323 * @param string
324 */
325 public function setReportGranularity($reportGranularity)
326 {
327 $this->reportGranularity = $reportGranularity;
328 }
329 /**
330 * @return string
331 */
332 public function getReportGranularity()
333 {
334 return $this->reportGranularity;
335 }
336 /**
337 * @param string
338 */
339 public function setTitle($title)
340 {
341 $this->title = $title;
342 }
343 /**
344 * @return string
345 */
346 public function getTitle()
347 {
348 return $this->title;
349 }
350 /**
351 * @param string[]
352 */
353 public function setVariantGtins($variantGtins)
354 {
355 $this->variantGtins = $variantGtins;
356 }
357 /**
358 * @return string[]
359 */
360 public function getVariantGtins()
361 {
362 return $this->variantGtins;
363 }
364}
365
366// Adding a class alias for backwards compatibility with the previous class name.
367class_alias(BestSellersProductClusterView::class, 'Google_Service_Merchant_BestSellersProductClusterView');
Note: See TracBrowser for help on using the repository browser.