[f9c482b] | 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 |
|
---|
| 18 | namespace Google\Service\Walletobjects;
|
---|
| 19 |
|
---|
| 20 | class Issuer extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | protected $callbackOptionsType = CallbackOptions::class;
|
---|
| 23 | protected $callbackOptionsDataType = '';
|
---|
| 24 | protected $contactInfoType = IssuerContactInfo::class;
|
---|
| 25 | protected $contactInfoDataType = '';
|
---|
| 26 | /**
|
---|
| 27 | * @var string
|
---|
| 28 | */
|
---|
| 29 | public $homepageUrl;
|
---|
| 30 | /**
|
---|
| 31 | * @var string
|
---|
| 32 | */
|
---|
| 33 | public $issuerId;
|
---|
| 34 | /**
|
---|
| 35 | * @var string
|
---|
| 36 | */
|
---|
| 37 | public $name;
|
---|
| 38 | protected $smartTapMerchantDataType = SmartTapMerchantData::class;
|
---|
| 39 | protected $smartTapMerchantDataDataType = '';
|
---|
| 40 |
|
---|
| 41 | /**
|
---|
| 42 | * @param CallbackOptions
|
---|
| 43 | */
|
---|
| 44 | public function setCallbackOptions(CallbackOptions $callbackOptions)
|
---|
| 45 | {
|
---|
| 46 | $this->callbackOptions = $callbackOptions;
|
---|
| 47 | }
|
---|
| 48 | /**
|
---|
| 49 | * @return CallbackOptions
|
---|
| 50 | */
|
---|
| 51 | public function getCallbackOptions()
|
---|
| 52 | {
|
---|
| 53 | return $this->callbackOptions;
|
---|
| 54 | }
|
---|
| 55 | /**
|
---|
| 56 | * @param IssuerContactInfo
|
---|
| 57 | */
|
---|
| 58 | public function setContactInfo(IssuerContactInfo $contactInfo)
|
---|
| 59 | {
|
---|
| 60 | $this->contactInfo = $contactInfo;
|
---|
| 61 | }
|
---|
| 62 | /**
|
---|
| 63 | * @return IssuerContactInfo
|
---|
| 64 | */
|
---|
| 65 | public function getContactInfo()
|
---|
| 66 | {
|
---|
| 67 | return $this->contactInfo;
|
---|
| 68 | }
|
---|
| 69 | /**
|
---|
| 70 | * @param string
|
---|
| 71 | */
|
---|
| 72 | public function setHomepageUrl($homepageUrl)
|
---|
| 73 | {
|
---|
| 74 | $this->homepageUrl = $homepageUrl;
|
---|
| 75 | }
|
---|
| 76 | /**
|
---|
| 77 | * @return string
|
---|
| 78 | */
|
---|
| 79 | public function getHomepageUrl()
|
---|
| 80 | {
|
---|
| 81 | return $this->homepageUrl;
|
---|
| 82 | }
|
---|
| 83 | /**
|
---|
| 84 | * @param string
|
---|
| 85 | */
|
---|
| 86 | public function setIssuerId($issuerId)
|
---|
| 87 | {
|
---|
| 88 | $this->issuerId = $issuerId;
|
---|
| 89 | }
|
---|
| 90 | /**
|
---|
| 91 | * @return string
|
---|
| 92 | */
|
---|
| 93 | public function getIssuerId()
|
---|
| 94 | {
|
---|
| 95 | return $this->issuerId;
|
---|
| 96 | }
|
---|
| 97 | /**
|
---|
| 98 | * @param string
|
---|
| 99 | */
|
---|
| 100 | public function setName($name)
|
---|
| 101 | {
|
---|
| 102 | $this->name = $name;
|
---|
| 103 | }
|
---|
| 104 | /**
|
---|
| 105 | * @return string
|
---|
| 106 | */
|
---|
| 107 | public function getName()
|
---|
| 108 | {
|
---|
| 109 | return $this->name;
|
---|
| 110 | }
|
---|
| 111 | /**
|
---|
| 112 | * @param SmartTapMerchantData
|
---|
| 113 | */
|
---|
| 114 | public function setSmartTapMerchantData(SmartTapMerchantData $smartTapMerchantData)
|
---|
| 115 | {
|
---|
| 116 | $this->smartTapMerchantData = $smartTapMerchantData;
|
---|
| 117 | }
|
---|
| 118 | /**
|
---|
| 119 | * @return SmartTapMerchantData
|
---|
| 120 | */
|
---|
| 121 | public function getSmartTapMerchantData()
|
---|
| 122 | {
|
---|
| 123 | return $this->smartTapMerchantData;
|
---|
| 124 | }
|
---|
| 125 | }
|
---|
| 126 |
|
---|
| 127 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 128 | class_alias(Issuer::class, 'Google_Service_Walletobjects_Issuer');
|
---|