source: vendor/google/apiclient-services/src/Walletobjects/OfferClass.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: 15.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 OfferClass extends \Google\Collection
21{
22 protected $collection_key = 'valueAddedModuleData';
23 /**
24 * @var bool
25 */
26 public $allowMultipleUsersPerObject;
27 protected $appLinkDataType = AppLinkData::class;
28 protected $appLinkDataDataType = '';
29 protected $callbackOptionsType = CallbackOptions::class;
30 protected $callbackOptionsDataType = '';
31 protected $classTemplateInfoType = ClassTemplateInfo::class;
32 protected $classTemplateInfoDataType = '';
33 /**
34 * @var string
35 */
36 public $countryCode;
37 /**
38 * @var string
39 */
40 public $details;
41 /**
42 * @var bool
43 */
44 public $enableSmartTap;
45 /**
46 * @var string
47 */
48 public $finePrint;
49 protected $helpUriType = Uri::class;
50 protected $helpUriDataType = '';
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 $localizedDetailsType = LocalizedString::class;
78 protected $localizedDetailsDataType = '';
79 protected $localizedFinePrintType = LocalizedString::class;
80 protected $localizedFinePrintDataType = '';
81 protected $localizedIssuerNameType = LocalizedString::class;
82 protected $localizedIssuerNameDataType = '';
83 protected $localizedProviderType = LocalizedString::class;
84 protected $localizedProviderDataType = '';
85 protected $localizedShortTitleType = LocalizedString::class;
86 protected $localizedShortTitleDataType = '';
87 protected $localizedTitleType = LocalizedString::class;
88 protected $localizedTitleDataType = '';
89 protected $locationsType = LatLongPoint::class;
90 protected $locationsDataType = 'array';
91 protected $merchantLocationsType = MerchantLocation::class;
92 protected $merchantLocationsDataType = 'array';
93 protected $messagesType = Message::class;
94 protected $messagesDataType = 'array';
95 /**
96 * @var string
97 */
98 public $multipleDevicesAndHoldersAllowedStatus;
99 /**
100 * @var string
101 */
102 public $notifyPreference;
103 /**
104 * @var string
105 */
106 public $provider;
107 /**
108 * @var string
109 */
110 public $redemptionChannel;
111 /**
112 * @var string[]
113 */
114 public $redemptionIssuers;
115 protected $reviewType = Review::class;
116 protected $reviewDataType = '';
117 /**
118 * @var string
119 */
120 public $reviewStatus;
121 protected $securityAnimationType = SecurityAnimation::class;
122 protected $securityAnimationDataType = '';
123 /**
124 * @var string
125 */
126 public $shortTitle;
127 protected $textModulesDataType = TextModuleData::class;
128 protected $textModulesDataDataType = 'array';
129 /**
130 * @var string
131 */
132 public $title;
133 protected $titleImageType = Image::class;
134 protected $titleImageDataType = '';
135 protected $valueAddedModuleDataType = ValueAddedModuleData::class;
136 protected $valueAddedModuleDataDataType = 'array';
137 /**
138 * @var string
139 */
140 public $version;
141 /**
142 * @var string
143 */
144 public $viewUnlockRequirement;
145 protected $wideTitleImageType = Image::class;
146 protected $wideTitleImageDataType = '';
147 protected $wordMarkType = Image::class;
148 protected $wordMarkDataType = '';
149
150 /**
151 * @param bool
152 */
153 public function setAllowMultipleUsersPerObject($allowMultipleUsersPerObject)
154 {
155 $this->allowMultipleUsersPerObject = $allowMultipleUsersPerObject;
156 }
157 /**
158 * @return bool
159 */
160 public function getAllowMultipleUsersPerObject()
161 {
162 return $this->allowMultipleUsersPerObject;
163 }
164 /**
165 * @param AppLinkData
166 */
167 public function setAppLinkData(AppLinkData $appLinkData)
168 {
169 $this->appLinkData = $appLinkData;
170 }
171 /**
172 * @return AppLinkData
173 */
174 public function getAppLinkData()
175 {
176 return $this->appLinkData;
177 }
178 /**
179 * @param CallbackOptions
180 */
181 public function setCallbackOptions(CallbackOptions $callbackOptions)
182 {
183 $this->callbackOptions = $callbackOptions;
184 }
185 /**
186 * @return CallbackOptions
187 */
188 public function getCallbackOptions()
189 {
190 return $this->callbackOptions;
191 }
192 /**
193 * @param ClassTemplateInfo
194 */
195 public function setClassTemplateInfo(ClassTemplateInfo $classTemplateInfo)
196 {
197 $this->classTemplateInfo = $classTemplateInfo;
198 }
199 /**
200 * @return ClassTemplateInfo
201 */
202 public function getClassTemplateInfo()
203 {
204 return $this->classTemplateInfo;
205 }
206 /**
207 * @param string
208 */
209 public function setCountryCode($countryCode)
210 {
211 $this->countryCode = $countryCode;
212 }
213 /**
214 * @return string
215 */
216 public function getCountryCode()
217 {
218 return $this->countryCode;
219 }
220 /**
221 * @param string
222 */
223 public function setDetails($details)
224 {
225 $this->details = $details;
226 }
227 /**
228 * @return string
229 */
230 public function getDetails()
231 {
232 return $this->details;
233 }
234 /**
235 * @param bool
236 */
237 public function setEnableSmartTap($enableSmartTap)
238 {
239 $this->enableSmartTap = $enableSmartTap;
240 }
241 /**
242 * @return bool
243 */
244 public function getEnableSmartTap()
245 {
246 return $this->enableSmartTap;
247 }
248 /**
249 * @param string
250 */
251 public function setFinePrint($finePrint)
252 {
253 $this->finePrint = $finePrint;
254 }
255 /**
256 * @return string
257 */
258 public function getFinePrint()
259 {
260 return $this->finePrint;
261 }
262 /**
263 * @param Uri
264 */
265 public function setHelpUri(Uri $helpUri)
266 {
267 $this->helpUri = $helpUri;
268 }
269 /**
270 * @return Uri
271 */
272 public function getHelpUri()
273 {
274 return $this->helpUri;
275 }
276 /**
277 * @param Image
278 */
279 public function setHeroImage(Image $heroImage)
280 {
281 $this->heroImage = $heroImage;
282 }
283 /**
284 * @return Image
285 */
286 public function getHeroImage()
287 {
288 return $this->heroImage;
289 }
290 /**
291 * @param string
292 */
293 public function setHexBackgroundColor($hexBackgroundColor)
294 {
295 $this->hexBackgroundColor = $hexBackgroundColor;
296 }
297 /**
298 * @return string
299 */
300 public function getHexBackgroundColor()
301 {
302 return $this->hexBackgroundColor;
303 }
304 /**
305 * @param Uri
306 */
307 public function setHomepageUri(Uri $homepageUri)
308 {
309 $this->homepageUri = $homepageUri;
310 }
311 /**
312 * @return Uri
313 */
314 public function getHomepageUri()
315 {
316 return $this->homepageUri;
317 }
318 /**
319 * @param string
320 */
321 public function setId($id)
322 {
323 $this->id = $id;
324 }
325 /**
326 * @return string
327 */
328 public function getId()
329 {
330 return $this->id;
331 }
332 /**
333 * @param ImageModuleData[]
334 */
335 public function setImageModulesData($imageModulesData)
336 {
337 $this->imageModulesData = $imageModulesData;
338 }
339 /**
340 * @return ImageModuleData[]
341 */
342 public function getImageModulesData()
343 {
344 return $this->imageModulesData;
345 }
346 /**
347 * @param InfoModuleData
348 */
349 public function setInfoModuleData(InfoModuleData $infoModuleData)
350 {
351 $this->infoModuleData = $infoModuleData;
352 }
353 /**
354 * @return InfoModuleData
355 */
356 public function getInfoModuleData()
357 {
358 return $this->infoModuleData;
359 }
360 /**
361 * @param string
362 */
363 public function setIssuerName($issuerName)
364 {
365 $this->issuerName = $issuerName;
366 }
367 /**
368 * @return string
369 */
370 public function getIssuerName()
371 {
372 return $this->issuerName;
373 }
374 /**
375 * @param string
376 */
377 public function setKind($kind)
378 {
379 $this->kind = $kind;
380 }
381 /**
382 * @return string
383 */
384 public function getKind()
385 {
386 return $this->kind;
387 }
388 /**
389 * @param LinksModuleData
390 */
391 public function setLinksModuleData(LinksModuleData $linksModuleData)
392 {
393 $this->linksModuleData = $linksModuleData;
394 }
395 /**
396 * @return LinksModuleData
397 */
398 public function getLinksModuleData()
399 {
400 return $this->linksModuleData;
401 }
402 /**
403 * @param LocalizedString
404 */
405 public function setLocalizedDetails(LocalizedString $localizedDetails)
406 {
407 $this->localizedDetails = $localizedDetails;
408 }
409 /**
410 * @return LocalizedString
411 */
412 public function getLocalizedDetails()
413 {
414 return $this->localizedDetails;
415 }
416 /**
417 * @param LocalizedString
418 */
419 public function setLocalizedFinePrint(LocalizedString $localizedFinePrint)
420 {
421 $this->localizedFinePrint = $localizedFinePrint;
422 }
423 /**
424 * @return LocalizedString
425 */
426 public function getLocalizedFinePrint()
427 {
428 return $this->localizedFinePrint;
429 }
430 /**
431 * @param LocalizedString
432 */
433 public function setLocalizedIssuerName(LocalizedString $localizedIssuerName)
434 {
435 $this->localizedIssuerName = $localizedIssuerName;
436 }
437 /**
438 * @return LocalizedString
439 */
440 public function getLocalizedIssuerName()
441 {
442 return $this->localizedIssuerName;
443 }
444 /**
445 * @param LocalizedString
446 */
447 public function setLocalizedProvider(LocalizedString $localizedProvider)
448 {
449 $this->localizedProvider = $localizedProvider;
450 }
451 /**
452 * @return LocalizedString
453 */
454 public function getLocalizedProvider()
455 {
456 return $this->localizedProvider;
457 }
458 /**
459 * @param LocalizedString
460 */
461 public function setLocalizedShortTitle(LocalizedString $localizedShortTitle)
462 {
463 $this->localizedShortTitle = $localizedShortTitle;
464 }
465 /**
466 * @return LocalizedString
467 */
468 public function getLocalizedShortTitle()
469 {
470 return $this->localizedShortTitle;
471 }
472 /**
473 * @param LocalizedString
474 */
475 public function setLocalizedTitle(LocalizedString $localizedTitle)
476 {
477 $this->localizedTitle = $localizedTitle;
478 }
479 /**
480 * @return LocalizedString
481 */
482 public function getLocalizedTitle()
483 {
484 return $this->localizedTitle;
485 }
486 /**
487 * @param LatLongPoint[]
488 */
489 public function setLocations($locations)
490 {
491 $this->locations = $locations;
492 }
493 /**
494 * @return LatLongPoint[]
495 */
496 public function getLocations()
497 {
498 return $this->locations;
499 }
500 /**
501 * @param MerchantLocation[]
502 */
503 public function setMerchantLocations($merchantLocations)
504 {
505 $this->merchantLocations = $merchantLocations;
506 }
507 /**
508 * @return MerchantLocation[]
509 */
510 public function getMerchantLocations()
511 {
512 return $this->merchantLocations;
513 }
514 /**
515 * @param Message[]
516 */
517 public function setMessages($messages)
518 {
519 $this->messages = $messages;
520 }
521 /**
522 * @return Message[]
523 */
524 public function getMessages()
525 {
526 return $this->messages;
527 }
528 /**
529 * @param string
530 */
531 public function setMultipleDevicesAndHoldersAllowedStatus($multipleDevicesAndHoldersAllowedStatus)
532 {
533 $this->multipleDevicesAndHoldersAllowedStatus = $multipleDevicesAndHoldersAllowedStatus;
534 }
535 /**
536 * @return string
537 */
538 public function getMultipleDevicesAndHoldersAllowedStatus()
539 {
540 return $this->multipleDevicesAndHoldersAllowedStatus;
541 }
542 /**
543 * @param string
544 */
545 public function setNotifyPreference($notifyPreference)
546 {
547 $this->notifyPreference = $notifyPreference;
548 }
549 /**
550 * @return string
551 */
552 public function getNotifyPreference()
553 {
554 return $this->notifyPreference;
555 }
556 /**
557 * @param string
558 */
559 public function setProvider($provider)
560 {
561 $this->provider = $provider;
562 }
563 /**
564 * @return string
565 */
566 public function getProvider()
567 {
568 return $this->provider;
569 }
570 /**
571 * @param string
572 */
573 public function setRedemptionChannel($redemptionChannel)
574 {
575 $this->redemptionChannel = $redemptionChannel;
576 }
577 /**
578 * @return string
579 */
580 public function getRedemptionChannel()
581 {
582 return $this->redemptionChannel;
583 }
584 /**
585 * @param string[]
586 */
587 public function setRedemptionIssuers($redemptionIssuers)
588 {
589 $this->redemptionIssuers = $redemptionIssuers;
590 }
591 /**
592 * @return string[]
593 */
594 public function getRedemptionIssuers()
595 {
596 return $this->redemptionIssuers;
597 }
598 /**
599 * @param Review
600 */
601 public function setReview(Review $review)
602 {
603 $this->review = $review;
604 }
605 /**
606 * @return Review
607 */
608 public function getReview()
609 {
610 return $this->review;
611 }
612 /**
613 * @param string
614 */
615 public function setReviewStatus($reviewStatus)
616 {
617 $this->reviewStatus = $reviewStatus;
618 }
619 /**
620 * @return string
621 */
622 public function getReviewStatus()
623 {
624 return $this->reviewStatus;
625 }
626 /**
627 * @param SecurityAnimation
628 */
629 public function setSecurityAnimation(SecurityAnimation $securityAnimation)
630 {
631 $this->securityAnimation = $securityAnimation;
632 }
633 /**
634 * @return SecurityAnimation
635 */
636 public function getSecurityAnimation()
637 {
638 return $this->securityAnimation;
639 }
640 /**
641 * @param string
642 */
643 public function setShortTitle($shortTitle)
644 {
645 $this->shortTitle = $shortTitle;
646 }
647 /**
648 * @return string
649 */
650 public function getShortTitle()
651 {
652 return $this->shortTitle;
653 }
654 /**
655 * @param TextModuleData[]
656 */
657 public function setTextModulesData($textModulesData)
658 {
659 $this->textModulesData = $textModulesData;
660 }
661 /**
662 * @return TextModuleData[]
663 */
664 public function getTextModulesData()
665 {
666 return $this->textModulesData;
667 }
668 /**
669 * @param string
670 */
671 public function setTitle($title)
672 {
673 $this->title = $title;
674 }
675 /**
676 * @return string
677 */
678 public function getTitle()
679 {
680 return $this->title;
681 }
682 /**
683 * @param Image
684 */
685 public function setTitleImage(Image $titleImage)
686 {
687 $this->titleImage = $titleImage;
688 }
689 /**
690 * @return Image
691 */
692 public function getTitleImage()
693 {
694 return $this->titleImage;
695 }
696 /**
697 * @param ValueAddedModuleData[]
698 */
699 public function setValueAddedModuleData($valueAddedModuleData)
700 {
701 $this->valueAddedModuleData = $valueAddedModuleData;
702 }
703 /**
704 * @return ValueAddedModuleData[]
705 */
706 public function getValueAddedModuleData()
707 {
708 return $this->valueAddedModuleData;
709 }
710 /**
711 * @param string
712 */
713 public function setVersion($version)
714 {
715 $this->version = $version;
716 }
717 /**
718 * @return string
719 */
720 public function getVersion()
721 {
722 return $this->version;
723 }
724 /**
725 * @param string
726 */
727 public function setViewUnlockRequirement($viewUnlockRequirement)
728 {
729 $this->viewUnlockRequirement = $viewUnlockRequirement;
730 }
731 /**
732 * @return string
733 */
734 public function getViewUnlockRequirement()
735 {
736 return $this->viewUnlockRequirement;
737 }
738 /**
739 * @param Image
740 */
741 public function setWideTitleImage(Image $wideTitleImage)
742 {
743 $this->wideTitleImage = $wideTitleImage;
744 }
745 /**
746 * @return Image
747 */
748 public function getWideTitleImage()
749 {
750 return $this->wideTitleImage;
751 }
752 /**
753 * @param Image
754 */
755 public function setWordMark(Image $wordMark)
756 {
757 $this->wordMark = $wordMark;
758 }
759 /**
760 * @return Image
761 */
762 public function getWordMark()
763 {
764 return $this->wordMark;
765 }
766}
767
768// Adding a class alias for backwards compatibility with the previous class name.
769class_alias(OfferClass::class, 'Google_Service_Walletobjects_OfferClass');
Note: See TracBrowser for help on using the repository browser.