[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\FirebaseDynamicLinks;
|
---|
| 19 |
|
---|
| 20 | class DynamicLinkInfo extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | protected $analyticsInfoType = AnalyticsInfo::class;
|
---|
| 23 | protected $analyticsInfoDataType = '';
|
---|
| 24 | protected $androidInfoType = AndroidInfo::class;
|
---|
| 25 | protected $androidInfoDataType = '';
|
---|
| 26 | protected $desktopInfoType = DesktopInfo::class;
|
---|
| 27 | protected $desktopInfoDataType = '';
|
---|
| 28 | /**
|
---|
| 29 | * @var string
|
---|
| 30 | */
|
---|
| 31 | public $domainUriPrefix;
|
---|
| 32 | /**
|
---|
| 33 | * @var string
|
---|
| 34 | */
|
---|
| 35 | public $dynamicLinkDomain;
|
---|
| 36 | protected $iosInfoType = IosInfo::class;
|
---|
| 37 | protected $iosInfoDataType = '';
|
---|
| 38 | /**
|
---|
| 39 | * @var string
|
---|
| 40 | */
|
---|
| 41 | public $link;
|
---|
| 42 | protected $navigationInfoType = NavigationInfo::class;
|
---|
| 43 | protected $navigationInfoDataType = '';
|
---|
| 44 | protected $socialMetaTagInfoType = SocialMetaTagInfo::class;
|
---|
| 45 | protected $socialMetaTagInfoDataType = '';
|
---|
| 46 |
|
---|
| 47 | /**
|
---|
| 48 | * @param AnalyticsInfo
|
---|
| 49 | */
|
---|
| 50 | public function setAnalyticsInfo(AnalyticsInfo $analyticsInfo)
|
---|
| 51 | {
|
---|
| 52 | $this->analyticsInfo = $analyticsInfo;
|
---|
| 53 | }
|
---|
| 54 | /**
|
---|
| 55 | * @return AnalyticsInfo
|
---|
| 56 | */
|
---|
| 57 | public function getAnalyticsInfo()
|
---|
| 58 | {
|
---|
| 59 | return $this->analyticsInfo;
|
---|
| 60 | }
|
---|
| 61 | /**
|
---|
| 62 | * @param AndroidInfo
|
---|
| 63 | */
|
---|
| 64 | public function setAndroidInfo(AndroidInfo $androidInfo)
|
---|
| 65 | {
|
---|
| 66 | $this->androidInfo = $androidInfo;
|
---|
| 67 | }
|
---|
| 68 | /**
|
---|
| 69 | * @return AndroidInfo
|
---|
| 70 | */
|
---|
| 71 | public function getAndroidInfo()
|
---|
| 72 | {
|
---|
| 73 | return $this->androidInfo;
|
---|
| 74 | }
|
---|
| 75 | /**
|
---|
| 76 | * @param DesktopInfo
|
---|
| 77 | */
|
---|
| 78 | public function setDesktopInfo(DesktopInfo $desktopInfo)
|
---|
| 79 | {
|
---|
| 80 | $this->desktopInfo = $desktopInfo;
|
---|
| 81 | }
|
---|
| 82 | /**
|
---|
| 83 | * @return DesktopInfo
|
---|
| 84 | */
|
---|
| 85 | public function getDesktopInfo()
|
---|
| 86 | {
|
---|
| 87 | return $this->desktopInfo;
|
---|
| 88 | }
|
---|
| 89 | /**
|
---|
| 90 | * @param string
|
---|
| 91 | */
|
---|
| 92 | public function setDomainUriPrefix($domainUriPrefix)
|
---|
| 93 | {
|
---|
| 94 | $this->domainUriPrefix = $domainUriPrefix;
|
---|
| 95 | }
|
---|
| 96 | /**
|
---|
| 97 | * @return string
|
---|
| 98 | */
|
---|
| 99 | public function getDomainUriPrefix()
|
---|
| 100 | {
|
---|
| 101 | return $this->domainUriPrefix;
|
---|
| 102 | }
|
---|
| 103 | /**
|
---|
| 104 | * @param string
|
---|
| 105 | */
|
---|
| 106 | public function setDynamicLinkDomain($dynamicLinkDomain)
|
---|
| 107 | {
|
---|
| 108 | $this->dynamicLinkDomain = $dynamicLinkDomain;
|
---|
| 109 | }
|
---|
| 110 | /**
|
---|
| 111 | * @return string
|
---|
| 112 | */
|
---|
| 113 | public function getDynamicLinkDomain()
|
---|
| 114 | {
|
---|
| 115 | return $this->dynamicLinkDomain;
|
---|
| 116 | }
|
---|
| 117 | /**
|
---|
| 118 | * @param IosInfo
|
---|
| 119 | */
|
---|
| 120 | public function setIosInfo(IosInfo $iosInfo)
|
---|
| 121 | {
|
---|
| 122 | $this->iosInfo = $iosInfo;
|
---|
| 123 | }
|
---|
| 124 | /**
|
---|
| 125 | * @return IosInfo
|
---|
| 126 | */
|
---|
| 127 | public function getIosInfo()
|
---|
| 128 | {
|
---|
| 129 | return $this->iosInfo;
|
---|
| 130 | }
|
---|
| 131 | /**
|
---|
| 132 | * @param string
|
---|
| 133 | */
|
---|
| 134 | public function setLink($link)
|
---|
| 135 | {
|
---|
| 136 | $this->link = $link;
|
---|
| 137 | }
|
---|
| 138 | /**
|
---|
| 139 | * @return string
|
---|
| 140 | */
|
---|
| 141 | public function getLink()
|
---|
| 142 | {
|
---|
| 143 | return $this->link;
|
---|
| 144 | }
|
---|
| 145 | /**
|
---|
| 146 | * @param NavigationInfo
|
---|
| 147 | */
|
---|
| 148 | public function setNavigationInfo(NavigationInfo $navigationInfo)
|
---|
| 149 | {
|
---|
| 150 | $this->navigationInfo = $navigationInfo;
|
---|
| 151 | }
|
---|
| 152 | /**
|
---|
| 153 | * @return NavigationInfo
|
---|
| 154 | */
|
---|
| 155 | public function getNavigationInfo()
|
---|
| 156 | {
|
---|
| 157 | return $this->navigationInfo;
|
---|
| 158 | }
|
---|
| 159 | /**
|
---|
| 160 | * @param SocialMetaTagInfo
|
---|
| 161 | */
|
---|
| 162 | public function setSocialMetaTagInfo(SocialMetaTagInfo $socialMetaTagInfo)
|
---|
| 163 | {
|
---|
| 164 | $this->socialMetaTagInfo = $socialMetaTagInfo;
|
---|
| 165 | }
|
---|
| 166 | /**
|
---|
| 167 | * @return SocialMetaTagInfo
|
---|
| 168 | */
|
---|
| 169 | public function getSocialMetaTagInfo()
|
---|
| 170 | {
|
---|
| 171 | return $this->socialMetaTagInfo;
|
---|
| 172 | }
|
---|
| 173 | }
|
---|
| 174 |
|
---|
| 175 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 176 | class_alias(DynamicLinkInfo::class, 'Google_Service_FirebaseDynamicLinks_DynamicLinkInfo');
|
---|