source: vendor/google/apiclient-services/src/Walletobjects/LoyaltyClass.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 17.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\Walletobjects;
19
20class LoyaltyClass extends \Google\Collection
21{
22 protected $collection_key = 'valueAddedModuleData';
23 /**
24 * @var string
25 */
26 public $accountIdLabel;
27 /**
28 * @var string
29 */
30 public $accountNameLabel;
31 /**
32 * @var bool
33 */
34 public $allowMultipleUsersPerObject;
35 protected $appLinkDataType = AppLinkData::class;
36 protected $appLinkDataDataType = '';
37 protected $callbackOptionsType = CallbackOptions::class;
38 protected $callbackOptionsDataType = '';
39 protected $classTemplateInfoType = ClassTemplateInfo::class;
40 protected $classTemplateInfoDataType = '';
41 /**
42 * @var string
43 */
44 public $countryCode;
45 protected $discoverableProgramType = DiscoverableProgram::class;
46 protected $discoverableProgramDataType = '';
47 /**
48 * @var bool
49 */
50 public $enableSmartTap;
51 protected $heroImageType = Image::class;
52 protected $heroImageDataType = '';
53 /**
54 * @var string
55 */
56 public $hexBackgroundColor;
57 protected $homepageUriType = Uri::class;
58 protected $homepageUriDataType = '';
59 /**
60 * @var string
61 */
62 public $id;
63 protected $imageModulesDataType = ImageModuleData::class;
64 protected $imageModulesDataDataType = 'array';
65 protected $infoModuleDataType = InfoModuleData::class;
66 protected $infoModuleDataDataType = '';
67 /**
68 * @var string
69 */
70 public $issuerName;
71 /**
72 * @var string
73 */
74 public $kind;
75 protected $linksModuleDataType = LinksModuleData::class;
76 protected $linksModuleDataDataType = '';
77 protected $localizedAccountIdLabelType = LocalizedString::class;
78 protected $localizedAccountIdLabelDataType = '';
79 protected $localizedAccountNameLabelType = LocalizedString::class;
80 protected $localizedAccountNameLabelDataType = '';
81 protected $localizedIssuerNameType = LocalizedString::class;
82 protected $localizedIssuerNameDataType = '';
83 protected $localizedProgramNameType = LocalizedString::class;
84 protected $localizedProgramNameDataType = '';
85 protected $localizedRewardsTierType = LocalizedString::class;
86 protected $localizedRewardsTierDataType = '';
87 protected $localizedRewardsTierLabelType = LocalizedString::class;
88 protected $localizedRewardsTierLabelDataType = '';
89 protected $localizedSecondaryRewardsTierType = LocalizedString::class;
90 protected $localizedSecondaryRewardsTierDataType = '';
91 protected $localizedSecondaryRewardsTierLabelType = LocalizedString::class;
92 protected $localizedSecondaryRewardsTierLabelDataType = '';
93 protected $locationsType = LatLongPoint::class;
94 protected $locationsDataType = 'array';
95 protected $merchantLocationsType = MerchantLocation::class;
96 protected $merchantLocationsDataType = 'array';
97 protected $messagesType = Message::class;
98 protected $messagesDataType = 'array';
99 /**
100 * @var string
101 */
102 public $multipleDevicesAndHoldersAllowedStatus;
103 /**
104 * @var string
105 */
106 public $notifyPreference;
107 protected $programLogoType = Image::class;
108 protected $programLogoDataType = '';
109 /**
110 * @var string
111 */
112 public $programName;
113 /**
114 * @var string[]
115 */
116 public $redemptionIssuers;
117 protected $reviewType = Review::class;
118 protected $reviewDataType = '';
119 /**
120 * @var string
121 */
122 public $reviewStatus;
123 /**
124 * @var string
125 */
126 public $rewardsTier;
127 /**
128 * @var string
129 */
130 public $rewardsTierLabel;
131 /**
132 * @var string
133 */
134 public $secondaryRewardsTier;
135 /**
136 * @var string
137 */
138 public $secondaryRewardsTierLabel;
139 protected $securityAnimationType = SecurityAnimation::class;
140 protected $securityAnimationDataType = '';
141 protected $textModulesDataType = TextModuleData::class;
142 protected $textModulesDataDataType = 'array';
143 protected $valueAddedModuleDataType = ValueAddedModuleData::class;
144 protected $valueAddedModuleDataDataType = 'array';
145 /**
146 * @var string
147 */
148 public $version;
149 /**
150 * @var string
151 */
152 public $viewUnlockRequirement;
153 protected $wideProgramLogoType = Image::class;
154 protected $wideProgramLogoDataType = '';
155 protected $wordMarkType = Image::class;
156 protected $wordMarkDataType = '';
157
158 /**
159 * @param string
160 */
161 public function setAccountIdLabel($accountIdLabel)
162 {
163 $this->accountIdLabel = $accountIdLabel;
164 }
165 /**
166 * @return string
167 */
168 public function getAccountIdLabel()
169 {
170 return $this->accountIdLabel;
171 }
172 /**
173 * @param string
174 */
175 public function setAccountNameLabel($accountNameLabel)
176 {
177 $this->accountNameLabel = $accountNameLabel;
178 }
179 /**
180 * @return string
181 */
182 public function getAccountNameLabel()
183 {
184 return $this->accountNameLabel;
185 }
186 /**
187 * @param bool
188 */
189 public function setAllowMultipleUsersPerObject($allowMultipleUsersPerObject)
190 {
191 $this->allowMultipleUsersPerObject = $allowMultipleUsersPerObject;
192 }
193 /**
194 * @return bool
195 */
196 public function getAllowMultipleUsersPerObject()
197 {
198 return $this->allowMultipleUsersPerObject;
199 }
200 /**
201 * @param AppLinkData
202 */
203 public function setAppLinkData(AppLinkData $appLinkData)
204 {
205 $this->appLinkData = $appLinkData;
206 }
207 /**
208 * @return AppLinkData
209 */
210 public function getAppLinkData()
211 {
212 return $this->appLinkData;
213 }
214 /**
215 * @param CallbackOptions
216 */
217 public function setCallbackOptions(CallbackOptions $callbackOptions)
218 {
219 $this->callbackOptions = $callbackOptions;
220 }
221 /**
222 * @return CallbackOptions
223 */
224 public function getCallbackOptions()
225 {
226 return $this->callbackOptions;
227 }
228 /**
229 * @param ClassTemplateInfo
230 */
231 public function setClassTemplateInfo(ClassTemplateInfo $classTemplateInfo)
232 {
233 $this->classTemplateInfo = $classTemplateInfo;
234 }
235 /**
236 * @return ClassTemplateInfo
237 */
238 public function getClassTemplateInfo()
239 {
240 return $this->classTemplateInfo;
241 }
242 /**
243 * @param string
244 */
245 public function setCountryCode($countryCode)
246 {
247 $this->countryCode = $countryCode;
248 }
249 /**
250 * @return string
251 */
252 public function getCountryCode()
253 {
254 return $this->countryCode;
255 }
256 /**
257 * @param DiscoverableProgram
258 */
259 public function setDiscoverableProgram(DiscoverableProgram $discoverableProgram)
260 {
261 $this->discoverableProgram = $discoverableProgram;
262 }
263 /**
264 * @return DiscoverableProgram
265 */
266 public function getDiscoverableProgram()
267 {
268 return $this->discoverableProgram;
269 }
270 /**
271 * @param bool
272 */
273 public function setEnableSmartTap($enableSmartTap)
274 {
275 $this->enableSmartTap = $enableSmartTap;
276 }
277 /**
278 * @return bool
279 */
280 public function getEnableSmartTap()
281 {
282 return $this->enableSmartTap;
283 }
284 /**
285 * @param Image
286 */
287 public function setHeroImage(Image $heroImage)
288 {
289 $this->heroImage = $heroImage;
290 }
291 /**
292 * @return Image
293 */
294 public function getHeroImage()
295 {
296 return $this->heroImage;
297 }
298 /**
299 * @param string
300 */
301 public function setHexBackgroundColor($hexBackgroundColor)
302 {
303 $this->hexBackgroundColor = $hexBackgroundColor;
304 }
305 /**
306 * @return string
307 */
308 public function getHexBackgroundColor()
309 {
310 return $this->hexBackgroundColor;
311 }
312 /**
313 * @param Uri
314 */
315 public function setHomepageUri(Uri $homepageUri)
316 {
317 $this->homepageUri = $homepageUri;
318 }
319 /**
320 * @return Uri
321 */
322 public function getHomepageUri()
323 {
324 return $this->homepageUri;
325 }
326 /**
327 * @param string
328 */
329 public function setId($id)
330 {
331 $this->id = $id;
332 }
333 /**
334 * @return string
335 */
336 public function getId()
337 {
338 return $this->id;
339 }
340 /**
341 * @param ImageModuleData[]
342 */
343 public function setImageModulesData($imageModulesData)
344 {
345 $this->imageModulesData = $imageModulesData;
346 }
347 /**
348 * @return ImageModuleData[]
349 */
350 public function getImageModulesData()
351 {
352 return $this->imageModulesData;
353 }
354 /**
355 * @param InfoModuleData
356 */
357 public function setInfoModuleData(InfoModuleData $infoModuleData)
358 {
359 $this->infoModuleData = $infoModuleData;
360 }
361 /**
362 * @return InfoModuleData
363 */
364 public function getInfoModuleData()
365 {
366 return $this->infoModuleData;
367 }
368 /**
369 * @param string
370 */
371 public function setIssuerName($issuerName)
372 {
373 $this->issuerName = $issuerName;
374 }
375 /**
376 * @return string
377 */
378 public function getIssuerName()
379 {
380 return $this->issuerName;
381 }
382 /**
383 * @param string
384 */
385 public function setKind($kind)
386 {
387 $this->kind = $kind;
388 }
389 /**
390 * @return string
391 */
392 public function getKind()
393 {
394 return $this->kind;
395 }
396 /**
397 * @param LinksModuleData
398 */
399 public function setLinksModuleData(LinksModuleData $linksModuleData)
400 {
401 $this->linksModuleData = $linksModuleData;
402 }
403 /**
404 * @return LinksModuleData
405 */
406 public function getLinksModuleData()
407 {
408 return $this->linksModuleData;
409 }
410 /**
411 * @param LocalizedString
412 */
413 public function setLocalizedAccountIdLabel(LocalizedString $localizedAccountIdLabel)
414 {
415 $this->localizedAccountIdLabel = $localizedAccountIdLabel;
416 }
417 /**
418 * @return LocalizedString
419 */
420 public function getLocalizedAccountIdLabel()
421 {
422 return $this->localizedAccountIdLabel;
423 }
424 /**
425 * @param LocalizedString
426 */
427 public function setLocalizedAccountNameLabel(LocalizedString $localizedAccountNameLabel)
428 {
429 $this->localizedAccountNameLabel = $localizedAccountNameLabel;
430 }
431 /**
432 * @return LocalizedString
433 */
434 public function getLocalizedAccountNameLabel()
435 {
436 return $this->localizedAccountNameLabel;
437 }
438 /**
439 * @param LocalizedString
440 */
441 public function setLocalizedIssuerName(LocalizedString $localizedIssuerName)
442 {
443 $this->localizedIssuerName = $localizedIssuerName;
444 }
445 /**
446 * @return LocalizedString
447 */
448 public function getLocalizedIssuerName()
449 {
450 return $this->localizedIssuerName;
451 }
452 /**
453 * @param LocalizedString
454 */
455 public function setLocalizedProgramName(LocalizedString $localizedProgramName)
456 {
457 $this->localizedProgramName = $localizedProgramName;
458 }
459 /**
460 * @return LocalizedString
461 */
462 public function getLocalizedProgramName()
463 {
464 return $this->localizedProgramName;
465 }
466 /**
467 * @param LocalizedString
468 */
469 public function setLocalizedRewardsTier(LocalizedString $localizedRewardsTier)
470 {
471 $this->localizedRewardsTier = $localizedRewardsTier;
472 }
473 /**
474 * @return LocalizedString
475 */
476 public function getLocalizedRewardsTier()
477 {
478 return $this->localizedRewardsTier;
479 }
480 /**
481 * @param LocalizedString
482 */
483 public function setLocalizedRewardsTierLabel(LocalizedString $localizedRewardsTierLabel)
484 {
485 $this->localizedRewardsTierLabel = $localizedRewardsTierLabel;
486 }
487 /**
488 * @return LocalizedString
489 */
490 public function getLocalizedRewardsTierLabel()
491 {
492 return $this->localizedRewardsTierLabel;
493 }
494 /**
495 * @param LocalizedString
496 */
497 public function setLocalizedSecondaryRewardsTier(LocalizedString $localizedSecondaryRewardsTier)
498 {
499 $this->localizedSecondaryRewardsTier = $localizedSecondaryRewardsTier;
500 }
501 /**
502 * @return LocalizedString
503 */
504 public function getLocalizedSecondaryRewardsTier()
505 {
506 return $this->localizedSecondaryRewardsTier;
507 }
508 /**
509 * @param LocalizedString
510 */
511 public function setLocalizedSecondaryRewardsTierLabel(LocalizedString $localizedSecondaryRewardsTierLabel)
512 {
513 $this->localizedSecondaryRewardsTierLabel = $localizedSecondaryRewardsTierLabel;
514 }
515 /**
516 * @return LocalizedString
517 */
518 public function getLocalizedSecondaryRewardsTierLabel()
519 {
520 return $this->localizedSecondaryRewardsTierLabel;
521 }
522 /**
523 * @param LatLongPoint[]
524 */
525 public function setLocations($locations)
526 {
527 $this->locations = $locations;
528 }
529 /**
530 * @return LatLongPoint[]
531 */
532 public function getLocations()
533 {
534 return $this->locations;
535 }
536 /**
537 * @param MerchantLocation[]
538 */
539 public function setMerchantLocations($merchantLocations)
540 {
541 $this->merchantLocations = $merchantLocations;
542 }
543 /**
544 * @return MerchantLocation[]
545 */
546 public function getMerchantLocations()
547 {
548 return $this->merchantLocations;
549 }
550 /**
551 * @param Message[]
552 */
553 public function setMessages($messages)
554 {
555 $this->messages = $messages;
556 }
557 /**
558 * @return Message[]
559 */
560 public function getMessages()
561 {
562 return $this->messages;
563 }
564 /**
565 * @param string
566 */
567 public function setMultipleDevicesAndHoldersAllowedStatus($multipleDevicesAndHoldersAllowedStatus)
568 {
569 $this->multipleDevicesAndHoldersAllowedStatus = $multipleDevicesAndHoldersAllowedStatus;
570 }
571 /**
572 * @return string
573 */
574 public function getMultipleDevicesAndHoldersAllowedStatus()
575 {
576 return $this->multipleDevicesAndHoldersAllowedStatus;
577 }
578 /**
579 * @param string
580 */
581 public function setNotifyPreference($notifyPreference)
582 {
583 $this->notifyPreference = $notifyPreference;
584 }
585 /**
586 * @return string
587 */
588 public function getNotifyPreference()
589 {
590 return $this->notifyPreference;
591 }
592 /**
593 * @param Image
594 */
595 public function setProgramLogo(Image $programLogo)
596 {
597 $this->programLogo = $programLogo;
598 }
599 /**
600 * @return Image
601 */
602 public function getProgramLogo()
603 {
604 return $this->programLogo;
605 }
606 /**
607 * @param string
608 */
609 public function setProgramName($programName)
610 {
611 $this->programName = $programName;
612 }
613 /**
614 * @return string
615 */
616 public function getProgramName()
617 {
618 return $this->programName;
619 }
620 /**
621 * @param string[]
622 */
623 public function setRedemptionIssuers($redemptionIssuers)
624 {
625 $this->redemptionIssuers = $redemptionIssuers;
626 }
627 /**
628 * @return string[]
629 */
630 public function getRedemptionIssuers()
631 {
632 return $this->redemptionIssuers;
633 }
634 /**
635 * @param Review
636 */
637 public function setReview(Review $review)
638 {
639 $this->review = $review;
640 }
641 /**
642 * @return Review
643 */
644 public function getReview()
645 {
646 return $this->review;
647 }
648 /**
649 * @param string
650 */
651 public function setReviewStatus($reviewStatus)
652 {
653 $this->reviewStatus = $reviewStatus;
654 }
655 /**
656 * @return string
657 */
658 public function getReviewStatus()
659 {
660 return $this->reviewStatus;
661 }
662 /**
663 * @param string
664 */
665 public function setRewardsTier($rewardsTier)
666 {
667 $this->rewardsTier = $rewardsTier;
668 }
669 /**
670 * @return string
671 */
672 public function getRewardsTier()
673 {
674 return $this->rewardsTier;
675 }
676 /**
677 * @param string
678 */
679 public function setRewardsTierLabel($rewardsTierLabel)
680 {
681 $this->rewardsTierLabel = $rewardsTierLabel;
682 }
683 /**
684 * @return string
685 */
686 public function getRewardsTierLabel()
687 {
688 return $this->rewardsTierLabel;
689 }
690 /**
691 * @param string
692 */
693 public function setSecondaryRewardsTier($secondaryRewardsTier)
694 {
695 $this->secondaryRewardsTier = $secondaryRewardsTier;
696 }
697 /**
698 * @return string
699 */
700 public function getSecondaryRewardsTier()
701 {
702 return $this->secondaryRewardsTier;
703 }
704 /**
705 * @param string
706 */
707 public function setSecondaryRewardsTierLabel($secondaryRewardsTierLabel)
708 {
709 $this->secondaryRewardsTierLabel = $secondaryRewardsTierLabel;
710 }
711 /**
712 * @return string
713 */
714 public function getSecondaryRewardsTierLabel()
715 {
716 return $this->secondaryRewardsTierLabel;
717 }
718 /**
719 * @param SecurityAnimation
720 */
721 public function setSecurityAnimation(SecurityAnimation $securityAnimation)
722 {
723 $this->securityAnimation = $securityAnimation;
724 }
725 /**
726 * @return SecurityAnimation
727 */
728 public function getSecurityAnimation()
729 {
730 return $this->securityAnimation;
731 }
732 /**
733 * @param TextModuleData[]
734 */
735 public function setTextModulesData($textModulesData)
736 {
737 $this->textModulesData = $textModulesData;
738 }
739 /**
740 * @return TextModuleData[]
741 */
742 public function getTextModulesData()
743 {
744 return $this->textModulesData;
745 }
746 /**
747 * @param ValueAddedModuleData[]
748 */
749 public function setValueAddedModuleData($valueAddedModuleData)
750 {
751 $this->valueAddedModuleData = $valueAddedModuleData;
752 }
753 /**
754 * @return ValueAddedModuleData[]
755 */
756 public function getValueAddedModuleData()
757 {
758 return $this->valueAddedModuleData;
759 }
760 /**
761 * @param string
762 */
763 public function setVersion($version)
764 {
765 $this->version = $version;
766 }
767 /**
768 * @return string
769 */
770 public function getVersion()
771 {
772 return $this->version;
773 }
774 /**
775 * @param string
776 */
777 public function setViewUnlockRequirement($viewUnlockRequirement)
778 {
779 $this->viewUnlockRequirement = $viewUnlockRequirement;
780 }
781 /**
782 * @return string
783 */
784 public function getViewUnlockRequirement()
785 {
786 return $this->viewUnlockRequirement;
787 }
788 /**
789 * @param Image
790 */
791 public function setWideProgramLogo(Image $wideProgramLogo)
792 {
793 $this->wideProgramLogo = $wideProgramLogo;
794 }
795 /**
796 * @return Image
797 */
798 public function getWideProgramLogo()
799 {
800 return $this->wideProgramLogo;
801 }
802 /**
803 * @param Image
804 */
805 public function setWordMark(Image $wordMark)
806 {
807 $this->wordMark = $wordMark;
808 }
809 /**
810 * @return Image
811 */
812 public function getWordMark()
813 {
814 return $this->wordMark;
815 }
816}
817
818// Adding a class alias for backwards compatibility with the previous class name.
819class_alias(LoyaltyClass::class, 'Google_Service_Walletobjects_LoyaltyClass');
Note: See TracBrowser for help on using the repository browser.