Mise à jour des librairies vendor

This commit is contained in:
Caribana
2018-05-01 14:43:32 +02:00
parent b67375ae8e
commit d776be73fc
5211 changed files with 59115 additions and 25863 deletions

View File

@@ -6,7 +6,7 @@ php:
- 5.6
- 7.0
- 7.1
- hhvm
- 7.2
install:
- composer install

View File

@@ -2,7 +2,7 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
colors="true"
bootstrap="tests/bootstrap.php">
bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Google PHP Client Unit Services Test Suite">
<directory>tests</directory>

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -19,8 +19,8 @@
* Service definition for Acceleratedmobilepageurl (v1).
*
* <p>
* This API contains a single method, batchGet. Call this method to retrieve the
* AMP URL (and equivalent AMP Cache URL) for given public URL(s).</p>
* Retrieves the list of AMP URLs (and equivalent AMP Cache URLs) for a given
* list of public URL(s).</p>
*
* <p>
* For more information about this service, see the API

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -23,18 +23,30 @@ class Google_Service_Acceleratedmobilepageurl_BatchGetAmpUrlsResponse extends Go
protected $urlErrorsType = 'Google_Service_Acceleratedmobilepageurl_AmpUrlError';
protected $urlErrorsDataType = 'array';
/**
* @param Google_Service_Acceleratedmobilepageurl_AmpUrl
*/
public function setAmpUrls($ampUrls)
{
$this->ampUrls = $ampUrls;
}
/**
* @return Google_Service_Acceleratedmobilepageurl_AmpUrl
*/
public function getAmpUrls()
{
return $this->ampUrls;
}
/**
* @param Google_Service_Acceleratedmobilepageurl_AmpUrlError
*/
public function setUrlErrors($urlErrors)
{
$this->urlErrors = $urlErrors;
}
/**
* @return Google_Service_Acceleratedmobilepageurl_AmpUrlError
*/
public function getUrlErrors()
{
return $this->urlErrors;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -18,6 +18,7 @@
class Google_Service_AdExchangeBuyer_Account extends Google_Collection
{
protected $collection_key = 'bidderLocation';
public $applyPretargetingToNonGuaranteedDeals;
protected $bidderLocationType = 'Google_Service_AdExchangeBuyer_AccountBidderLocation';
protected $bidderLocationDataType = 'array';
public $cookieMatchingNid;
@@ -28,10 +29,24 @@ class Google_Service_AdExchangeBuyer_Account extends Google_Collection
public $maximumTotalQps;
public $numberActiveCreatives;
public function setApplyPretargetingToNonGuaranteedDeals($applyPretargetingToNonGuaranteedDeals)
{
$this->applyPretargetingToNonGuaranteedDeals = $applyPretargetingToNonGuaranteedDeals;
}
public function getApplyPretargetingToNonGuaranteedDeals()
{
return $this->applyPretargetingToNonGuaranteedDeals;
}
/**
* @param Google_Service_AdExchangeBuyer_AccountBidderLocation
*/
public function setBidderLocation($bidderLocation)
{
$this->bidderLocation = $bidderLocation;
}
/**
* @return Google_Service_AdExchangeBuyer_AccountBidderLocation
*/
public function getBidderLocation()
{
return $this->bidderLocation;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,10 +22,16 @@ class Google_Service_AdExchangeBuyer_AccountsList extends Google_Collection
protected $itemsDataType = 'array';
public $kind;
/**
* @param Google_Service_AdExchangeBuyer_Account
*/
public function setItems($items)
{
$this->items = $items;
}
/**
* @return Google_Service_AdExchangeBuyer_Account
*/
public function getItems()
{
return $this->items;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -23,10 +23,16 @@ class Google_Service_AdExchangeBuyer_AddOrderDealsRequest extends Google_Collect
public $proposalRevisionNumber;
public $updateAction;
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function setDeals($deals)
{
$this->deals = $deals;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function getDeals()
{
return $this->deals;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,10 +22,16 @@ class Google_Service_AdExchangeBuyer_AddOrderDealsResponse extends Google_Collec
protected $dealsDataType = 'array';
public $proposalRevisionNumber;
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function setDeals($deals)
{
$this->deals = $deals;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function getDeals()
{
return $this->deals;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -21,10 +21,16 @@ class Google_Service_AdExchangeBuyer_AddOrderNotesRequest extends Google_Collect
protected $notesType = 'Google_Service_AdExchangeBuyer_MarketplaceNote';
protected $notesDataType = 'array';
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceNote
*/
public function setNotes($notes)
{
$this->notes = $notes;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceNote
*/
public function getNotes()
{
return $this->notes;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -21,10 +21,16 @@ class Google_Service_AdExchangeBuyer_AddOrderNotesResponse extends Google_Collec
protected $notesType = 'Google_Service_AdExchangeBuyer_MarketplaceNote';
protected $notesDataType = 'array';
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceNote
*/
public function setNotes($notes)
{
$this->notes = $notes;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceNote
*/
public function getNotes()
{
return $this->notes;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,10 +22,16 @@ class Google_Service_AdExchangeBuyer_BillingInfoList extends Google_Collection
protected $itemsDataType = 'array';
public $kind;
/**
* @param Google_Service_AdExchangeBuyer_BillingInfo
*/
public function setItems($items)
{
$this->items = $items;
}
/**
* @return Google_Service_AdExchangeBuyer_BillingInfo
*/
public function getItems()
{
return $this->items;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,10 +22,16 @@ class Google_Service_AdExchangeBuyer_CreateOrdersRequest extends Google_Collecti
protected $proposalsDataType = 'array';
public $webPropertyCode;
/**
* @param Google_Service_AdExchangeBuyer_Proposal
*/
public function setProposals($proposals)
{
$this->proposals = $proposals;
}
/**
* @return Google_Service_AdExchangeBuyer_Proposal
*/
public function getProposals()
{
return $this->proposals;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -21,10 +21,16 @@ class Google_Service_AdExchangeBuyer_CreateOrdersResponse extends Google_Collect
protected $proposalsType = 'Google_Service_AdExchangeBuyer_Proposal';
protected $proposalsDataType = 'array';
/**
* @param Google_Service_AdExchangeBuyer_Proposal
*/
public function setProposals($proposals)
{
$this->proposals = $proposals;
}
/**
* @return Google_Service_AdExchangeBuyer_Proposal
*/
public function getProposals()
{
return $this->proposals;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -52,6 +52,7 @@ class Google_Service_AdExchangeBuyer_Creative extends Google_Collection
public $vendorType;
public $version;
public $videoURL;
public $videoVastXML;
public $width;
public function setHTMLSnippet($hTMLSnippet)
@@ -134,10 +135,16 @@ class Google_Service_AdExchangeBuyer_Creative extends Google_Collection
{
return $this->clickThroughUrl;
}
/**
* @param Google_Service_AdExchangeBuyer_CreativeCorrections
*/
public function setCorrections($corrections)
{
$this->corrections = $corrections;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeCorrections
*/
public function getCorrections()
{
return $this->corrections;
@@ -158,10 +165,16 @@ class Google_Service_AdExchangeBuyer_Creative extends Google_Collection
{
return $this->detectedDomains;
}
/**
* @param Google_Service_AdExchangeBuyer_CreativeFilteringReasons
*/
public function setFilteringReasons(Google_Service_AdExchangeBuyer_CreativeFilteringReasons $filteringReasons)
{
$this->filteringReasons = $filteringReasons;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeFilteringReasons
*/
public function getFilteringReasons()
{
return $this->filteringReasons;
@@ -198,10 +211,16 @@ class Google_Service_AdExchangeBuyer_Creative extends Google_Collection
{
return $this->languages;
}
/**
* @param Google_Service_AdExchangeBuyer_CreativeNativeAd
*/
public function setNativeAd(Google_Service_AdExchangeBuyer_CreativeNativeAd $nativeAd)
{
$this->nativeAd = $nativeAd;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeNativeAd
*/
public function getNativeAd()
{
return $this->nativeAd;
@@ -238,10 +257,16 @@ class Google_Service_AdExchangeBuyer_Creative extends Google_Collection
{
return $this->sensitiveCategories;
}
/**
* @param Google_Service_AdExchangeBuyer_CreativeServingRestrictions
*/
public function setServingRestrictions($servingRestrictions)
{
$this->servingRestrictions = $servingRestrictions;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeServingRestrictions
*/
public function getServingRestrictions()
{
return $this->servingRestrictions;
@@ -270,6 +295,14 @@ class Google_Service_AdExchangeBuyer_Creative extends Google_Collection
{
return $this->videoURL;
}
public function setVideoVastXML($videoVastXML)
{
$this->videoVastXML = $videoVastXML;
}
public function getVideoVastXML()
{
return $this->videoVastXML;
}
public function setWidth($width)
{
$this->width = $width;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -23,10 +23,16 @@ class Google_Service_AdExchangeBuyer_CreativeCorrections extends Google_Collecti
public $details;
public $reason;
/**
* @param Google_Service_AdExchangeBuyer_CreativeCorrectionsContexts
*/
public function setContexts($contexts)
{
$this->contexts = $contexts;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeCorrectionsContexts
*/
public function getContexts()
{
return $this->contexts;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,10 +22,16 @@ class Google_Service_AdExchangeBuyer_CreativeDealIds extends Google_Collection
protected $dealStatusesDataType = 'array';
public $kind;
/**
* @param Google_Service_AdExchangeBuyer_CreativeDealIdsDealStatuses
*/
public function setDealStatuses($dealStatuses)
{
$this->dealStatuses = $dealStatuses;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeDealIdsDealStatuses
*/
public function getDealStatuses()
{
return $this->dealStatuses;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -30,10 +30,16 @@ class Google_Service_AdExchangeBuyer_CreativeFilteringReasons extends Google_Col
{
return $this->date;
}
/**
* @param Google_Service_AdExchangeBuyer_CreativeFilteringReasonsReasons
*/
public function setReasons($reasons)
{
$this->reasons = $reasons;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeFilteringReasonsReasons
*/
public function getReasons()
{
return $this->reasons;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -44,10 +44,16 @@ class Google_Service_AdExchangeBuyer_CreativeNativeAd extends Google_Collection
{
return $this->advertiser;
}
/**
* @param Google_Service_AdExchangeBuyer_CreativeNativeAdAppIcon
*/
public function setAppIcon(Google_Service_AdExchangeBuyer_CreativeNativeAdAppIcon $appIcon)
{
$this->appIcon = $appIcon;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeNativeAdAppIcon
*/
public function getAppIcon()
{
return $this->appIcon;
@@ -92,10 +98,16 @@ class Google_Service_AdExchangeBuyer_CreativeNativeAd extends Google_Collection
{
return $this->headline;
}
/**
* @param Google_Service_AdExchangeBuyer_CreativeNativeAdImage
*/
public function setImage(Google_Service_AdExchangeBuyer_CreativeNativeAdImage $image)
{
$this->image = $image;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeNativeAdImage
*/
public function getImage()
{
return $this->image;
@@ -108,10 +120,16 @@ class Google_Service_AdExchangeBuyer_CreativeNativeAd extends Google_Collection
{
return $this->impressionTrackingUrl;
}
/**
* @param Google_Service_AdExchangeBuyer_CreativeNativeAdLogo
*/
public function setLogo(Google_Service_AdExchangeBuyer_CreativeNativeAdLogo $logo)
{
$this->logo = $logo;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeNativeAdLogo
*/
public function getLogo()
{
return $this->logo;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -24,18 +24,30 @@ class Google_Service_AdExchangeBuyer_CreativeServingRestrictions extends Google_
protected $disapprovalReasonsDataType = 'array';
public $reason;
/**
* @param Google_Service_AdExchangeBuyer_CreativeServingRestrictionsContexts
*/
public function setContexts($contexts)
{
$this->contexts = $contexts;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeServingRestrictionsContexts
*/
public function getContexts()
{
return $this->contexts;
}
/**
* @param Google_Service_AdExchangeBuyer_CreativeServingRestrictionsDisapprovalReasons
*/
public function setDisapprovalReasons($disapprovalReasons)
{
$this->disapprovalReasons = $disapprovalReasons;
}
/**
* @return Google_Service_AdExchangeBuyer_CreativeServingRestrictionsDisapprovalReasons
*/
public function getDisapprovalReasons()
{
return $this->disapprovalReasons;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -23,10 +23,16 @@ class Google_Service_AdExchangeBuyer_CreativesList extends Google_Collection
public $kind;
public $nextPageToken;
/**
* @param Google_Service_AdExchangeBuyer_Creative
*/
public function setItems($items)
{
$this->items = $items;
}
/**
* @return Google_Service_AdExchangeBuyer_Creative
*/
public function getItems()
{
return $this->items;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -29,10 +29,16 @@ class Google_Service_AdExchangeBuyer_DealServingMetadata extends Google_Model
{
return $this->alcoholAdsAllowed;
}
/**
* @param Google_Service_AdExchangeBuyer_DealServingMetadataDealPauseStatus
*/
public function setDealPauseStatus(Google_Service_AdExchangeBuyer_DealServingMetadataDealPauseStatus $dealPauseStatus)
{
$this->dealPauseStatus = $dealPauseStatus;
}
/**
* @return Google_Service_AdExchangeBuyer_DealServingMetadataDealPauseStatus
*/
public function getDealPauseStatus()
{
return $this->dealPauseStatus;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -57,10 +57,16 @@ class Google_Service_AdExchangeBuyer_DealTerms extends Google_Model
{
return $this->description;
}
/**
* @param Google_Service_AdExchangeBuyer_Price
*/
public function setEstimatedGrossSpend(Google_Service_AdExchangeBuyer_Price $estimatedGrossSpend)
{
$this->estimatedGrossSpend = $estimatedGrossSpend;
}
/**
* @return Google_Service_AdExchangeBuyer_Price
*/
public function getEstimatedGrossSpend()
{
return $this->estimatedGrossSpend;
@@ -73,34 +79,58 @@ class Google_Service_AdExchangeBuyer_DealTerms extends Google_Model
{
return $this->estimatedImpressionsPerDay;
}
/**
* @param Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms
*/
public function setGuaranteedFixedPriceTerms(Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms $guaranteedFixedPriceTerms)
{
$this->guaranteedFixedPriceTerms = $guaranteedFixedPriceTerms;
}
/**
* @return Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms
*/
public function getGuaranteedFixedPriceTerms()
{
return $this->guaranteedFixedPriceTerms;
}
/**
* @param Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms
*/
public function setNonGuaranteedAuctionTerms(Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms $nonGuaranteedAuctionTerms)
{
$this->nonGuaranteedAuctionTerms = $nonGuaranteedAuctionTerms;
}
/**
* @return Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms
*/
public function getNonGuaranteedAuctionTerms()
{
return $this->nonGuaranteedAuctionTerms;
}
/**
* @param Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms
*/
public function setNonGuaranteedFixedPriceTerms(Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms $nonGuaranteedFixedPriceTerms)
{
$this->nonGuaranteedFixedPriceTerms = $nonGuaranteedFixedPriceTerms;
}
/**
* @return Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms
*/
public function getNonGuaranteedFixedPriceTerms()
{
return $this->nonGuaranteedFixedPriceTerms;
}
/**
* @param Google_Service_AdExchangeBuyer_DealTermsRubiconNonGuaranteedTerms
*/
public function setRubiconNonGuaranteedTerms(Google_Service_AdExchangeBuyer_DealTermsRubiconNonGuaranteedTerms $rubiconNonGuaranteedTerms)
{
$this->rubiconNonGuaranteedTerms = $rubiconNonGuaranteedTerms;
}
/**
* @return Google_Service_AdExchangeBuyer_DealTermsRubiconNonGuaranteedTerms
*/
public function getRubiconNonGuaranteedTerms()
{
return $this->rubiconNonGuaranteedTerms;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -26,18 +26,30 @@ class Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms extends
public $guaranteedLooks;
public $minimumDailyLooks;
/**
* @param Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo
*/
public function setBillingInfo(Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo $billingInfo)
{
$this->billingInfo = $billingInfo;
}
/**
* @return Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo
*/
public function getBillingInfo()
{
return $this->billingInfo;
}
/**
* @param Google_Service_AdExchangeBuyer_PricePerBuyer
*/
public function setFixedPrices($fixedPrices)
{
$this->fixedPrices = $fixedPrices;
}
/**
* @return Google_Service_AdExchangeBuyer_PricePerBuyer
*/
public function getFixedPrices()
{
return $this->fixedPrices;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -47,10 +47,16 @@ class Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingIn
{
return $this->originalContractedQuantity;
}
/**
* @param Google_Service_AdExchangeBuyer_Price
*/
public function setPrice(Google_Service_AdExchangeBuyer_Price $price)
{
$this->price = $price;
}
/**
* @return Google_Service_AdExchangeBuyer_Price
*/
public function getPrice()
{
return $this->price;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -30,10 +30,16 @@ class Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms extends
{
return $this->autoOptimizePrivateAuction;
}
/**
* @param Google_Service_AdExchangeBuyer_PricePerBuyer
*/
public function setReservePricePerBuyers($reservePricePerBuyers)
{
$this->reservePricePerBuyers = $reservePricePerBuyers;
}
/**
* @return Google_Service_AdExchangeBuyer_PricePerBuyer
*/
public function getReservePricePerBuyers()
{
return $this->reservePricePerBuyers;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -21,10 +21,16 @@ class Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms exten
protected $fixedPricesType = 'Google_Service_AdExchangeBuyer_PricePerBuyer';
protected $fixedPricesDataType = 'array';
/**
* @param Google_Service_AdExchangeBuyer_PricePerBuyer
*/
public function setFixedPrices($fixedPrices)
{
$this->fixedPrices = $fixedPrices;
}
/**
* @return Google_Service_AdExchangeBuyer_PricePerBuyer
*/
public function getFixedPrices()
{
return $this->fixedPrices;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,18 +22,30 @@ class Google_Service_AdExchangeBuyer_DealTermsRubiconNonGuaranteedTerms extends
protected $standardPriceType = 'Google_Service_AdExchangeBuyer_Price';
protected $standardPriceDataType = '';
/**
* @param Google_Service_AdExchangeBuyer_Price
*/
public function setPriorityPrice(Google_Service_AdExchangeBuyer_Price $priorityPrice)
{
$this->priorityPrice = $priorityPrice;
}
/**
* @return Google_Service_AdExchangeBuyer_Price
*/
public function getPriorityPrice()
{
return $this->priorityPrice;
}
/**
* @param Google_Service_AdExchangeBuyer_Price
*/
public function setStandardPrice(Google_Service_AdExchangeBuyer_Price $standardPrice)
{
$this->standardPrice = $standardPrice;
}
/**
* @return Google_Service_AdExchangeBuyer_Price
*/
public function getStandardPrice()
{
return $this->standardPrice;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,10 +22,16 @@ class Google_Service_AdExchangeBuyer_DeleteOrderDealsResponse extends Google_Col
protected $dealsDataType = 'array';
public $proposalRevisionNumber;
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function setDeals($deals)
{
$this->deals = $deals;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function getDeals()
{
return $this->deals;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -39,10 +39,16 @@ class Google_Service_AdExchangeBuyer_DeliveryControl extends Google_Collection
{
return $this->deliveryRateType;
}
/**
* @param Google_Service_AdExchangeBuyer_DeliveryControlFrequencyCap
*/
public function setFrequencyCaps($frequencyCaps)
{
$this->frequencyCaps = $frequencyCaps;
}
/**
* @return Google_Service_AdExchangeBuyer_DeliveryControlFrequencyCap
*/
public function getFrequencyCaps()
{
return $this->frequencyCaps;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -30,10 +30,16 @@ class Google_Service_AdExchangeBuyer_Dimension extends Google_Collection
{
return $this->dimensionType;
}
/**
* @param Google_Service_AdExchangeBuyer_DimensionDimensionValue
*/
public function setDimensionValues($dimensionValues)
{
$this->dimensionValues = $dimensionValues;
}
/**
* @return Google_Service_AdExchangeBuyer_DimensionDimensionValue
*/
public function getDimensionValues()
{
return $this->dimensionValues;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -25,18 +25,30 @@ class Google_Service_AdExchangeBuyer_EditAllOrderDealsRequest extends Google_Col
public $proposalRevisionNumber;
public $updateAction;
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function setDeals($deals)
{
$this->deals = $deals;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function getDeals()
{
return $this->deals;
}
/**
* @param Google_Service_AdExchangeBuyer_Proposal
*/
public function setProposal(Google_Service_AdExchangeBuyer_Proposal $proposal)
{
$this->proposal = $proposal;
}
/**
* @return Google_Service_AdExchangeBuyer_Proposal
*/
public function getProposal()
{
return $this->proposal;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,10 +22,16 @@ class Google_Service_AdExchangeBuyer_EditAllOrderDealsResponse extends Google_Co
protected $dealsDataType = 'array';
public $orderRevisionNumber;
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function setDeals($deals)
{
$this->deals = $deals;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function getDeals()
{
return $this->deals;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -21,10 +21,16 @@ class Google_Service_AdExchangeBuyer_GetOffersResponse extends Google_Collection
protected $productsType = 'Google_Service_AdExchangeBuyer_Product';
protected $productsDataType = 'array';
/**
* @param Google_Service_AdExchangeBuyer_Product
*/
public function setProducts($products)
{
$this->products = $products;
}
/**
* @return Google_Service_AdExchangeBuyer_Product
*/
public function getProducts()
{
return $this->products;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -21,10 +21,16 @@ class Google_Service_AdExchangeBuyer_GetOrderDealsResponse extends Google_Collec
protected $dealsType = 'Google_Service_AdExchangeBuyer_MarketplaceDeal';
protected $dealsDataType = 'array';
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function setDeals($deals)
{
$this->deals = $deals;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceDeal
*/
public function getDeals()
{
return $this->deals;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -21,10 +21,16 @@ class Google_Service_AdExchangeBuyer_GetOrderNotesResponse extends Google_Collec
protected $notesType = 'Google_Service_AdExchangeBuyer_MarketplaceNote';
protected $notesDataType = 'array';
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceNote
*/
public function setNotes($notes)
{
$this->notes = $notes;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceNote
*/
public function getNotes()
{
return $this->notes;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -21,10 +21,16 @@ class Google_Service_AdExchangeBuyer_GetOrdersResponse extends Google_Collection
protected $proposalsType = 'Google_Service_AdExchangeBuyer_Proposal';
protected $proposalsDataType = 'array';
/**
* @param Google_Service_AdExchangeBuyer_Proposal
*/
public function setProposals($proposals)
{
$this->proposals = $proposals;
}
/**
* @return Google_Service_AdExchangeBuyer_Proposal
*/
public function getProposals()
{
return $this->proposals;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -21,10 +21,16 @@ class Google_Service_AdExchangeBuyer_GetPublisherProfilesByAccountIdResponse ext
protected $profilesType = 'Google_Service_AdExchangeBuyer_PublisherProfileApiProto';
protected $profilesDataType = 'array';
/**
* @param Google_Service_AdExchangeBuyer_PublisherProfileApiProto
*/
public function setProfiles($profiles)
{
$this->profiles = $profiles;
}
/**
* @return Google_Service_AdExchangeBuyer_PublisherProfileApiProto
*/
public function getProfiles()
{
return $this->profiles;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -33,6 +33,7 @@ class Google_Service_AdExchangeBuyer_MarketplaceDeal extends Google_Collection
public $flightStartTimeMs;
public $inventoryDescription;
public $isRfpTemplate;
public $isSetupComplete;
public $kind;
public $lastUpdateTimeMs;
public $name;
@@ -49,10 +50,16 @@ class Google_Service_AdExchangeBuyer_MarketplaceDeal extends Google_Collection
protected $termsDataType = '';
public $webPropertyCode;
/**
* @param Google_Service_AdExchangeBuyer_PrivateData
*/
public function setBuyerPrivateData(Google_Service_AdExchangeBuyer_PrivateData $buyerPrivateData)
{
$this->buyerPrivateData = $buyerPrivateData;
}
/**
* @return Google_Service_AdExchangeBuyer_PrivateData
*/
public function getBuyerPrivateData()
{
return $this->buyerPrivateData;
@@ -89,18 +96,30 @@ class Google_Service_AdExchangeBuyer_MarketplaceDeal extends Google_Collection
{
return $this->dealId;
}
/**
* @param Google_Service_AdExchangeBuyer_DealServingMetadata
*/
public function setDealServingMetadata(Google_Service_AdExchangeBuyer_DealServingMetadata $dealServingMetadata)
{
$this->dealServingMetadata = $dealServingMetadata;
}
/**
* @return Google_Service_AdExchangeBuyer_DealServingMetadata
*/
public function getDealServingMetadata()
{
return $this->dealServingMetadata;
}
/**
* @param Google_Service_AdExchangeBuyer_DeliveryControl
*/
public function setDeliveryControl(Google_Service_AdExchangeBuyer_DeliveryControl $deliveryControl)
{
$this->deliveryControl = $deliveryControl;
}
/**
* @return Google_Service_AdExchangeBuyer_DeliveryControl
*/
public function getDeliveryControl()
{
return $this->deliveryControl;
@@ -145,6 +164,14 @@ class Google_Service_AdExchangeBuyer_MarketplaceDeal extends Google_Collection
{
return $this->isRfpTemplate;
}
public function setIsSetupComplete($isSetupComplete)
{
$this->isSetupComplete = $isSetupComplete;
}
public function getIsSetupComplete()
{
return $this->isSetupComplete;
}
public function setKind($kind)
{
$this->kind = $kind;
@@ -201,18 +228,30 @@ class Google_Service_AdExchangeBuyer_MarketplaceDeal extends Google_Collection
{
return $this->proposalId;
}
/**
* @param Google_Service_AdExchangeBuyer_ContactInformation
*/
public function setSellerContacts($sellerContacts)
{
$this->sellerContacts = $sellerContacts;
}
/**
* @return Google_Service_AdExchangeBuyer_ContactInformation
*/
public function getSellerContacts()
{
return $this->sellerContacts;
}
/**
* @param Google_Service_AdExchangeBuyer_SharedTargeting
*/
public function setSharedTargetings($sharedTargetings)
{
$this->sharedTargetings = $sharedTargetings;
}
/**
* @return Google_Service_AdExchangeBuyer_SharedTargeting
*/
public function getSharedTargetings()
{
return $this->sharedTargetings;
@@ -225,10 +264,16 @@ class Google_Service_AdExchangeBuyer_MarketplaceDeal extends Google_Collection
{
return $this->syndicationProduct;
}
/**
* @param Google_Service_AdExchangeBuyer_DealTerms
*/
public function setTerms(Google_Service_AdExchangeBuyer_DealTerms $terms)
{
$this->terms = $terms;
}
/**
* @return Google_Service_AdExchangeBuyer_DealTerms
*/
public function getTerms()
{
return $this->terms;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,18 +22,30 @@ class Google_Service_AdExchangeBuyer_MarketplaceDealParty extends Google_Model
protected $sellerType = 'Google_Service_AdExchangeBuyer_Seller';
protected $sellerDataType = '';
/**
* @param Google_Service_AdExchangeBuyer_Buyer
*/
public function setBuyer(Google_Service_AdExchangeBuyer_Buyer $buyer)
{
$this->buyer = $buyer;
}
/**
* @return Google_Service_AdExchangeBuyer_Buyer
*/
public function getBuyer()
{
return $this->buyer;
}
/**
* @param Google_Service_AdExchangeBuyer_Seller
*/
public function setSeller(Google_Service_AdExchangeBuyer_Seller $seller)
{
$this->seller = $seller;
}
/**
* @return Google_Service_AdExchangeBuyer_Seller
*/
public function getSeller()
{
return $this->seller;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -39,10 +39,16 @@ class Google_Service_AdExchangeBuyer_MarketplaceLabel extends Google_Model
{
return $this->createTimeMs;
}
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceDealParty
*/
public function setDeprecatedMarketplaceDealParty(Google_Service_AdExchangeBuyer_MarketplaceDealParty $deprecatedMarketplaceDealParty)
{
$this->deprecatedMarketplaceDealParty = $deprecatedMarketplaceDealParty;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceDealParty
*/
public function getDeprecatedMarketplaceDealParty()
{
return $this->deprecatedMarketplaceDealParty;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -30,10 +30,16 @@ class Google_Service_AdExchangeBuyer_PerformanceReportList extends Google_Collec
{
return $this->kind;
}
/**
* @param Google_Service_AdExchangeBuyer_PerformanceReport
*/
public function setPerformanceReport($performanceReport)
{
$this->performanceReport = $performanceReport;
}
/**
* @return Google_Service_AdExchangeBuyer_PerformanceReport
*/
public function getPerformanceReport()
{
return $this->performanceReport;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -81,10 +81,16 @@ class Google_Service_AdExchangeBuyer_PretargetingConfig extends Google_Collectio
{
return $this->creativeType;
}
/**
* @param Google_Service_AdExchangeBuyer_PretargetingConfigDimensions
*/
public function setDimensions($dimensions)
{
$this->dimensions = $dimensions;
}
/**
* @return Google_Service_AdExchangeBuyer_PretargetingConfigDimensions
*/
public function getDimensions()
{
return $this->dimensions;
@@ -105,10 +111,16 @@ class Google_Service_AdExchangeBuyer_PretargetingConfig extends Google_Collectio
{
return $this->excludedGeoCriteriaIds;
}
/**
* @param Google_Service_AdExchangeBuyer_PretargetingConfigExcludedPlacements
*/
public function setExcludedPlacements($excludedPlacements)
{
$this->excludedPlacements = $excludedPlacements;
}
/**
* @return Google_Service_AdExchangeBuyer_PretargetingConfigExcludedPlacements
*/
public function getExcludedPlacements()
{
return $this->excludedPlacements;
@@ -193,10 +205,16 @@ class Google_Service_AdExchangeBuyer_PretargetingConfig extends Google_Collectio
{
return $this->mobileOperatingSystemVersions;
}
/**
* @param Google_Service_AdExchangeBuyer_PretargetingConfigPlacements
*/
public function setPlacements($placements)
{
$this->placements = $placements;
}
/**
* @return Google_Service_AdExchangeBuyer_PretargetingConfigPlacements
*/
public function getPlacements()
{
return $this->placements;
@@ -249,10 +267,16 @@ class Google_Service_AdExchangeBuyer_PretargetingConfig extends Google_Collectio
{
return $this->verticals;
}
/**
* @param Google_Service_AdExchangeBuyer_PretargetingConfigVideoPlayerSizes
*/
public function setVideoPlayerSizes($videoPlayerSizes)
{
$this->videoPlayerSizes = $videoPlayerSizes;
}
/**
* @return Google_Service_AdExchangeBuyer_PretargetingConfigVideoPlayerSizes
*/
public function getVideoPlayerSizes()
{
return $this->videoPlayerSizes;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,10 +22,16 @@ class Google_Service_AdExchangeBuyer_PretargetingConfigList extends Google_Colle
protected $itemsDataType = 'array';
public $kind;
/**
* @param Google_Service_AdExchangeBuyer_PretargetingConfig
*/
public function setItems($items)
{
$this->items = $items;
}
/**
* @return Google_Service_AdExchangeBuyer_PretargetingConfig
*/
public function getItems()
{
return $this->items;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -18,6 +18,8 @@
class Google_Service_AdExchangeBuyer_PricePerBuyer extends Google_Model
{
public $auctionTier;
protected $billedBuyerType = 'Google_Service_AdExchangeBuyer_Buyer';
protected $billedBuyerDataType = '';
protected $buyerType = 'Google_Service_AdExchangeBuyer_Buyer';
protected $buyerDataType = '';
protected $priceType = 'Google_Service_AdExchangeBuyer_Price';
@@ -31,18 +33,44 @@ class Google_Service_AdExchangeBuyer_PricePerBuyer extends Google_Model
{
return $this->auctionTier;
}
/**
* @param Google_Service_AdExchangeBuyer_Buyer
*/
public function setBilledBuyer(Google_Service_AdExchangeBuyer_Buyer $billedBuyer)
{
$this->billedBuyer = $billedBuyer;
}
/**
* @return Google_Service_AdExchangeBuyer_Buyer
*/
public function getBilledBuyer()
{
return $this->billedBuyer;
}
/**
* @param Google_Service_AdExchangeBuyer_Buyer
*/
public function setBuyer(Google_Service_AdExchangeBuyer_Buyer $buyer)
{
$this->buyer = $buyer;
}
/**
* @return Google_Service_AdExchangeBuyer_Buyer
*/
public function getBuyer()
{
return $this->buyer;
}
/**
* @param Google_Service_AdExchangeBuyer_Price
*/
public function setPrice(Google_Service_AdExchangeBuyer_Price $price)
{
$this->price = $price;
}
/**
* @return Google_Service_AdExchangeBuyer_Price
*/
public function getPrice()
{
return $this->price;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -18,9 +18,14 @@
class Google_Service_AdExchangeBuyer_Product extends Google_Collection
{
protected $collection_key = 'sharedTargetings';
protected $billedBuyerType = 'Google_Service_AdExchangeBuyer_Buyer';
protected $billedBuyerDataType = '';
protected $buyerType = 'Google_Service_AdExchangeBuyer_Buyer';
protected $buyerDataType = '';
public $creationTimeMs;
protected $creatorContactsType = 'Google_Service_AdExchangeBuyer_ContactInformation';
protected $creatorContactsDataType = 'array';
public $creatorRole;
protected $deliveryControlType = 'Google_Service_AdExchangeBuyer_DeliveryControl';
protected $deliveryControlDataType = '';
public $flightEndTimeMs;
@@ -50,6 +55,34 @@ class Google_Service_AdExchangeBuyer_Product extends Google_Collection
protected $termsDataType = '';
public $webPropertyCode;
/**
* @param Google_Service_AdExchangeBuyer_Buyer
*/
public function setBilledBuyer(Google_Service_AdExchangeBuyer_Buyer $billedBuyer)
{
$this->billedBuyer = $billedBuyer;
}
/**
* @return Google_Service_AdExchangeBuyer_Buyer
*/
public function getBilledBuyer()
{
return $this->billedBuyer;
}
/**
* @param Google_Service_AdExchangeBuyer_Buyer
*/
public function setBuyer(Google_Service_AdExchangeBuyer_Buyer $buyer)
{
$this->buyer = $buyer;
}
/**
* @return Google_Service_AdExchangeBuyer_Buyer
*/
public function getBuyer()
{
return $this->buyer;
}
public function setCreationTimeMs($creationTimeMs)
{
$this->creationTimeMs = $creationTimeMs;
@@ -58,18 +91,38 @@ class Google_Service_AdExchangeBuyer_Product extends Google_Collection
{
return $this->creationTimeMs;
}
/**
* @param Google_Service_AdExchangeBuyer_ContactInformation
*/
public function setCreatorContacts($creatorContacts)
{
$this->creatorContacts = $creatorContacts;
}
/**
* @return Google_Service_AdExchangeBuyer_ContactInformation
*/
public function getCreatorContacts()
{
return $this->creatorContacts;
}
public function setCreatorRole($creatorRole)
{
$this->creatorRole = $creatorRole;
}
public function getCreatorRole()
{
return $this->creatorRole;
}
/**
* @param Google_Service_AdExchangeBuyer_DeliveryControl
*/
public function setDeliveryControl(Google_Service_AdExchangeBuyer_DeliveryControl $deliveryControl)
{
$this->deliveryControl = $deliveryControl;
}
/**
* @return Google_Service_AdExchangeBuyer_DeliveryControl
*/
public function getDeliveryControl()
{
return $this->deliveryControl;
@@ -114,10 +167,16 @@ class Google_Service_AdExchangeBuyer_Product extends Google_Collection
{
return $this->kind;
}
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceLabel
*/
public function setLabels($labels)
{
$this->labels = $labels;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceLabel
*/
public function getLabels()
{
return $this->labels;
@@ -178,10 +237,16 @@ class Google_Service_AdExchangeBuyer_Product extends Google_Collection
{
return $this->publisherProfileId;
}
/**
* @param Google_Service_AdExchangeBuyer_PublisherProvidedForecast
*/
public function setPublisherProvidedForecast(Google_Service_AdExchangeBuyer_PublisherProvidedForecast $publisherProvidedForecast)
{
$this->publisherProvidedForecast = $publisherProvidedForecast;
}
/**
* @return Google_Service_AdExchangeBuyer_PublisherProvidedForecast
*/
public function getPublisherProvidedForecast()
{
return $this->publisherProvidedForecast;
@@ -194,18 +259,30 @@ class Google_Service_AdExchangeBuyer_Product extends Google_Collection
{
return $this->revisionNumber;
}
/**
* @param Google_Service_AdExchangeBuyer_Seller
*/
public function setSeller(Google_Service_AdExchangeBuyer_Seller $seller)
{
$this->seller = $seller;
}
/**
* @return Google_Service_AdExchangeBuyer_Seller
*/
public function getSeller()
{
return $this->seller;
}
/**
* @param Google_Service_AdExchangeBuyer_SharedTargeting
*/
public function setSharedTargetings($sharedTargetings)
{
$this->sharedTargetings = $sharedTargetings;
}
/**
* @return Google_Service_AdExchangeBuyer_SharedTargeting
*/
public function getSharedTargetings()
{
return $this->sharedTargetings;
@@ -226,10 +303,16 @@ class Google_Service_AdExchangeBuyer_Product extends Google_Collection
{
return $this->syndicationProduct;
}
/**
* @param Google_Service_AdExchangeBuyer_DealTerms
*/
public function setTerms(Google_Service_AdExchangeBuyer_DealTerms $terms)
{
$this->terms = $terms;
}
/**
* @return Google_Service_AdExchangeBuyer_DealTerms
*/
public function getTerms()
{
return $this->terms;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -49,34 +49,58 @@ class Google_Service_AdExchangeBuyer_Proposal extends Google_Collection
protected $sellerContactsType = 'Google_Service_AdExchangeBuyer_ContactInformation';
protected $sellerContactsDataType = 'array';
/**
* @param Google_Service_AdExchangeBuyer_Buyer
*/
public function setBilledBuyer(Google_Service_AdExchangeBuyer_Buyer $billedBuyer)
{
$this->billedBuyer = $billedBuyer;
}
/**
* @return Google_Service_AdExchangeBuyer_Buyer
*/
public function getBilledBuyer()
{
return $this->billedBuyer;
}
/**
* @param Google_Service_AdExchangeBuyer_Buyer
*/
public function setBuyer(Google_Service_AdExchangeBuyer_Buyer $buyer)
{
$this->buyer = $buyer;
}
/**
* @return Google_Service_AdExchangeBuyer_Buyer
*/
public function getBuyer()
{
return $this->buyer;
}
/**
* @param Google_Service_AdExchangeBuyer_ContactInformation
*/
public function setBuyerContacts($buyerContacts)
{
$this->buyerContacts = $buyerContacts;
}
/**
* @return Google_Service_AdExchangeBuyer_ContactInformation
*/
public function getBuyerContacts()
{
return $this->buyerContacts;
}
/**
* @param Google_Service_AdExchangeBuyer_PrivateData
*/
public function setBuyerPrivateData(Google_Service_AdExchangeBuyer_PrivateData $buyerPrivateData)
{
$this->buyerPrivateData = $buyerPrivateData;
}
/**
* @return Google_Service_AdExchangeBuyer_PrivateData
*/
public function getBuyerPrivateData()
{
return $this->buyerPrivateData;
@@ -137,10 +161,16 @@ class Google_Service_AdExchangeBuyer_Proposal extends Google_Collection
{
return $this->kind;
}
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceLabel
*/
public function setLabels($labels)
{
$this->labels = $labels;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceLabel
*/
public function getLabels()
{
return $this->labels;
@@ -217,18 +247,30 @@ class Google_Service_AdExchangeBuyer_Proposal extends Google_Collection
{
return $this->revisionTimeMs;
}
/**
* @param Google_Service_AdExchangeBuyer_Seller
*/
public function setSeller(Google_Service_AdExchangeBuyer_Seller $seller)
{
$this->seller = $seller;
}
/**
* @return Google_Service_AdExchangeBuyer_Seller
*/
public function getSeller()
{
return $this->seller;
}
/**
* @param Google_Service_AdExchangeBuyer_ContactInformation
*/
public function setSellerContacts($sellerContacts)
{
$this->sellerContacts = $sellerContacts;
}
/**
* @return Google_Service_AdExchangeBuyer_ContactInformation
*/
public function getSellerContacts()
{
return $this->sellerContacts;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -180,10 +180,16 @@ class Google_Service_AdExchangeBuyer_PublisherProfileApiProto extends Google_Col
{
return $this->publisherProfileId;
}
/**
* @param Google_Service_AdExchangeBuyer_PublisherProvidedForecast
*/
public function setPublisherProvidedForecast(Google_Service_AdExchangeBuyer_PublisherProvidedForecast $publisherProvidedForecast)
{
$this->publisherProvidedForecast = $publisherProvidedForecast;
}
/**
* @return Google_Service_AdExchangeBuyer_PublisherProvidedForecast
*/
public function getPublisherProvidedForecast()
{
return $this->publisherProvidedForecast;
@@ -204,10 +210,16 @@ class Google_Service_AdExchangeBuyer_PublisherProfileApiProto extends Google_Col
{
return $this->samplePageLink;
}
/**
* @param Google_Service_AdExchangeBuyer_Seller
*/
public function setSeller(Google_Service_AdExchangeBuyer_Seller $seller)
{
$this->seller = $seller;
}
/**
* @return Google_Service_AdExchangeBuyer_Seller
*/
public function getSeller()
{
return $this->seller;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -23,10 +23,16 @@ class Google_Service_AdExchangeBuyer_PublisherProvidedForecast extends Google_Co
public $weeklyImpressions;
public $weeklyUniques;
/**
* @param Google_Service_AdExchangeBuyer_Dimension
*/
public function setDimensions($dimensions)
{
$this->dimensions = $dimensions;
}
/**
* @return Google_Service_AdExchangeBuyer_Dimension
*/
public function getDimensions()
{
return $this->dimensions;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -24,18 +24,30 @@ class Google_Service_AdExchangeBuyer_SharedTargeting extends Google_Collection
protected $inclusionsDataType = 'array';
public $key;
/**
* @param Google_Service_AdExchangeBuyer_TargetingValue
*/
public function setExclusions($exclusions)
{
$this->exclusions = $exclusions;
}
/**
* @return Google_Service_AdExchangeBuyer_TargetingValue
*/
public function getExclusions()
{
return $this->exclusions;
}
/**
* @param Google_Service_AdExchangeBuyer_TargetingValue
*/
public function setInclusions($inclusions)
{
$this->inclusions = $inclusions;
}
/**
* @return Google_Service_AdExchangeBuyer_TargetingValue
*/
public function getInclusions()
{
return $this->inclusions;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -21,25 +21,69 @@ class Google_Service_AdExchangeBuyer_TargetingValue extends Google_Model
protected $creativeSizeValueDataType = '';
protected $dayPartTargetingValueType = 'Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting';
protected $dayPartTargetingValueDataType = '';
protected $demogAgeCriteriaValueType = 'Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria';
protected $demogAgeCriteriaValueDataType = '';
protected $demogGenderCriteriaValueType = 'Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria';
protected $demogGenderCriteriaValueDataType = '';
public $longValue;
public $stringValue;
/**
* @param Google_Service_AdExchangeBuyer_TargetingValueCreativeSize
*/
public function setCreativeSizeValue(Google_Service_AdExchangeBuyer_TargetingValueCreativeSize $creativeSizeValue)
{
$this->creativeSizeValue = $creativeSizeValue;
}
/**
* @return Google_Service_AdExchangeBuyer_TargetingValueCreativeSize
*/
public function getCreativeSizeValue()
{
return $this->creativeSizeValue;
}
/**
* @param Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting
*/
public function setDayPartTargetingValue(Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting $dayPartTargetingValue)
{
$this->dayPartTargetingValue = $dayPartTargetingValue;
}
/**
* @return Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting
*/
public function getDayPartTargetingValue()
{
return $this->dayPartTargetingValue;
}
/**
* @param Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria
*/
public function setDemogAgeCriteriaValue(Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria $demogAgeCriteriaValue)
{
$this->demogAgeCriteriaValue = $demogAgeCriteriaValue;
}
/**
* @return Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria
*/
public function getDemogAgeCriteriaValue()
{
return $this->demogAgeCriteriaValue;
}
/**
* @param Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria
*/
public function setDemogGenderCriteriaValue(Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria $demogGenderCriteriaValue)
{
$this->demogGenderCriteriaValue = $demogGenderCriteriaValue;
}
/**
* @return Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria
*/
public function getDemogGenderCriteriaValue()
{
return $this->demogGenderCriteriaValue;
}
public function setLongValue($longValue)
{
$this->longValue = $longValue;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -18,17 +18,33 @@
class Google_Service_AdExchangeBuyer_TargetingValueCreativeSize extends Google_Collection
{
protected $collection_key = 'companionSizes';
public $allowedFormats;
protected $companionSizesType = 'Google_Service_AdExchangeBuyer_TargetingValueSize';
protected $companionSizesDataType = 'array';
public $creativeSizeType;
public $nativeTemplate;
protected $sizeType = 'Google_Service_AdExchangeBuyer_TargetingValueSize';
protected $sizeDataType = '';
public $skippableAdType;
public function setAllowedFormats($allowedFormats)
{
$this->allowedFormats = $allowedFormats;
}
public function getAllowedFormats()
{
return $this->allowedFormats;
}
/**
* @param Google_Service_AdExchangeBuyer_TargetingValueSize
*/
public function setCompanionSizes($companionSizes)
{
$this->companionSizes = $companionSizes;
}
/**
* @return Google_Service_AdExchangeBuyer_TargetingValueSize
*/
public function getCompanionSizes()
{
return $this->companionSizes;
@@ -41,10 +57,24 @@ class Google_Service_AdExchangeBuyer_TargetingValueCreativeSize extends Google_C
{
return $this->creativeSizeType;
}
public function setNativeTemplate($nativeTemplate)
{
$this->nativeTemplate = $nativeTemplate;
}
public function getNativeTemplate()
{
return $this->nativeTemplate;
}
/**
* @param Google_Service_AdExchangeBuyer_TargetingValueSize
*/
public function setSize(Google_Service_AdExchangeBuyer_TargetingValueSize $size)
{
$this->size = $size;
}
/**
* @return Google_Service_AdExchangeBuyer_TargetingValueSize
*/
public function getSize()
{
return $this->size;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -22,10 +22,16 @@ class Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting extends Goog
protected $dayPartsDataType = 'array';
public $timeZoneType;
/**
* @param Google_Service_AdExchangeBuyer_TargetingValueDayPartTargetingDayPart
*/
public function setDayParts($dayParts)
{
$this->dayParts = $dayParts;
}
/**
* @return Google_Service_AdExchangeBuyer_TargetingValueDayPartTargetingDayPart
*/
public function getDayParts()
{
return $this->dayParts;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -31,10 +31,16 @@ class Google_Service_AdExchangeBuyer_UpdatePrivateAuctionProposalRequest extends
{
return $this->externalDealId;
}
/**
* @param Google_Service_AdExchangeBuyer_MarketplaceNote
*/
public function setNote(Google_Service_AdExchangeBuyer_MarketplaceNote $note)
{
$this->note = $note;
}
/**
* @return Google_Service_AdExchangeBuyer_MarketplaceNote
*/
public function getNote()
{
return $this->note;

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -25,7 +25,7 @@
*
* <p>
* For more information about this service, see the API
* <a href="https://developers.google.com/ad-exchange/buyer-rest/guides/client-access/" target="_blank">Documentation</a>
* <a href="https://developers.google.com/ad-exchange/buyer-rest/reference/rest/" target="_blank">Documentation</a>
* </p>
*
* @author Google, Inc.
@@ -41,6 +41,29 @@ class Google_Service_AdExchangeBuyerII extends Google_Service
public $accounts_clients_users;
public $accounts_creatives;
public $accounts_creatives_dealAssociations;
public $accounts_publishers;
public $bidders_accounts_filterSets;
public $bidders_accounts_filterSets_bidMetrics;
public $bidders_accounts_filterSets_bidResponseErrors;
public $bidders_accounts_filterSets_bidResponsesWithoutBids;
public $bidders_accounts_filterSets_filteredBidRequests;
public $bidders_accounts_filterSets_filteredBids;
public $bidders_accounts_filterSets_filteredBids_creatives;
public $bidders_accounts_filterSets_filteredBids_details;
public $bidders_accounts_filterSets_impressionMetrics;
public $bidders_accounts_filterSets_losingBids;
public $bidders_accounts_filterSets_nonBillableWinningBids;
public $bidders_filterSets;
public $bidders_filterSets_bidMetrics;
public $bidders_filterSets_bidResponseErrors;
public $bidders_filterSets_bidResponsesWithoutBids;
public $bidders_filterSets_filteredBidRequests;
public $bidders_filterSets_filteredBids;
public $bidders_filterSets_filteredBids_creatives;
public $bidders_filterSets_filteredBids_details;
public $bidders_filterSets_impressionMetrics;
public $bidders_filterSets_losingBids;
public $bidders_filterSets_nonBillableWinningBids;
/**
* Constructs the internal representation of the AdExchangeBuyerII service.
@@ -99,6 +122,10 @@ class Google_Service_AdExchangeBuyerII extends Google_Service
'location' => 'query',
'type' => 'string',
),
'partnerClientId' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
@@ -178,14 +205,14 @@ class Google_Service_AdExchangeBuyerII extends Google_Service
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
),
),
)
@@ -437,5 +464,733 @@ class Google_Service_AdExchangeBuyerII extends Google_Service
)
)
);
$this->accounts_publishers = new Google_Service_AdExchangeBuyerII_Resource_AccountsPublishers(
$this,
$this->serviceName,
'publishers',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/accounts/{accountId}/publishers',
'httpMethod' => 'GET',
'parameters' => array(
'accountId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'environment' => array(
'location' => 'query',
'type' => 'string',
),
),
),
)
)
);
$this->bidders_accounts_filterSets = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSets(
$this,
$this->serviceName,
'filterSets',
array(
'methods' => array(
'create' => array(
'path' => 'v2beta1/{+ownerName}/filterSets',
'httpMethod' => 'POST',
'parameters' => array(
'ownerName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'isTransient' => array(
'location' => 'query',
'type' => 'boolean',
),
),
),'delete' => array(
'path' => 'v2beta1/{+name}',
'httpMethod' => 'DELETE',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'get' => array(
'path' => 'v2beta1/{+name}',
'httpMethod' => 'GET',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'list' => array(
'path' => 'v2beta1/{+ownerName}/filterSets',
'httpMethod' => 'GET',
'parameters' => array(
'ownerName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_accounts_filterSets_bidMetrics = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsBidMetrics(
$this,
$this->serviceName,
'bidMetrics',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/bidMetrics',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_accounts_filterSets_bidResponseErrors = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsBidResponseErrors(
$this,
$this->serviceName,
'bidResponseErrors',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/bidResponseErrors',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
),
),
)
)
);
$this->bidders_accounts_filterSets_bidResponsesWithoutBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsBidResponsesWithoutBids(
$this,
$this->serviceName,
'bidResponsesWithoutBids',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/bidResponsesWithoutBids',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_accounts_filterSets_filteredBidRequests = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBidRequests(
$this,
$this->serviceName,
'filteredBidRequests',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/filteredBidRequests',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_accounts_filterSets_filteredBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBids(
$this,
$this->serviceName,
'filteredBids',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/filteredBids',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_accounts_filterSets_filteredBids_creatives = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBidsCreatives(
$this,
$this->serviceName,
'creatives',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/filteredBids/{creativeStatusId}/creatives',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'creativeStatusId' => array(
'location' => 'path',
'type' => 'integer',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_accounts_filterSets_filteredBids_details = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsFilteredBidsDetails(
$this,
$this->serviceName,
'details',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/filteredBids/{creativeStatusId}/details',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'creativeStatusId' => array(
'location' => 'path',
'type' => 'integer',
'required' => true,
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
),
),
)
)
);
$this->bidders_accounts_filterSets_impressionMetrics = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsImpressionMetrics(
$this,
$this->serviceName,
'impressionMetrics',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/impressionMetrics',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_accounts_filterSets_losingBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsLosingBids(
$this,
$this->serviceName,
'losingBids',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/losingBids',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_accounts_filterSets_nonBillableWinningBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersAccountsFilterSetsNonBillableWinningBids(
$this,
$this->serviceName,
'nonBillableWinningBids',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/nonBillableWinningBids',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_filterSets = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSets(
$this,
$this->serviceName,
'filterSets',
array(
'methods' => array(
'create' => array(
'path' => 'v2beta1/{+ownerName}/filterSets',
'httpMethod' => 'POST',
'parameters' => array(
'ownerName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'isTransient' => array(
'location' => 'query',
'type' => 'boolean',
),
),
),'delete' => array(
'path' => 'v2beta1/{+name}',
'httpMethod' => 'DELETE',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'get' => array(
'path' => 'v2beta1/{+name}',
'httpMethod' => 'GET',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'list' => array(
'path' => 'v2beta1/{+ownerName}/filterSets',
'httpMethod' => 'GET',
'parameters' => array(
'ownerName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
),
),
)
)
);
$this->bidders_filterSets_bidMetrics = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsBidMetrics(
$this,
$this->serviceName,
'bidMetrics',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/bidMetrics',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_filterSets_bidResponseErrors = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsBidResponseErrors(
$this,
$this->serviceName,
'bidResponseErrors',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/bidResponseErrors',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_filterSets_bidResponsesWithoutBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsBidResponsesWithoutBids(
$this,
$this->serviceName,
'bidResponsesWithoutBids',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/bidResponsesWithoutBids',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_filterSets_filteredBidRequests = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBidRequests(
$this,
$this->serviceName,
'filteredBidRequests',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/filteredBidRequests',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_filterSets_filteredBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBids(
$this,
$this->serviceName,
'filteredBids',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/filteredBids',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_filterSets_filteredBids_creatives = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBidsCreatives(
$this,
$this->serviceName,
'creatives',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/filteredBids/{creativeStatusId}/creatives',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'creativeStatusId' => array(
'location' => 'path',
'type' => 'integer',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_filterSets_filteredBids_details = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsFilteredBidsDetails(
$this,
$this->serviceName,
'details',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/filteredBids/{creativeStatusId}/details',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'creativeStatusId' => array(
'location' => 'path',
'type' => 'integer',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_filterSets_impressionMetrics = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsImpressionMetrics(
$this,
$this->serviceName,
'impressionMetrics',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/impressionMetrics',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_filterSets_losingBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsLosingBids(
$this,
$this->serviceName,
'losingBids',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/losingBids',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
$this->bidders_filterSets_nonBillableWinningBids = new Google_Service_AdExchangeBuyerII_Resource_BiddersFilterSetsNonBillableWinningBids(
$this,
$this->serviceName,
'nonBillableWinningBids',
array(
'methods' => array(
'list' => array(
'path' => 'v2beta1/{+filterSetName}/nonBillableWinningBids',
'httpMethod' => 'GET',
'parameters' => array(
'filterSetName' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
}
}

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -20,10 +20,16 @@ class Google_Service_AdExchangeBuyerII_AddDealAssociationRequest extends Google_
protected $associationType = 'Google_Service_AdExchangeBuyerII_CreativeDealAssociation';
protected $associationDataType = '';
/**
* @param Google_Service_AdExchangeBuyerII_CreativeDealAssociation
*/
public function setAssociation(Google_Service_AdExchangeBuyerII_CreativeDealAssociation $association)
{
$this->association = $association;
}
/**
* @return Google_Service_AdExchangeBuyerII_CreativeDealAssociation
*/
public function getAssociation()
{
return $this->association;

Some files were not shown because too many files have changed in this diff Show More