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\AdExchangeBuyerII; 19 20class PublisherProfile extends \Google\Collection 21{ 22 protected $collection_key = 'topHeadlines'; 23 /** 24 * @var string 25 */ 26 public $audienceDescription; 27 /** 28 * @var string 29 */ 30 public $buyerPitchStatement; 31 /** 32 * @var string 33 */ 34 public $directDealsContact; 35 /** 36 * @var string 37 */ 38 public $displayName; 39 /** 40 * @var string[] 41 */ 42 public $domains; 43 /** 44 * @var string 45 */ 46 public $googlePlusUrl; 47 /** 48 * @var bool 49 */ 50 public $isParent; 51 /** 52 * @var string 53 */ 54 public $logoUrl; 55 /** 56 * @var string 57 */ 58 public $mediaKitUrl; 59 protected $mobileAppsType = PublisherProfileMobileApplication::class; 60 protected $mobileAppsDataType = 'array'; 61 /** 62 * @var string 63 */ 64 public $overview; 65 /** 66 * @var string 67 */ 68 public $programmaticDealsContact; 69 /** 70 * @var string 71 */ 72 public $publisherProfileId; 73 /** 74 * @var string 75 */ 76 public $rateCardInfoUrl; 77 /** 78 * @var string 79 */ 80 public $samplePageUrl; 81 protected $sellerType = Seller::class; 82 protected $sellerDataType = ''; 83 /** 84 * @var string[] 85 */ 86 public $topHeadlines; 87 88 /** 89 * @param string 90 */ 91 public function setAudienceDescription($audienceDescription) 92 { 93 $this->audienceDescription = $audienceDescription; 94 } 95 /** 96 * @return string 97 */ 98 public function getAudienceDescription() 99 { 100 return $this->audienceDescription; 101 } 102 /** 103 * @param string 104 */ 105 public function setBuyerPitchStatement($buyerPitchStatement) 106 { 107 $this->buyerPitchStatement = $buyerPitchStatement; 108 } 109 /** 110 * @return string 111 */ 112 public function getBuyerPitchStatement() 113 { 114 return $this->buyerPitchStatement; 115 } 116 /** 117 * @param string 118 */ 119 public function setDirectDealsContact($directDealsContact) 120 { 121 $this->directDealsContact = $directDealsContact; 122 } 123 /** 124 * @return string 125 */ 126 public function getDirectDealsContact() 127 { 128 return $this->directDealsContact; 129 } 130 /** 131 * @param string 132 */ 133 public function setDisplayName($displayName) 134 { 135 $this->displayName = $displayName; 136 } 137 /** 138 * @return string 139 */ 140 public function getDisplayName() 141 { 142 return $this->displayName; 143 } 144 /** 145 * @param string[] 146 */ 147 public function setDomains($domains) 148 { 149 $this->domains = $domains; 150 } 151 /** 152 * @return string[] 153 */ 154 public function getDomains() 155 { 156 return $this->domains; 157 } 158 /** 159 * @param string 160 */ 161 public function setGooglePlusUrl($googlePlusUrl) 162 { 163 $this->googlePlusUrl = $googlePlusUrl; 164 } 165 /** 166 * @return string 167 */ 168 public function getGooglePlusUrl() 169 { 170 return $this->googlePlusUrl; 171 } 172 /** 173 * @param bool 174 */ 175 public function setIsParent($isParent) 176 { 177 $this->isParent = $isParent; 178 } 179 /** 180 * @return bool 181 */ 182 public function getIsParent() 183 { 184 return $this->isParent; 185 } 186 /** 187 * @param string 188 */ 189 public function setLogoUrl($logoUrl) 190 { 191 $this->logoUrl = $logoUrl; 192 } 193 /** 194 * @return string 195 */ 196 public function getLogoUrl() 197 { 198 return $this->logoUrl; 199 } 200 /** 201 * @param string 202 */ 203 public function setMediaKitUrl($mediaKitUrl) 204 { 205 $this->mediaKitUrl = $mediaKitUrl; 206 } 207 /** 208 * @return string 209 */ 210 public function getMediaKitUrl() 211 { 212 return $this->mediaKitUrl; 213 } 214 /** 215 * @param PublisherProfileMobileApplication[] 216 */ 217 public function setMobileApps($mobileApps) 218 { 219 $this->mobileApps = $mobileApps; 220 } 221 /** 222 * @return PublisherProfileMobileApplication[] 223 */ 224 public function getMobileApps() 225 { 226 return $this->mobileApps; 227 } 228 /** 229 * @param string 230 */ 231 public function setOverview($overview) 232 { 233 $this->overview = $overview; 234 } 235 /** 236 * @return string 237 */ 238 public function getOverview() 239 { 240 return $this->overview; 241 } 242 /** 243 * @param string 244 */ 245 public function setProgrammaticDealsContact($programmaticDealsContact) 246 { 247 $this->programmaticDealsContact = $programmaticDealsContact; 248 } 249 /** 250 * @return string 251 */ 252 public function getProgrammaticDealsContact() 253 { 254 return $this->programmaticDealsContact; 255 } 256 /** 257 * @param string 258 */ 259 public function setPublisherProfileId($publisherProfileId) 260 { 261 $this->publisherProfileId = $publisherProfileId; 262 } 263 /** 264 * @return string 265 */ 266 public function getPublisherProfileId() 267 { 268 return $this->publisherProfileId; 269 } 270 /** 271 * @param string 272 */ 273 public function setRateCardInfoUrl($rateCardInfoUrl) 274 { 275 $this->rateCardInfoUrl = $rateCardInfoUrl; 276 } 277 /** 278 * @return string 279 */ 280 public function getRateCardInfoUrl() 281 { 282 return $this->rateCardInfoUrl; 283 } 284 /** 285 * @param string 286 */ 287 public function setSamplePageUrl($samplePageUrl) 288 { 289 $this->samplePageUrl = $samplePageUrl; 290 } 291 /** 292 * @return string 293 */ 294 public function getSamplePageUrl() 295 { 296 return $this->samplePageUrl; 297 } 298 /** 299 * @param Seller 300 */ 301 public function setSeller(Seller $seller) 302 { 303 $this->seller = $seller; 304 } 305 /** 306 * @return Seller 307 */ 308 public function getSeller() 309 { 310 return $this->seller; 311 } 312 /** 313 * @param string[] 314 */ 315 public function setTopHeadlines($topHeadlines) 316 { 317 $this->topHeadlines = $topHeadlines; 318 } 319 /** 320 * @return string[] 321 */ 322 public function getTopHeadlines() 323 { 324 return $this->topHeadlines; 325 } 326} 327 328// Adding a class alias for backwards compatibility with the previous class name. 329class_alias(PublisherProfile::class, 'Google_Service_AdExchangeBuyerII_PublisherProfile'); 330