source: vendor/google/apiclient-services/src/Css/Attributes.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: 16.0 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\Css;
19
20class Attributes extends \Google\Collection
21{
22 protected $collection_key = 'sizeTypes';
23 /**
24 * @var string[]
25 */
26 public $additionalImageLinks;
27 /**
28 * @var bool
29 */
30 public $adult;
31 /**
32 * @var string
33 */
34 public $ageGroup;
35 /**
36 * @var string
37 */
38 public $brand;
39 protected $certificationsType = Certification::class;
40 protected $certificationsDataType = 'array';
41 /**
42 * @var string
43 */
44 public $color;
45 /**
46 * @var string
47 */
48 public $cppAdsRedirect;
49 /**
50 * @var string
51 */
52 public $cppLink;
53 /**
54 * @var string
55 */
56 public $cppMobileLink;
57 /**
58 * @var string
59 */
60 public $customLabel0;
61 /**
62 * @var string
63 */
64 public $customLabel1;
65 /**
66 * @var string
67 */
68 public $customLabel2;
69 /**
70 * @var string
71 */
72 public $customLabel3;
73 /**
74 * @var string
75 */
76 public $customLabel4;
77 /**
78 * @var string
79 */
80 public $description;
81 /**
82 * @var string[]
83 */
84 public $excludedDestinations;
85 /**
86 * @var string
87 */
88 public $expirationDate;
89 /**
90 * @var string
91 */
92 public $gender;
93 /**
94 * @var string
95 */
96 public $googleProductCategory;
97 /**
98 * @var string
99 */
100 public $gtin;
101 /**
102 * @var string
103 */
104 public $headlineOfferCondition;
105 protected $headlineOfferInstallmentType = HeadlineOfferInstallment::class;
106 protected $headlineOfferInstallmentDataType = '';
107 /**
108 * @var string
109 */
110 public $headlineOfferLink;
111 /**
112 * @var string
113 */
114 public $headlineOfferMobileLink;
115 protected $headlineOfferPriceType = Price::class;
116 protected $headlineOfferPriceDataType = '';
117 protected $headlineOfferShippingPriceType = Price::class;
118 protected $headlineOfferShippingPriceDataType = '';
119 protected $headlineOfferSubscriptionCostType = HeadlineOfferSubscriptionCost::class;
120 protected $headlineOfferSubscriptionCostDataType = '';
121 protected $highPriceType = Price::class;
122 protected $highPriceDataType = '';
123 /**
124 * @var string
125 */
126 public $imageLink;
127 /**
128 * @var string[]
129 */
130 public $includedDestinations;
131 /**
132 * @var bool
133 */
134 public $isBundle;
135 /**
136 * @var string
137 */
138 public $itemGroupId;
139 protected $lowPriceType = Price::class;
140 protected $lowPriceDataType = '';
141 /**
142 * @var string
143 */
144 public $material;
145 /**
146 * @var string
147 */
148 public $mpn;
149 /**
150 * @var string
151 */
152 public $multipack;
153 /**
154 * @var string
155 */
156 public $numberOfOffers;
157 /**
158 * @var string
159 */
160 public $pattern;
161 /**
162 * @var string
163 */
164 public $pause;
165 protected $productDetailsType = ProductDetail::class;
166 protected $productDetailsDataType = 'array';
167 protected $productHeightType = ProductDimension::class;
168 protected $productHeightDataType = '';
169 /**
170 * @var string[]
171 */
172 public $productHighlights;
173 protected $productLengthType = ProductDimension::class;
174 protected $productLengthDataType = '';
175 /**
176 * @var string[]
177 */
178 public $productTypes;
179 protected $productWeightType = ProductWeight::class;
180 protected $productWeightDataType = '';
181 protected $productWidthType = ProductDimension::class;
182 protected $productWidthDataType = '';
183 /**
184 * @var string
185 */
186 public $size;
187 /**
188 * @var string
189 */
190 public $sizeSystem;
191 /**
192 * @var string[]
193 */
194 public $sizeTypes;
195 /**
196 * @var string
197 */
198 public $title;
199
200 /**
201 * @param string[]
202 */
203 public function setAdditionalImageLinks($additionalImageLinks)
204 {
205 $this->additionalImageLinks = $additionalImageLinks;
206 }
207 /**
208 * @return string[]
209 */
210 public function getAdditionalImageLinks()
211 {
212 return $this->additionalImageLinks;
213 }
214 /**
215 * @param bool
216 */
217 public function setAdult($adult)
218 {
219 $this->adult = $adult;
220 }
221 /**
222 * @return bool
223 */
224 public function getAdult()
225 {
226 return $this->adult;
227 }
228 /**
229 * @param string
230 */
231 public function setAgeGroup($ageGroup)
232 {
233 $this->ageGroup = $ageGroup;
234 }
235 /**
236 * @return string
237 */
238 public function getAgeGroup()
239 {
240 return $this->ageGroup;
241 }
242 /**
243 * @param string
244 */
245 public function setBrand($brand)
246 {
247 $this->brand = $brand;
248 }
249 /**
250 * @return string
251 */
252 public function getBrand()
253 {
254 return $this->brand;
255 }
256 /**
257 * @param Certification[]
258 */
259 public function setCertifications($certifications)
260 {
261 $this->certifications = $certifications;
262 }
263 /**
264 * @return Certification[]
265 */
266 public function getCertifications()
267 {
268 return $this->certifications;
269 }
270 /**
271 * @param string
272 */
273 public function setColor($color)
274 {
275 $this->color = $color;
276 }
277 /**
278 * @return string
279 */
280 public function getColor()
281 {
282 return $this->color;
283 }
284 /**
285 * @param string
286 */
287 public function setCppAdsRedirect($cppAdsRedirect)
288 {
289 $this->cppAdsRedirect = $cppAdsRedirect;
290 }
291 /**
292 * @return string
293 */
294 public function getCppAdsRedirect()
295 {
296 return $this->cppAdsRedirect;
297 }
298 /**
299 * @param string
300 */
301 public function setCppLink($cppLink)
302 {
303 $this->cppLink = $cppLink;
304 }
305 /**
306 * @return string
307 */
308 public function getCppLink()
309 {
310 return $this->cppLink;
311 }
312 /**
313 * @param string
314 */
315 public function setCppMobileLink($cppMobileLink)
316 {
317 $this->cppMobileLink = $cppMobileLink;
318 }
319 /**
320 * @return string
321 */
322 public function getCppMobileLink()
323 {
324 return $this->cppMobileLink;
325 }
326 /**
327 * @param string
328 */
329 public function setCustomLabel0($customLabel0)
330 {
331 $this->customLabel0 = $customLabel0;
332 }
333 /**
334 * @return string
335 */
336 public function getCustomLabel0()
337 {
338 return $this->customLabel0;
339 }
340 /**
341 * @param string
342 */
343 public function setCustomLabel1($customLabel1)
344 {
345 $this->customLabel1 = $customLabel1;
346 }
347 /**
348 * @return string
349 */
350 public function getCustomLabel1()
351 {
352 return $this->customLabel1;
353 }
354 /**
355 * @param string
356 */
357 public function setCustomLabel2($customLabel2)
358 {
359 $this->customLabel2 = $customLabel2;
360 }
361 /**
362 * @return string
363 */
364 public function getCustomLabel2()
365 {
366 return $this->customLabel2;
367 }
368 /**
369 * @param string
370 */
371 public function setCustomLabel3($customLabel3)
372 {
373 $this->customLabel3 = $customLabel3;
374 }
375 /**
376 * @return string
377 */
378 public function getCustomLabel3()
379 {
380 return $this->customLabel3;
381 }
382 /**
383 * @param string
384 */
385 public function setCustomLabel4($customLabel4)
386 {
387 $this->customLabel4 = $customLabel4;
388 }
389 /**
390 * @return string
391 */
392 public function getCustomLabel4()
393 {
394 return $this->customLabel4;
395 }
396 /**
397 * @param string
398 */
399 public function setDescription($description)
400 {
401 $this->description = $description;
402 }
403 /**
404 * @return string
405 */
406 public function getDescription()
407 {
408 return $this->description;
409 }
410 /**
411 * @param string[]
412 */
413 public function setExcludedDestinations($excludedDestinations)
414 {
415 $this->excludedDestinations = $excludedDestinations;
416 }
417 /**
418 * @return string[]
419 */
420 public function getExcludedDestinations()
421 {
422 return $this->excludedDestinations;
423 }
424 /**
425 * @param string
426 */
427 public function setExpirationDate($expirationDate)
428 {
429 $this->expirationDate = $expirationDate;
430 }
431 /**
432 * @return string
433 */
434 public function getExpirationDate()
435 {
436 return $this->expirationDate;
437 }
438 /**
439 * @param string
440 */
441 public function setGender($gender)
442 {
443 $this->gender = $gender;
444 }
445 /**
446 * @return string
447 */
448 public function getGender()
449 {
450 return $this->gender;
451 }
452 /**
453 * @param string
454 */
455 public function setGoogleProductCategory($googleProductCategory)
456 {
457 $this->googleProductCategory = $googleProductCategory;
458 }
459 /**
460 * @return string
461 */
462 public function getGoogleProductCategory()
463 {
464 return $this->googleProductCategory;
465 }
466 /**
467 * @param string
468 */
469 public function setGtin($gtin)
470 {
471 $this->gtin = $gtin;
472 }
473 /**
474 * @return string
475 */
476 public function getGtin()
477 {
478 return $this->gtin;
479 }
480 /**
481 * @param string
482 */
483 public function setHeadlineOfferCondition($headlineOfferCondition)
484 {
485 $this->headlineOfferCondition = $headlineOfferCondition;
486 }
487 /**
488 * @return string
489 */
490 public function getHeadlineOfferCondition()
491 {
492 return $this->headlineOfferCondition;
493 }
494 /**
495 * @param HeadlineOfferInstallment
496 */
497 public function setHeadlineOfferInstallment(HeadlineOfferInstallment $headlineOfferInstallment)
498 {
499 $this->headlineOfferInstallment = $headlineOfferInstallment;
500 }
501 /**
502 * @return HeadlineOfferInstallment
503 */
504 public function getHeadlineOfferInstallment()
505 {
506 return $this->headlineOfferInstallment;
507 }
508 /**
509 * @param string
510 */
511 public function setHeadlineOfferLink($headlineOfferLink)
512 {
513 $this->headlineOfferLink = $headlineOfferLink;
514 }
515 /**
516 * @return string
517 */
518 public function getHeadlineOfferLink()
519 {
520 return $this->headlineOfferLink;
521 }
522 /**
523 * @param string
524 */
525 public function setHeadlineOfferMobileLink($headlineOfferMobileLink)
526 {
527 $this->headlineOfferMobileLink = $headlineOfferMobileLink;
528 }
529 /**
530 * @return string
531 */
532 public function getHeadlineOfferMobileLink()
533 {
534 return $this->headlineOfferMobileLink;
535 }
536 /**
537 * @param Price
538 */
539 public function setHeadlineOfferPrice(Price $headlineOfferPrice)
540 {
541 $this->headlineOfferPrice = $headlineOfferPrice;
542 }
543 /**
544 * @return Price
545 */
546 public function getHeadlineOfferPrice()
547 {
548 return $this->headlineOfferPrice;
549 }
550 /**
551 * @param Price
552 */
553 public function setHeadlineOfferShippingPrice(Price $headlineOfferShippingPrice)
554 {
555 $this->headlineOfferShippingPrice = $headlineOfferShippingPrice;
556 }
557 /**
558 * @return Price
559 */
560 public function getHeadlineOfferShippingPrice()
561 {
562 return $this->headlineOfferShippingPrice;
563 }
564 /**
565 * @param HeadlineOfferSubscriptionCost
566 */
567 public function setHeadlineOfferSubscriptionCost(HeadlineOfferSubscriptionCost $headlineOfferSubscriptionCost)
568 {
569 $this->headlineOfferSubscriptionCost = $headlineOfferSubscriptionCost;
570 }
571 /**
572 * @return HeadlineOfferSubscriptionCost
573 */
574 public function getHeadlineOfferSubscriptionCost()
575 {
576 return $this->headlineOfferSubscriptionCost;
577 }
578 /**
579 * @param Price
580 */
581 public function setHighPrice(Price $highPrice)
582 {
583 $this->highPrice = $highPrice;
584 }
585 /**
586 * @return Price
587 */
588 public function getHighPrice()
589 {
590 return $this->highPrice;
591 }
592 /**
593 * @param string
594 */
595 public function setImageLink($imageLink)
596 {
597 $this->imageLink = $imageLink;
598 }
599 /**
600 * @return string
601 */
602 public function getImageLink()
603 {
604 return $this->imageLink;
605 }
606 /**
607 * @param string[]
608 */
609 public function setIncludedDestinations($includedDestinations)
610 {
611 $this->includedDestinations = $includedDestinations;
612 }
613 /**
614 * @return string[]
615 */
616 public function getIncludedDestinations()
617 {
618 return $this->includedDestinations;
619 }
620 /**
621 * @param bool
622 */
623 public function setIsBundle($isBundle)
624 {
625 $this->isBundle = $isBundle;
626 }
627 /**
628 * @return bool
629 */
630 public function getIsBundle()
631 {
632 return $this->isBundle;
633 }
634 /**
635 * @param string
636 */
637 public function setItemGroupId($itemGroupId)
638 {
639 $this->itemGroupId = $itemGroupId;
640 }
641 /**
642 * @return string
643 */
644 public function getItemGroupId()
645 {
646 return $this->itemGroupId;
647 }
648 /**
649 * @param Price
650 */
651 public function setLowPrice(Price $lowPrice)
652 {
653 $this->lowPrice = $lowPrice;
654 }
655 /**
656 * @return Price
657 */
658 public function getLowPrice()
659 {
660 return $this->lowPrice;
661 }
662 /**
663 * @param string
664 */
665 public function setMaterial($material)
666 {
667 $this->material = $material;
668 }
669 /**
670 * @return string
671 */
672 public function getMaterial()
673 {
674 return $this->material;
675 }
676 /**
677 * @param string
678 */
679 public function setMpn($mpn)
680 {
681 $this->mpn = $mpn;
682 }
683 /**
684 * @return string
685 */
686 public function getMpn()
687 {
688 return $this->mpn;
689 }
690 /**
691 * @param string
692 */
693 public function setMultipack($multipack)
694 {
695 $this->multipack = $multipack;
696 }
697 /**
698 * @return string
699 */
700 public function getMultipack()
701 {
702 return $this->multipack;
703 }
704 /**
705 * @param string
706 */
707 public function setNumberOfOffers($numberOfOffers)
708 {
709 $this->numberOfOffers = $numberOfOffers;
710 }
711 /**
712 * @return string
713 */
714 public function getNumberOfOffers()
715 {
716 return $this->numberOfOffers;
717 }
718 /**
719 * @param string
720 */
721 public function setPattern($pattern)
722 {
723 $this->pattern = $pattern;
724 }
725 /**
726 * @return string
727 */
728 public function getPattern()
729 {
730 return $this->pattern;
731 }
732 /**
733 * @param string
734 */
735 public function setPause($pause)
736 {
737 $this->pause = $pause;
738 }
739 /**
740 * @return string
741 */
742 public function getPause()
743 {
744 return $this->pause;
745 }
746 /**
747 * @param ProductDetail[]
748 */
749 public function setProductDetails($productDetails)
750 {
751 $this->productDetails = $productDetails;
752 }
753 /**
754 * @return ProductDetail[]
755 */
756 public function getProductDetails()
757 {
758 return $this->productDetails;
759 }
760 /**
761 * @param ProductDimension
762 */
763 public function setProductHeight(ProductDimension $productHeight)
764 {
765 $this->productHeight = $productHeight;
766 }
767 /**
768 * @return ProductDimension
769 */
770 public function getProductHeight()
771 {
772 return $this->productHeight;
773 }
774 /**
775 * @param string[]
776 */
777 public function setProductHighlights($productHighlights)
778 {
779 $this->productHighlights = $productHighlights;
780 }
781 /**
782 * @return string[]
783 */
784 public function getProductHighlights()
785 {
786 return $this->productHighlights;
787 }
788 /**
789 * @param ProductDimension
790 */
791 public function setProductLength(ProductDimension $productLength)
792 {
793 $this->productLength = $productLength;
794 }
795 /**
796 * @return ProductDimension
797 */
798 public function getProductLength()
799 {
800 return $this->productLength;
801 }
802 /**
803 * @param string[]
804 */
805 public function setProductTypes($productTypes)
806 {
807 $this->productTypes = $productTypes;
808 }
809 /**
810 * @return string[]
811 */
812 public function getProductTypes()
813 {
814 return $this->productTypes;
815 }
816 /**
817 * @param ProductWeight
818 */
819 public function setProductWeight(ProductWeight $productWeight)
820 {
821 $this->productWeight = $productWeight;
822 }
823 /**
824 * @return ProductWeight
825 */
826 public function getProductWeight()
827 {
828 return $this->productWeight;
829 }
830 /**
831 * @param ProductDimension
832 */
833 public function setProductWidth(ProductDimension $productWidth)
834 {
835 $this->productWidth = $productWidth;
836 }
837 /**
838 * @return ProductDimension
839 */
840 public function getProductWidth()
841 {
842 return $this->productWidth;
843 }
844 /**
845 * @param string
846 */
847 public function setSize($size)
848 {
849 $this->size = $size;
850 }
851 /**
852 * @return string
853 */
854 public function getSize()
855 {
856 return $this->size;
857 }
858 /**
859 * @param string
860 */
861 public function setSizeSystem($sizeSystem)
862 {
863 $this->sizeSystem = $sizeSystem;
864 }
865 /**
866 * @return string
867 */
868 public function getSizeSystem()
869 {
870 return $this->sizeSystem;
871 }
872 /**
873 * @param string[]
874 */
875 public function setSizeTypes($sizeTypes)
876 {
877 $this->sizeTypes = $sizeTypes;
878 }
879 /**
880 * @return string[]
881 */
882 public function getSizeTypes()
883 {
884 return $this->sizeTypes;
885 }
886 /**
887 * @param string
888 */
889 public function setTitle($title)
890 {
891 $this->title = $title;
892 }
893 /**
894 * @return string
895 */
896 public function getTitle()
897 {
898 return $this->title;
899 }
900}
901
902// Adding a class alias for backwards compatibility with the previous class name.
903class_alias(Attributes::class, 'Google_Service_Css_Attributes');
Note: See TracBrowser for help on using the repository browser.