Initial commit
This commit is contained in:
110
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Account.php
vendored
Normal file
110
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Account.php
vendored
Normal file
@@ -0,0 +1,110 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
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;
|
||||
public $cookieMatchingUrl;
|
||||
public $id;
|
||||
public $kind;
|
||||
public $maximumActiveCreatives;
|
||||
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;
|
||||
}
|
||||
public function setCookieMatchingNid($cookieMatchingNid)
|
||||
{
|
||||
$this->cookieMatchingNid = $cookieMatchingNid;
|
||||
}
|
||||
public function getCookieMatchingNid()
|
||||
{
|
||||
return $this->cookieMatchingNid;
|
||||
}
|
||||
public function setCookieMatchingUrl($cookieMatchingUrl)
|
||||
{
|
||||
$this->cookieMatchingUrl = $cookieMatchingUrl;
|
||||
}
|
||||
public function getCookieMatchingUrl()
|
||||
{
|
||||
return $this->cookieMatchingUrl;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setMaximumActiveCreatives($maximumActiveCreatives)
|
||||
{
|
||||
$this->maximumActiveCreatives = $maximumActiveCreatives;
|
||||
}
|
||||
public function getMaximumActiveCreatives()
|
||||
{
|
||||
return $this->maximumActiveCreatives;
|
||||
}
|
||||
public function setMaximumTotalQps($maximumTotalQps)
|
||||
{
|
||||
$this->maximumTotalQps = $maximumTotalQps;
|
||||
}
|
||||
public function getMaximumTotalQps()
|
||||
{
|
||||
return $this->maximumTotalQps;
|
||||
}
|
||||
public function setNumberActiveCreatives($numberActiveCreatives)
|
||||
{
|
||||
$this->numberActiveCreatives = $numberActiveCreatives;
|
||||
}
|
||||
public function getNumberActiveCreatives()
|
||||
{
|
||||
return $this->numberActiveCreatives;
|
||||
}
|
||||
}
|
||||
57
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AccountBidderLocation.php
vendored
Normal file
57
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AccountBidderLocation.php
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_AccountBidderLocation extends Google_Model
|
||||
{
|
||||
public $bidProtocol;
|
||||
public $maximumQps;
|
||||
public $region;
|
||||
public $url;
|
||||
|
||||
public function setBidProtocol($bidProtocol)
|
||||
{
|
||||
$this->bidProtocol = $bidProtocol;
|
||||
}
|
||||
public function getBidProtocol()
|
||||
{
|
||||
return $this->bidProtocol;
|
||||
}
|
||||
public function setMaximumQps($maximumQps)
|
||||
{
|
||||
$this->maximumQps = $maximumQps;
|
||||
}
|
||||
public function getMaximumQps()
|
||||
{
|
||||
return $this->maximumQps;
|
||||
}
|
||||
public function setRegion($region)
|
||||
{
|
||||
$this->region = $region;
|
||||
}
|
||||
public function getRegion()
|
||||
{
|
||||
return $this->region;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AccountsList.php
vendored
Normal file
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AccountsList.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_AccountsList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_AdExchangeBuyer_Account';
|
||||
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;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
}
|
||||
56
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderDealsRequest.php
vendored
Normal file
56
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderDealsRequest.php
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_AddOrderDealsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
protected $dealsType = 'Google_Service_AdExchangeBuyer_MarketplaceDeal';
|
||||
protected $dealsDataType = 'array';
|
||||
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;
|
||||
}
|
||||
public function setProposalRevisionNumber($proposalRevisionNumber)
|
||||
{
|
||||
$this->proposalRevisionNumber = $proposalRevisionNumber;
|
||||
}
|
||||
public function getProposalRevisionNumber()
|
||||
{
|
||||
return $this->proposalRevisionNumber;
|
||||
}
|
||||
public function setUpdateAction($updateAction)
|
||||
{
|
||||
$this->updateAction = $updateAction;
|
||||
}
|
||||
public function getUpdateAction()
|
||||
{
|
||||
return $this->updateAction;
|
||||
}
|
||||
}
|
||||
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderDealsResponse.php
vendored
Normal file
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderDealsResponse.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_AddOrderDealsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
protected $dealsType = 'Google_Service_AdExchangeBuyer_MarketplaceDeal';
|
||||
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;
|
||||
}
|
||||
public function setProposalRevisionNumber($proposalRevisionNumber)
|
||||
{
|
||||
$this->proposalRevisionNumber = $proposalRevisionNumber;
|
||||
}
|
||||
public function getProposalRevisionNumber()
|
||||
{
|
||||
return $this->proposalRevisionNumber;
|
||||
}
|
||||
}
|
||||
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderNotesRequest.php
vendored
Normal file
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderNotesRequest.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_AddOrderNotesRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'notes';
|
||||
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;
|
||||
}
|
||||
}
|
||||
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderNotesResponse.php
vendored
Normal file
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/AddOrderNotesResponse.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_AddOrderNotesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'notes';
|
||||
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;
|
||||
}
|
||||
}
|
||||
58
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/BillingInfo.php
vendored
Normal file
58
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/BillingInfo.php
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_BillingInfo extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'billingId';
|
||||
public $accountId;
|
||||
public $accountName;
|
||||
public $billingId;
|
||||
public $kind;
|
||||
|
||||
public function setAccountId($accountId)
|
||||
{
|
||||
$this->accountId = $accountId;
|
||||
}
|
||||
public function getAccountId()
|
||||
{
|
||||
return $this->accountId;
|
||||
}
|
||||
public function setAccountName($accountName)
|
||||
{
|
||||
$this->accountName = $accountName;
|
||||
}
|
||||
public function getAccountName()
|
||||
{
|
||||
return $this->accountName;
|
||||
}
|
||||
public function setBillingId($billingId)
|
||||
{
|
||||
$this->billingId = $billingId;
|
||||
}
|
||||
public function getBillingId()
|
||||
{
|
||||
return $this->billingId;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
}
|
||||
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/BillingInfoList.php
vendored
Normal file
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/BillingInfoList.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_BillingInfoList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_AdExchangeBuyer_BillingInfo';
|
||||
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;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
}
|
||||
75
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Budget.php
vendored
Normal file
75
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Budget.php
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_Budget extends Google_Model
|
||||
{
|
||||
public $accountId;
|
||||
public $billingId;
|
||||
public $budgetAmount;
|
||||
public $currencyCode;
|
||||
public $id;
|
||||
public $kind;
|
||||
|
||||
public function setAccountId($accountId)
|
||||
{
|
||||
$this->accountId = $accountId;
|
||||
}
|
||||
public function getAccountId()
|
||||
{
|
||||
return $this->accountId;
|
||||
}
|
||||
public function setBillingId($billingId)
|
||||
{
|
||||
$this->billingId = $billingId;
|
||||
}
|
||||
public function getBillingId()
|
||||
{
|
||||
return $this->billingId;
|
||||
}
|
||||
public function setBudgetAmount($budgetAmount)
|
||||
{
|
||||
$this->budgetAmount = $budgetAmount;
|
||||
}
|
||||
public function getBudgetAmount()
|
||||
{
|
||||
return $this->budgetAmount;
|
||||
}
|
||||
public function setCurrencyCode($currencyCode)
|
||||
{
|
||||
$this->currencyCode = $currencyCode;
|
||||
}
|
||||
public function getCurrencyCode()
|
||||
{
|
||||
return $this->currencyCode;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Buyer.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Buyer.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_Buyer extends Google_Model
|
||||
{
|
||||
public $accountId;
|
||||
|
||||
public function setAccountId($accountId)
|
||||
{
|
||||
$this->accountId = $accountId;
|
||||
}
|
||||
public function getAccountId()
|
||||
{
|
||||
return $this->accountId;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/ContactInformation.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/ContactInformation.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_ContactInformation extends Google_Model
|
||||
{
|
||||
public $email;
|
||||
public $name;
|
||||
|
||||
public function setEmail($email)
|
||||
{
|
||||
$this->email = $email;
|
||||
}
|
||||
public function getEmail()
|
||||
{
|
||||
return $this->email;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
}
|
||||
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreateOrdersRequest.php
vendored
Normal file
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreateOrdersRequest.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreateOrdersRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'proposals';
|
||||
protected $proposalsType = 'Google_Service_AdExchangeBuyer_Proposal';
|
||||
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;
|
||||
}
|
||||
public function setWebPropertyCode($webPropertyCode)
|
||||
{
|
||||
$this->webPropertyCode = $webPropertyCode;
|
||||
}
|
||||
public function getWebPropertyCode()
|
||||
{
|
||||
return $this->webPropertyCode;
|
||||
}
|
||||
}
|
||||
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreateOrdersResponse.php
vendored
Normal file
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreateOrdersResponse.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreateOrdersResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'proposals';
|
||||
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;
|
||||
}
|
||||
}
|
||||
339
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Creative.php
vendored
Normal file
339
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Creative.php
vendored
Normal file
@@ -0,0 +1,339 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_Creative extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'vendorType';
|
||||
protected $internal_gapi_mappings = array(
|
||||
"hTMLSnippet" => "HTMLSnippet",
|
||||
);
|
||||
public $hTMLSnippet;
|
||||
public $accountId;
|
||||
public $adChoicesDestinationUrl;
|
||||
protected $adTechnologyProvidersType = 'Google_Service_AdExchangeBuyer_CreativeAdTechnologyProviders';
|
||||
protected $adTechnologyProvidersDataType = '';
|
||||
public $advertiserId;
|
||||
public $advertiserName;
|
||||
public $agencyId;
|
||||
public $apiUploadTimestamp;
|
||||
public $attribute;
|
||||
public $buyerCreativeId;
|
||||
public $clickThroughUrl;
|
||||
protected $correctionsType = 'Google_Service_AdExchangeBuyer_CreativeCorrections';
|
||||
protected $correctionsDataType = 'array';
|
||||
public $creativeStatusIdentityType;
|
||||
public $dealsStatus;
|
||||
public $detectedDomains;
|
||||
protected $filteringReasonsType = 'Google_Service_AdExchangeBuyer_CreativeFilteringReasons';
|
||||
protected $filteringReasonsDataType = '';
|
||||
public $height;
|
||||
public $impressionTrackingUrl;
|
||||
public $kind;
|
||||
public $languages;
|
||||
protected $nativeAdType = 'Google_Service_AdExchangeBuyer_CreativeNativeAd';
|
||||
protected $nativeAdDataType = '';
|
||||
public $openAuctionStatus;
|
||||
public $productCategories;
|
||||
public $restrictedCategories;
|
||||
public $sensitiveCategories;
|
||||
protected $servingRestrictionsType = 'Google_Service_AdExchangeBuyer_CreativeServingRestrictions';
|
||||
protected $servingRestrictionsDataType = 'array';
|
||||
public $vendorType;
|
||||
public $version;
|
||||
public $videoURL;
|
||||
public $videoVastXML;
|
||||
public $width;
|
||||
|
||||
public function setHTMLSnippet($hTMLSnippet)
|
||||
{
|
||||
$this->hTMLSnippet = $hTMLSnippet;
|
||||
}
|
||||
public function getHTMLSnippet()
|
||||
{
|
||||
return $this->hTMLSnippet;
|
||||
}
|
||||
public function setAccountId($accountId)
|
||||
{
|
||||
$this->accountId = $accountId;
|
||||
}
|
||||
public function getAccountId()
|
||||
{
|
||||
return $this->accountId;
|
||||
}
|
||||
public function setAdChoicesDestinationUrl($adChoicesDestinationUrl)
|
||||
{
|
||||
$this->adChoicesDestinationUrl = $adChoicesDestinationUrl;
|
||||
}
|
||||
public function getAdChoicesDestinationUrl()
|
||||
{
|
||||
return $this->adChoicesDestinationUrl;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_AdExchangeBuyer_CreativeAdTechnologyProviders
|
||||
*/
|
||||
public function setAdTechnologyProviders(Google_Service_AdExchangeBuyer_CreativeAdTechnologyProviders $adTechnologyProviders)
|
||||
{
|
||||
$this->adTechnologyProviders = $adTechnologyProviders;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_AdExchangeBuyer_CreativeAdTechnologyProviders
|
||||
*/
|
||||
public function getAdTechnologyProviders()
|
||||
{
|
||||
return $this->adTechnologyProviders;
|
||||
}
|
||||
public function setAdvertiserId($advertiserId)
|
||||
{
|
||||
$this->advertiserId = $advertiserId;
|
||||
}
|
||||
public function getAdvertiserId()
|
||||
{
|
||||
return $this->advertiserId;
|
||||
}
|
||||
public function setAdvertiserName($advertiserName)
|
||||
{
|
||||
$this->advertiserName = $advertiserName;
|
||||
}
|
||||
public function getAdvertiserName()
|
||||
{
|
||||
return $this->advertiserName;
|
||||
}
|
||||
public function setAgencyId($agencyId)
|
||||
{
|
||||
$this->agencyId = $agencyId;
|
||||
}
|
||||
public function getAgencyId()
|
||||
{
|
||||
return $this->agencyId;
|
||||
}
|
||||
public function setApiUploadTimestamp($apiUploadTimestamp)
|
||||
{
|
||||
$this->apiUploadTimestamp = $apiUploadTimestamp;
|
||||
}
|
||||
public function getApiUploadTimestamp()
|
||||
{
|
||||
return $this->apiUploadTimestamp;
|
||||
}
|
||||
public function setAttribute($attribute)
|
||||
{
|
||||
$this->attribute = $attribute;
|
||||
}
|
||||
public function getAttribute()
|
||||
{
|
||||
return $this->attribute;
|
||||
}
|
||||
public function setBuyerCreativeId($buyerCreativeId)
|
||||
{
|
||||
$this->buyerCreativeId = $buyerCreativeId;
|
||||
}
|
||||
public function getBuyerCreativeId()
|
||||
{
|
||||
return $this->buyerCreativeId;
|
||||
}
|
||||
public function setClickThroughUrl($clickThroughUrl)
|
||||
{
|
||||
$this->clickThroughUrl = $clickThroughUrl;
|
||||
}
|
||||
public function getClickThroughUrl()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setCreativeStatusIdentityType($creativeStatusIdentityType)
|
||||
{
|
||||
$this->creativeStatusIdentityType = $creativeStatusIdentityType;
|
||||
}
|
||||
public function getCreativeStatusIdentityType()
|
||||
{
|
||||
return $this->creativeStatusIdentityType;
|
||||
}
|
||||
public function setDealsStatus($dealsStatus)
|
||||
{
|
||||
$this->dealsStatus = $dealsStatus;
|
||||
}
|
||||
public function getDealsStatus()
|
||||
{
|
||||
return $this->dealsStatus;
|
||||
}
|
||||
public function setDetectedDomains($detectedDomains)
|
||||
{
|
||||
$this->detectedDomains = $detectedDomains;
|
||||
}
|
||||
public function getDetectedDomains()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
public function setImpressionTrackingUrl($impressionTrackingUrl)
|
||||
{
|
||||
$this->impressionTrackingUrl = $impressionTrackingUrl;
|
||||
}
|
||||
public function getImpressionTrackingUrl()
|
||||
{
|
||||
return $this->impressionTrackingUrl;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setLanguages($languages)
|
||||
{
|
||||
$this->languages = $languages;
|
||||
}
|
||||
public function getLanguages()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setOpenAuctionStatus($openAuctionStatus)
|
||||
{
|
||||
$this->openAuctionStatus = $openAuctionStatus;
|
||||
}
|
||||
public function getOpenAuctionStatus()
|
||||
{
|
||||
return $this->openAuctionStatus;
|
||||
}
|
||||
public function setProductCategories($productCategories)
|
||||
{
|
||||
$this->productCategories = $productCategories;
|
||||
}
|
||||
public function getProductCategories()
|
||||
{
|
||||
return $this->productCategories;
|
||||
}
|
||||
public function setRestrictedCategories($restrictedCategories)
|
||||
{
|
||||
$this->restrictedCategories = $restrictedCategories;
|
||||
}
|
||||
public function getRestrictedCategories()
|
||||
{
|
||||
return $this->restrictedCategories;
|
||||
}
|
||||
public function setSensitiveCategories($sensitiveCategories)
|
||||
{
|
||||
$this->sensitiveCategories = $sensitiveCategories;
|
||||
}
|
||||
public function getSensitiveCategories()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setVendorType($vendorType)
|
||||
{
|
||||
$this->vendorType = $vendorType;
|
||||
}
|
||||
public function getVendorType()
|
||||
{
|
||||
return $this->vendorType;
|
||||
}
|
||||
public function setVersion($version)
|
||||
{
|
||||
$this->version = $version;
|
||||
}
|
||||
public function getVersion()
|
||||
{
|
||||
return $this->version;
|
||||
}
|
||||
public function setVideoURL($videoURL)
|
||||
{
|
||||
$this->videoURL = $videoURL;
|
||||
}
|
||||
public function getVideoURL()
|
||||
{
|
||||
return $this->videoURL;
|
||||
}
|
||||
public function setVideoVastXML($videoVastXML)
|
||||
{
|
||||
$this->videoVastXML = $videoVastXML;
|
||||
}
|
||||
public function getVideoVastXML()
|
||||
{
|
||||
return $this->videoVastXML;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeAdTechnologyProviders extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'detectedProviderIds';
|
||||
public $detectedProviderIds;
|
||||
public $hasUnidentifiedProvider;
|
||||
|
||||
public function setDetectedProviderIds($detectedProviderIds)
|
||||
{
|
||||
$this->detectedProviderIds = $detectedProviderIds;
|
||||
}
|
||||
public function getDetectedProviderIds()
|
||||
{
|
||||
return $this->detectedProviderIds;
|
||||
}
|
||||
public function setHasUnidentifiedProvider($hasUnidentifiedProvider)
|
||||
{
|
||||
$this->hasUnidentifiedProvider = $hasUnidentifiedProvider;
|
||||
}
|
||||
public function getHasUnidentifiedProvider()
|
||||
{
|
||||
return $this->hasUnidentifiedProvider;
|
||||
}
|
||||
}
|
||||
56
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeCorrections.php
vendored
Normal file
56
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeCorrections.php
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeCorrections extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'details';
|
||||
protected $contextsType = 'Google_Service_AdExchangeBuyer_CreativeCorrectionsContexts';
|
||||
protected $contextsDataType = 'array';
|
||||
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;
|
||||
}
|
||||
public function setDetails($details)
|
||||
{
|
||||
$this->details = $details;
|
||||
}
|
||||
public function getDetails()
|
||||
{
|
||||
return $this->details;
|
||||
}
|
||||
public function setReason($reason)
|
||||
{
|
||||
$this->reason = $reason;
|
||||
}
|
||||
public function getReason()
|
||||
{
|
||||
return $this->reason;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeCorrectionsContexts extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'platform';
|
||||
public $auctionType;
|
||||
public $contextType;
|
||||
public $geoCriteriaId;
|
||||
public $platform;
|
||||
|
||||
public function setAuctionType($auctionType)
|
||||
{
|
||||
$this->auctionType = $auctionType;
|
||||
}
|
||||
public function getAuctionType()
|
||||
{
|
||||
return $this->auctionType;
|
||||
}
|
||||
public function setContextType($contextType)
|
||||
{
|
||||
$this->contextType = $contextType;
|
||||
}
|
||||
public function getContextType()
|
||||
{
|
||||
return $this->contextType;
|
||||
}
|
||||
public function setGeoCriteriaId($geoCriteriaId)
|
||||
{
|
||||
$this->geoCriteriaId = $geoCriteriaId;
|
||||
}
|
||||
public function getGeoCriteriaId()
|
||||
{
|
||||
return $this->geoCriteriaId;
|
||||
}
|
||||
public function setPlatform($platform)
|
||||
{
|
||||
$this->platform = $platform;
|
||||
}
|
||||
public function getPlatform()
|
||||
{
|
||||
return $this->platform;
|
||||
}
|
||||
}
|
||||
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeDealIds.php
vendored
Normal file
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeDealIds.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeDealIds extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dealStatuses';
|
||||
protected $dealStatusesType = 'Google_Service_AdExchangeBuyer_CreativeDealIdsDealStatuses';
|
||||
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;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeDealIdsDealStatuses extends Google_Model
|
||||
{
|
||||
public $arcStatus;
|
||||
public $dealId;
|
||||
public $webPropertyId;
|
||||
|
||||
public function setArcStatus($arcStatus)
|
||||
{
|
||||
$this->arcStatus = $arcStatus;
|
||||
}
|
||||
public function getArcStatus()
|
||||
{
|
||||
return $this->arcStatus;
|
||||
}
|
||||
public function setDealId($dealId)
|
||||
{
|
||||
$this->dealId = $dealId;
|
||||
}
|
||||
public function getDealId()
|
||||
{
|
||||
return $this->dealId;
|
||||
}
|
||||
public function setWebPropertyId($webPropertyId)
|
||||
{
|
||||
$this->webPropertyId = $webPropertyId;
|
||||
}
|
||||
public function getWebPropertyId()
|
||||
{
|
||||
return $this->webPropertyId;
|
||||
}
|
||||
}
|
||||
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeFilteringReasons.php
vendored
Normal file
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeFilteringReasons.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeFilteringReasons extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'reasons';
|
||||
public $date;
|
||||
protected $reasonsType = 'Google_Service_AdExchangeBuyer_CreativeFilteringReasonsReasons';
|
||||
protected $reasonsDataType = 'array';
|
||||
|
||||
public function setDate($date)
|
||||
{
|
||||
$this->date = $date;
|
||||
}
|
||||
public function getDate()
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeFilteringReasonsReasons extends Google_Model
|
||||
{
|
||||
public $filteringCount;
|
||||
public $filteringStatus;
|
||||
|
||||
public function setFilteringCount($filteringCount)
|
||||
{
|
||||
$this->filteringCount = $filteringCount;
|
||||
}
|
||||
public function getFilteringCount()
|
||||
{
|
||||
return $this->filteringCount;
|
||||
}
|
||||
public function setFilteringStatus($filteringStatus)
|
||||
{
|
||||
$this->filteringStatus = $filteringStatus;
|
||||
}
|
||||
public function getFilteringStatus()
|
||||
{
|
||||
return $this->filteringStatus;
|
||||
}
|
||||
}
|
||||
160
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAd.php
vendored
Normal file
160
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAd.php
vendored
Normal file
@@ -0,0 +1,160 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeNativeAd extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'impressionTrackingUrl';
|
||||
public $advertiser;
|
||||
protected $appIconType = 'Google_Service_AdExchangeBuyer_CreativeNativeAdAppIcon';
|
||||
protected $appIconDataType = '';
|
||||
public $body;
|
||||
public $callToAction;
|
||||
public $clickLinkUrl;
|
||||
public $clickTrackingUrl;
|
||||
public $headline;
|
||||
protected $imageType = 'Google_Service_AdExchangeBuyer_CreativeNativeAdImage';
|
||||
protected $imageDataType = '';
|
||||
public $impressionTrackingUrl;
|
||||
protected $logoType = 'Google_Service_AdExchangeBuyer_CreativeNativeAdLogo';
|
||||
protected $logoDataType = '';
|
||||
public $price;
|
||||
public $starRating;
|
||||
public $videoURL;
|
||||
|
||||
public function setAdvertiser($advertiser)
|
||||
{
|
||||
$this->advertiser = $advertiser;
|
||||
}
|
||||
public function getAdvertiser()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setBody($body)
|
||||
{
|
||||
$this->body = $body;
|
||||
}
|
||||
public function getBody()
|
||||
{
|
||||
return $this->body;
|
||||
}
|
||||
public function setCallToAction($callToAction)
|
||||
{
|
||||
$this->callToAction = $callToAction;
|
||||
}
|
||||
public function getCallToAction()
|
||||
{
|
||||
return $this->callToAction;
|
||||
}
|
||||
public function setClickLinkUrl($clickLinkUrl)
|
||||
{
|
||||
$this->clickLinkUrl = $clickLinkUrl;
|
||||
}
|
||||
public function getClickLinkUrl()
|
||||
{
|
||||
return $this->clickLinkUrl;
|
||||
}
|
||||
public function setClickTrackingUrl($clickTrackingUrl)
|
||||
{
|
||||
$this->clickTrackingUrl = $clickTrackingUrl;
|
||||
}
|
||||
public function getClickTrackingUrl()
|
||||
{
|
||||
return $this->clickTrackingUrl;
|
||||
}
|
||||
public function setHeadline($headline)
|
||||
{
|
||||
$this->headline = $headline;
|
||||
}
|
||||
public function getHeadline()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setImpressionTrackingUrl($impressionTrackingUrl)
|
||||
{
|
||||
$this->impressionTrackingUrl = $impressionTrackingUrl;
|
||||
}
|
||||
public function getImpressionTrackingUrl()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setPrice($price)
|
||||
{
|
||||
$this->price = $price;
|
||||
}
|
||||
public function getPrice()
|
||||
{
|
||||
return $this->price;
|
||||
}
|
||||
public function setStarRating($starRating)
|
||||
{
|
||||
$this->starRating = $starRating;
|
||||
}
|
||||
public function getStarRating()
|
||||
{
|
||||
return $this->starRating;
|
||||
}
|
||||
public function setVideoURL($videoURL)
|
||||
{
|
||||
$this->videoURL = $videoURL;
|
||||
}
|
||||
public function getVideoURL()
|
||||
{
|
||||
return $this->videoURL;
|
||||
}
|
||||
}
|
||||
48
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdAppIcon.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdAppIcon.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeNativeAdAppIcon extends Google_Model
|
||||
{
|
||||
public $height;
|
||||
public $url;
|
||||
public $width;
|
||||
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
48
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdImage.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdImage.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeNativeAdImage extends Google_Model
|
||||
{
|
||||
public $height;
|
||||
public $url;
|
||||
public $width;
|
||||
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
48
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdLogo.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativeNativeAdLogo.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeNativeAdLogo extends Google_Model
|
||||
{
|
||||
public $height;
|
||||
public $url;
|
||||
public $width;
|
||||
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeServingRestrictions extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'disapprovalReasons';
|
||||
protected $contextsType = 'Google_Service_AdExchangeBuyer_CreativeServingRestrictionsContexts';
|
||||
protected $contextsDataType = 'array';
|
||||
protected $disapprovalReasonsType = 'Google_Service_AdExchangeBuyer_CreativeServingRestrictionsDisapprovalReasons';
|
||||
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;
|
||||
}
|
||||
public function setReason($reason)
|
||||
{
|
||||
$this->reason = $reason;
|
||||
}
|
||||
public function getReason()
|
||||
{
|
||||
return $this->reason;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeServingRestrictionsContexts extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'platform';
|
||||
public $auctionType;
|
||||
public $contextType;
|
||||
public $geoCriteriaId;
|
||||
public $platform;
|
||||
|
||||
public function setAuctionType($auctionType)
|
||||
{
|
||||
$this->auctionType = $auctionType;
|
||||
}
|
||||
public function getAuctionType()
|
||||
{
|
||||
return $this->auctionType;
|
||||
}
|
||||
public function setContextType($contextType)
|
||||
{
|
||||
$this->contextType = $contextType;
|
||||
}
|
||||
public function getContextType()
|
||||
{
|
||||
return $this->contextType;
|
||||
}
|
||||
public function setGeoCriteriaId($geoCriteriaId)
|
||||
{
|
||||
$this->geoCriteriaId = $geoCriteriaId;
|
||||
}
|
||||
public function getGeoCriteriaId()
|
||||
{
|
||||
return $this->geoCriteriaId;
|
||||
}
|
||||
public function setPlatform($platform)
|
||||
{
|
||||
$this->platform = $platform;
|
||||
}
|
||||
public function getPlatform()
|
||||
{
|
||||
return $this->platform;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativeServingRestrictionsDisapprovalReasons extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'details';
|
||||
public $details;
|
||||
public $reason;
|
||||
|
||||
public function setDetails($details)
|
||||
{
|
||||
$this->details = $details;
|
||||
}
|
||||
public function getDetails()
|
||||
{
|
||||
return $this->details;
|
||||
}
|
||||
public function setReason($reason)
|
||||
{
|
||||
$this->reason = $reason;
|
||||
}
|
||||
public function getReason()
|
||||
{
|
||||
return $this->reason;
|
||||
}
|
||||
}
|
||||
56
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativesList.php
vendored
Normal file
56
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/CreativesList.php
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_CreativesList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_AdExchangeBuyer_Creative';
|
||||
protected $itemsDataType = 'array';
|
||||
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;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNextPageToken($nextPageToken)
|
||||
{
|
||||
$this->nextPageToken = $nextPageToken;
|
||||
}
|
||||
public function getNextPageToken()
|
||||
{
|
||||
return $this->nextPageToken;
|
||||
}
|
||||
}
|
||||
46
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealServingMetadata.php
vendored
Normal file
46
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealServingMetadata.php
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DealServingMetadata extends Google_Model
|
||||
{
|
||||
public $alcoholAdsAllowed;
|
||||
protected $dealPauseStatusType = 'Google_Service_AdExchangeBuyer_DealServingMetadataDealPauseStatus';
|
||||
protected $dealPauseStatusDataType = '';
|
||||
|
||||
public function setAlcoholAdsAllowed($alcoholAdsAllowed)
|
||||
{
|
||||
$this->alcoholAdsAllowed = $alcoholAdsAllowed;
|
||||
}
|
||||
public function getAlcoholAdsAllowed()
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DealServingMetadataDealPauseStatus extends Google_Model
|
||||
{
|
||||
public $buyerPauseReason;
|
||||
public $firstPausedBy;
|
||||
public $hasBuyerPaused;
|
||||
public $hasSellerPaused;
|
||||
public $sellerPauseReason;
|
||||
|
||||
public function setBuyerPauseReason($buyerPauseReason)
|
||||
{
|
||||
$this->buyerPauseReason = $buyerPauseReason;
|
||||
}
|
||||
public function getBuyerPauseReason()
|
||||
{
|
||||
return $this->buyerPauseReason;
|
||||
}
|
||||
public function setFirstPausedBy($firstPausedBy)
|
||||
{
|
||||
$this->firstPausedBy = $firstPausedBy;
|
||||
}
|
||||
public function getFirstPausedBy()
|
||||
{
|
||||
return $this->firstPausedBy;
|
||||
}
|
||||
public function setHasBuyerPaused($hasBuyerPaused)
|
||||
{
|
||||
$this->hasBuyerPaused = $hasBuyerPaused;
|
||||
}
|
||||
public function getHasBuyerPaused()
|
||||
{
|
||||
return $this->hasBuyerPaused;
|
||||
}
|
||||
public function setHasSellerPaused($hasSellerPaused)
|
||||
{
|
||||
$this->hasSellerPaused = $hasSellerPaused;
|
||||
}
|
||||
public function getHasSellerPaused()
|
||||
{
|
||||
return $this->hasSellerPaused;
|
||||
}
|
||||
public function setSellerPauseReason($sellerPauseReason)
|
||||
{
|
||||
$this->sellerPauseReason = $sellerPauseReason;
|
||||
}
|
||||
public function getSellerPauseReason()
|
||||
{
|
||||
return $this->sellerPauseReason;
|
||||
}
|
||||
}
|
||||
146
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTerms.php
vendored
Normal file
146
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DealTerms.php
vendored
Normal file
@@ -0,0 +1,146 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DealTerms extends Google_Model
|
||||
{
|
||||
public $brandingType;
|
||||
public $crossListedExternalDealIdType;
|
||||
public $description;
|
||||
protected $estimatedGrossSpendType = 'Google_Service_AdExchangeBuyer_Price';
|
||||
protected $estimatedGrossSpendDataType = '';
|
||||
public $estimatedImpressionsPerDay;
|
||||
protected $guaranteedFixedPriceTermsType = 'Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms';
|
||||
protected $guaranteedFixedPriceTermsDataType = '';
|
||||
protected $nonGuaranteedAuctionTermsType = 'Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms';
|
||||
protected $nonGuaranteedAuctionTermsDataType = '';
|
||||
protected $nonGuaranteedFixedPriceTermsType = 'Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms';
|
||||
protected $nonGuaranteedFixedPriceTermsDataType = '';
|
||||
protected $rubiconNonGuaranteedTermsType = 'Google_Service_AdExchangeBuyer_DealTermsRubiconNonGuaranteedTerms';
|
||||
protected $rubiconNonGuaranteedTermsDataType = '';
|
||||
public $sellerTimeZone;
|
||||
|
||||
public function setBrandingType($brandingType)
|
||||
{
|
||||
$this->brandingType = $brandingType;
|
||||
}
|
||||
public function getBrandingType()
|
||||
{
|
||||
return $this->brandingType;
|
||||
}
|
||||
public function setCrossListedExternalDealIdType($crossListedExternalDealIdType)
|
||||
{
|
||||
$this->crossListedExternalDealIdType = $crossListedExternalDealIdType;
|
||||
}
|
||||
public function getCrossListedExternalDealIdType()
|
||||
{
|
||||
return $this->crossListedExternalDealIdType;
|
||||
}
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setEstimatedImpressionsPerDay($estimatedImpressionsPerDay)
|
||||
{
|
||||
$this->estimatedImpressionsPerDay = $estimatedImpressionsPerDay;
|
||||
}
|
||||
public function getEstimatedImpressionsPerDay()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setSellerTimeZone($sellerTimeZone)
|
||||
{
|
||||
$this->sellerTimeZone = $sellerTimeZone;
|
||||
}
|
||||
public function getSellerTimeZone()
|
||||
{
|
||||
return $this->sellerTimeZone;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'fixedPrices';
|
||||
protected $billingInfoType = 'Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo';
|
||||
protected $billingInfoDataType = '';
|
||||
protected $fixedPricesType = 'Google_Service_AdExchangeBuyer_PricePerBuyer';
|
||||
protected $fixedPricesDataType = 'array';
|
||||
public $guaranteedImpressions;
|
||||
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;
|
||||
}
|
||||
public function setGuaranteedImpressions($guaranteedImpressions)
|
||||
{
|
||||
$this->guaranteedImpressions = $guaranteedImpressions;
|
||||
}
|
||||
public function getGuaranteedImpressions()
|
||||
{
|
||||
return $this->guaranteedImpressions;
|
||||
}
|
||||
public function setGuaranteedLooks($guaranteedLooks)
|
||||
{
|
||||
$this->guaranteedLooks = $guaranteedLooks;
|
||||
}
|
||||
public function getGuaranteedLooks()
|
||||
{
|
||||
return $this->guaranteedLooks;
|
||||
}
|
||||
public function setMinimumDailyLooks($minimumDailyLooks)
|
||||
{
|
||||
$this->minimumDailyLooks = $minimumDailyLooks;
|
||||
}
|
||||
public function getMinimumDailyLooks()
|
||||
{
|
||||
return $this->minimumDailyLooks;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo extends Google_Model
|
||||
{
|
||||
public $currencyConversionTimeMs;
|
||||
public $dfpLineItemId;
|
||||
public $originalContractedQuantity;
|
||||
protected $priceType = 'Google_Service_AdExchangeBuyer_Price';
|
||||
protected $priceDataType = '';
|
||||
|
||||
public function setCurrencyConversionTimeMs($currencyConversionTimeMs)
|
||||
{
|
||||
$this->currencyConversionTimeMs = $currencyConversionTimeMs;
|
||||
}
|
||||
public function getCurrencyConversionTimeMs()
|
||||
{
|
||||
return $this->currencyConversionTimeMs;
|
||||
}
|
||||
public function setDfpLineItemId($dfpLineItemId)
|
||||
{
|
||||
$this->dfpLineItemId = $dfpLineItemId;
|
||||
}
|
||||
public function getDfpLineItemId()
|
||||
{
|
||||
return $this->dfpLineItemId;
|
||||
}
|
||||
public function setOriginalContractedQuantity($originalContractedQuantity)
|
||||
{
|
||||
$this->originalContractedQuantity = $originalContractedQuantity;
|
||||
}
|
||||
public function getOriginalContractedQuantity()
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedAuctionTerms extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'reservePricePerBuyers';
|
||||
public $autoOptimizePrivateAuction;
|
||||
protected $reservePricePerBuyersType = 'Google_Service_AdExchangeBuyer_PricePerBuyer';
|
||||
protected $reservePricePerBuyersDataType = 'array';
|
||||
|
||||
public function setAutoOptimizePrivateAuction($autoOptimizePrivateAuction)
|
||||
{
|
||||
$this->autoOptimizePrivateAuction = $autoOptimizePrivateAuction;
|
||||
}
|
||||
public function getAutoOptimizePrivateAuction()
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DealTermsNonGuaranteedFixedPriceTerms extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'fixedPrices';
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DealTermsRubiconNonGuaranteedTerms extends Google_Model
|
||||
{
|
||||
protected $priorityPriceType = 'Google_Service_AdExchangeBuyer_Price';
|
||||
protected $priorityPriceDataType = '';
|
||||
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;
|
||||
}
|
||||
}
|
||||
49
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeleteOrderDealsRequest.php
vendored
Normal file
49
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeleteOrderDealsRequest.php
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DeleteOrderDealsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dealIds';
|
||||
public $dealIds;
|
||||
public $proposalRevisionNumber;
|
||||
public $updateAction;
|
||||
|
||||
public function setDealIds($dealIds)
|
||||
{
|
||||
$this->dealIds = $dealIds;
|
||||
}
|
||||
public function getDealIds()
|
||||
{
|
||||
return $this->dealIds;
|
||||
}
|
||||
public function setProposalRevisionNumber($proposalRevisionNumber)
|
||||
{
|
||||
$this->proposalRevisionNumber = $proposalRevisionNumber;
|
||||
}
|
||||
public function getProposalRevisionNumber()
|
||||
{
|
||||
return $this->proposalRevisionNumber;
|
||||
}
|
||||
public function setUpdateAction($updateAction)
|
||||
{
|
||||
$this->updateAction = $updateAction;
|
||||
}
|
||||
public function getUpdateAction()
|
||||
{
|
||||
return $this->updateAction;
|
||||
}
|
||||
}
|
||||
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeleteOrderDealsResponse.php
vendored
Normal file
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeleteOrderDealsResponse.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DeleteOrderDealsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
protected $dealsType = 'Google_Service_AdExchangeBuyer_MarketplaceDeal';
|
||||
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;
|
||||
}
|
||||
public function setProposalRevisionNumber($proposalRevisionNumber)
|
||||
{
|
||||
$this->proposalRevisionNumber = $proposalRevisionNumber;
|
||||
}
|
||||
public function getProposalRevisionNumber()
|
||||
{
|
||||
return $this->proposalRevisionNumber;
|
||||
}
|
||||
}
|
||||
56
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeliveryControl.php
vendored
Normal file
56
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DeliveryControl.php
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DeliveryControl extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'frequencyCaps';
|
||||
public $creativeBlockingLevel;
|
||||
public $deliveryRateType;
|
||||
protected $frequencyCapsType = 'Google_Service_AdExchangeBuyer_DeliveryControlFrequencyCap';
|
||||
protected $frequencyCapsDataType = 'array';
|
||||
|
||||
public function setCreativeBlockingLevel($creativeBlockingLevel)
|
||||
{
|
||||
$this->creativeBlockingLevel = $creativeBlockingLevel;
|
||||
}
|
||||
public function getCreativeBlockingLevel()
|
||||
{
|
||||
return $this->creativeBlockingLevel;
|
||||
}
|
||||
public function setDeliveryRateType($deliveryRateType)
|
||||
{
|
||||
$this->deliveryRateType = $deliveryRateType;
|
||||
}
|
||||
public function getDeliveryRateType()
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DeliveryControlFrequencyCap extends Google_Model
|
||||
{
|
||||
public $maxImpressions;
|
||||
public $numTimeUnits;
|
||||
public $timeUnitType;
|
||||
|
||||
public function setMaxImpressions($maxImpressions)
|
||||
{
|
||||
$this->maxImpressions = $maxImpressions;
|
||||
}
|
||||
public function getMaxImpressions()
|
||||
{
|
||||
return $this->maxImpressions;
|
||||
}
|
||||
public function setNumTimeUnits($numTimeUnits)
|
||||
{
|
||||
$this->numTimeUnits = $numTimeUnits;
|
||||
}
|
||||
public function getNumTimeUnits()
|
||||
{
|
||||
return $this->numTimeUnits;
|
||||
}
|
||||
public function setTimeUnitType($timeUnitType)
|
||||
{
|
||||
$this->timeUnitType = $timeUnitType;
|
||||
}
|
||||
public function getTimeUnitType()
|
||||
{
|
||||
return $this->timeUnitType;
|
||||
}
|
||||
}
|
||||
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Dimension.php
vendored
Normal file
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Dimension.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_Dimension extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dimensionValues';
|
||||
public $dimensionType;
|
||||
protected $dimensionValuesType = 'Google_Service_AdExchangeBuyer_DimensionDimensionValue';
|
||||
protected $dimensionValuesDataType = 'array';
|
||||
|
||||
public function setDimensionType($dimensionType)
|
||||
{
|
||||
$this->dimensionType = $dimensionType;
|
||||
}
|
||||
public function getDimensionType()
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
48
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DimensionDimensionValue.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/DimensionDimensionValue.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_DimensionDimensionValue extends Google_Model
|
||||
{
|
||||
public $id;
|
||||
public $name;
|
||||
public $percentage;
|
||||
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setPercentage($percentage)
|
||||
{
|
||||
$this->percentage = $percentage;
|
||||
}
|
||||
public function getPercentage()
|
||||
{
|
||||
return $this->percentage;
|
||||
}
|
||||
}
|
||||
72
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/EditAllOrderDealsRequest.php
vendored
Normal file
72
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/EditAllOrderDealsRequest.php
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_EditAllOrderDealsRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
protected $dealsType = 'Google_Service_AdExchangeBuyer_MarketplaceDeal';
|
||||
protected $dealsDataType = 'array';
|
||||
protected $proposalType = 'Google_Service_AdExchangeBuyer_Proposal';
|
||||
protected $proposalDataType = '';
|
||||
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;
|
||||
}
|
||||
public function setProposalRevisionNumber($proposalRevisionNumber)
|
||||
{
|
||||
$this->proposalRevisionNumber = $proposalRevisionNumber;
|
||||
}
|
||||
public function getProposalRevisionNumber()
|
||||
{
|
||||
return $this->proposalRevisionNumber;
|
||||
}
|
||||
public function setUpdateAction($updateAction)
|
||||
{
|
||||
$this->updateAction = $updateAction;
|
||||
}
|
||||
public function getUpdateAction()
|
||||
{
|
||||
return $this->updateAction;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_EditAllOrderDealsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
protected $dealsType = 'Google_Service_AdExchangeBuyer_MarketplaceDeal';
|
||||
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;
|
||||
}
|
||||
public function setOrderRevisionNumber($orderRevisionNumber)
|
||||
{
|
||||
$this->orderRevisionNumber = $orderRevisionNumber;
|
||||
}
|
||||
public function getOrderRevisionNumber()
|
||||
{
|
||||
return $this->orderRevisionNumber;
|
||||
}
|
||||
}
|
||||
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOffersResponse.php
vendored
Normal file
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOffersResponse.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_GetOffersResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'products';
|
||||
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;
|
||||
}
|
||||
}
|
||||
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrderDealsResponse.php
vendored
Normal file
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrderDealsResponse.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_GetOrderDealsResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'deals';
|
||||
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;
|
||||
}
|
||||
}
|
||||
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrderNotesResponse.php
vendored
Normal file
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrderNotesResponse.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_GetOrderNotesResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'notes';
|
||||
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;
|
||||
}
|
||||
}
|
||||
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrdersResponse.php
vendored
Normal file
38
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/GetOrdersResponse.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_GetOrdersResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'proposals';
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_GetPublisherProfilesByAccountIdResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'profiles';
|
||||
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;
|
||||
}
|
||||
}
|
||||
289
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceDeal.php
vendored
Normal file
289
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceDeal.php
vendored
Normal file
@@ -0,0 +1,289 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_MarketplaceDeal extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sharedTargetings';
|
||||
protected $buyerPrivateDataType = 'Google_Service_AdExchangeBuyer_PrivateData';
|
||||
protected $buyerPrivateDataDataType = '';
|
||||
public $creationTimeMs;
|
||||
public $creativePreApprovalPolicy;
|
||||
public $creativeSafeFrameCompatibility;
|
||||
public $dealId;
|
||||
protected $dealServingMetadataType = 'Google_Service_AdExchangeBuyer_DealServingMetadata';
|
||||
protected $dealServingMetadataDataType = '';
|
||||
protected $deliveryControlType = 'Google_Service_AdExchangeBuyer_DeliveryControl';
|
||||
protected $deliveryControlDataType = '';
|
||||
public $externalDealId;
|
||||
public $flightEndTimeMs;
|
||||
public $flightStartTimeMs;
|
||||
public $inventoryDescription;
|
||||
public $isRfpTemplate;
|
||||
public $isSetupComplete;
|
||||
public $kind;
|
||||
public $lastUpdateTimeMs;
|
||||
public $name;
|
||||
public $productId;
|
||||
public $productRevisionNumber;
|
||||
public $programmaticCreativeSource;
|
||||
public $proposalId;
|
||||
protected $sellerContactsType = 'Google_Service_AdExchangeBuyer_ContactInformation';
|
||||
protected $sellerContactsDataType = 'array';
|
||||
protected $sharedTargetingsType = 'Google_Service_AdExchangeBuyer_SharedTargeting';
|
||||
protected $sharedTargetingsDataType = 'array';
|
||||
public $syndicationProduct;
|
||||
protected $termsType = 'Google_Service_AdExchangeBuyer_DealTerms';
|
||||
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;
|
||||
}
|
||||
public function setCreationTimeMs($creationTimeMs)
|
||||
{
|
||||
$this->creationTimeMs = $creationTimeMs;
|
||||
}
|
||||
public function getCreationTimeMs()
|
||||
{
|
||||
return $this->creationTimeMs;
|
||||
}
|
||||
public function setCreativePreApprovalPolicy($creativePreApprovalPolicy)
|
||||
{
|
||||
$this->creativePreApprovalPolicy = $creativePreApprovalPolicy;
|
||||
}
|
||||
public function getCreativePreApprovalPolicy()
|
||||
{
|
||||
return $this->creativePreApprovalPolicy;
|
||||
}
|
||||
public function setCreativeSafeFrameCompatibility($creativeSafeFrameCompatibility)
|
||||
{
|
||||
$this->creativeSafeFrameCompatibility = $creativeSafeFrameCompatibility;
|
||||
}
|
||||
public function getCreativeSafeFrameCompatibility()
|
||||
{
|
||||
return $this->creativeSafeFrameCompatibility;
|
||||
}
|
||||
public function setDealId($dealId)
|
||||
{
|
||||
$this->dealId = $dealId;
|
||||
}
|
||||
public function getDealId()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setExternalDealId($externalDealId)
|
||||
{
|
||||
$this->externalDealId = $externalDealId;
|
||||
}
|
||||
public function getExternalDealId()
|
||||
{
|
||||
return $this->externalDealId;
|
||||
}
|
||||
public function setFlightEndTimeMs($flightEndTimeMs)
|
||||
{
|
||||
$this->flightEndTimeMs = $flightEndTimeMs;
|
||||
}
|
||||
public function getFlightEndTimeMs()
|
||||
{
|
||||
return $this->flightEndTimeMs;
|
||||
}
|
||||
public function setFlightStartTimeMs($flightStartTimeMs)
|
||||
{
|
||||
$this->flightStartTimeMs = $flightStartTimeMs;
|
||||
}
|
||||
public function getFlightStartTimeMs()
|
||||
{
|
||||
return $this->flightStartTimeMs;
|
||||
}
|
||||
public function setInventoryDescription($inventoryDescription)
|
||||
{
|
||||
$this->inventoryDescription = $inventoryDescription;
|
||||
}
|
||||
public function getInventoryDescription()
|
||||
{
|
||||
return $this->inventoryDescription;
|
||||
}
|
||||
public function setIsRfpTemplate($isRfpTemplate)
|
||||
{
|
||||
$this->isRfpTemplate = $isRfpTemplate;
|
||||
}
|
||||
public function getIsRfpTemplate()
|
||||
{
|
||||
return $this->isRfpTemplate;
|
||||
}
|
||||
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;
|
||||
}
|
||||
public function setLastUpdateTimeMs($lastUpdateTimeMs)
|
||||
{
|
||||
$this->lastUpdateTimeMs = $lastUpdateTimeMs;
|
||||
}
|
||||
public function getLastUpdateTimeMs()
|
||||
{
|
||||
return $this->lastUpdateTimeMs;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setProductId($productId)
|
||||
{
|
||||
$this->productId = $productId;
|
||||
}
|
||||
public function getProductId()
|
||||
{
|
||||
return $this->productId;
|
||||
}
|
||||
public function setProductRevisionNumber($productRevisionNumber)
|
||||
{
|
||||
$this->productRevisionNumber = $productRevisionNumber;
|
||||
}
|
||||
public function getProductRevisionNumber()
|
||||
{
|
||||
return $this->productRevisionNumber;
|
||||
}
|
||||
public function setProgrammaticCreativeSource($programmaticCreativeSource)
|
||||
{
|
||||
$this->programmaticCreativeSource = $programmaticCreativeSource;
|
||||
}
|
||||
public function getProgrammaticCreativeSource()
|
||||
{
|
||||
return $this->programmaticCreativeSource;
|
||||
}
|
||||
public function setProposalId($proposalId)
|
||||
{
|
||||
$this->proposalId = $proposalId;
|
||||
}
|
||||
public function getProposalId()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setSyndicationProduct($syndicationProduct)
|
||||
{
|
||||
$this->syndicationProduct = $syndicationProduct;
|
||||
}
|
||||
public function getSyndicationProduct()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setWebPropertyCode($webPropertyCode)
|
||||
{
|
||||
$this->webPropertyCode = $webPropertyCode;
|
||||
}
|
||||
public function getWebPropertyCode()
|
||||
{
|
||||
return $this->webPropertyCode;
|
||||
}
|
||||
}
|
||||
53
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceDealParty.php
vendored
Normal file
53
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceDealParty.php
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_MarketplaceDealParty extends Google_Model
|
||||
{
|
||||
protected $buyerType = 'Google_Service_AdExchangeBuyer_Buyer';
|
||||
protected $buyerDataType = '';
|
||||
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;
|
||||
}
|
||||
}
|
||||
64
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceLabel.php
vendored
Normal file
64
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceLabel.php
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_MarketplaceLabel extends Google_Model
|
||||
{
|
||||
public $accountId;
|
||||
public $createTimeMs;
|
||||
protected $deprecatedMarketplaceDealPartyType = 'Google_Service_AdExchangeBuyer_MarketplaceDealParty';
|
||||
protected $deprecatedMarketplaceDealPartyDataType = '';
|
||||
public $label;
|
||||
|
||||
public function setAccountId($accountId)
|
||||
{
|
||||
$this->accountId = $accountId;
|
||||
}
|
||||
public function getAccountId()
|
||||
{
|
||||
return $this->accountId;
|
||||
}
|
||||
public function setCreateTimeMs($createTimeMs)
|
||||
{
|
||||
$this->createTimeMs = $createTimeMs;
|
||||
}
|
||||
public function getCreateTimeMs()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setLabel($label)
|
||||
{
|
||||
$this->label = $label;
|
||||
}
|
||||
public function getLabel()
|
||||
{
|
||||
return $this->label;
|
||||
}
|
||||
}
|
||||
93
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceNote.php
vendored
Normal file
93
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/MarketplaceNote.php
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_MarketplaceNote extends Google_Model
|
||||
{
|
||||
public $creatorRole;
|
||||
public $dealId;
|
||||
public $kind;
|
||||
public $note;
|
||||
public $noteId;
|
||||
public $proposalId;
|
||||
public $proposalRevisionNumber;
|
||||
public $timestampMs;
|
||||
|
||||
public function setCreatorRole($creatorRole)
|
||||
{
|
||||
$this->creatorRole = $creatorRole;
|
||||
}
|
||||
public function getCreatorRole()
|
||||
{
|
||||
return $this->creatorRole;
|
||||
}
|
||||
public function setDealId($dealId)
|
||||
{
|
||||
$this->dealId = $dealId;
|
||||
}
|
||||
public function getDealId()
|
||||
{
|
||||
return $this->dealId;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNote($note)
|
||||
{
|
||||
$this->note = $note;
|
||||
}
|
||||
public function getNote()
|
||||
{
|
||||
return $this->note;
|
||||
}
|
||||
public function setNoteId($noteId)
|
||||
{
|
||||
$this->noteId = $noteId;
|
||||
}
|
||||
public function getNoteId()
|
||||
{
|
||||
return $this->noteId;
|
||||
}
|
||||
public function setProposalId($proposalId)
|
||||
{
|
||||
$this->proposalId = $proposalId;
|
||||
}
|
||||
public function getProposalId()
|
||||
{
|
||||
return $this->proposalId;
|
||||
}
|
||||
public function setProposalRevisionNumber($proposalRevisionNumber)
|
||||
{
|
||||
$this->proposalRevisionNumber = $proposalRevisionNumber;
|
||||
}
|
||||
public function getProposalRevisionNumber()
|
||||
{
|
||||
return $this->proposalRevisionNumber;
|
||||
}
|
||||
public function setTimestampMs($timestampMs)
|
||||
{
|
||||
$this->timestampMs = $timestampMs;
|
||||
}
|
||||
public function getTimestampMs()
|
||||
{
|
||||
return $this->timestampMs;
|
||||
}
|
||||
}
|
||||
220
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PerformanceReport.php
vendored
Normal file
220
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PerformanceReport.php
vendored
Normal file
@@ -0,0 +1,220 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PerformanceReport extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'hostedMatchStatusRate';
|
||||
public $bidRate;
|
||||
public $bidRequestRate;
|
||||
public $calloutStatusRate;
|
||||
public $cookieMatcherStatusRate;
|
||||
public $creativeStatusRate;
|
||||
public $filteredBidRate;
|
||||
public $hostedMatchStatusRate;
|
||||
public $inventoryMatchRate;
|
||||
public $kind;
|
||||
public $latency50thPercentile;
|
||||
public $latency85thPercentile;
|
||||
public $latency95thPercentile;
|
||||
public $noQuotaInRegion;
|
||||
public $outOfQuota;
|
||||
public $pixelMatchRequests;
|
||||
public $pixelMatchResponses;
|
||||
public $quotaConfiguredLimit;
|
||||
public $quotaThrottledLimit;
|
||||
public $region;
|
||||
public $successfulRequestRate;
|
||||
public $timestamp;
|
||||
public $unsuccessfulRequestRate;
|
||||
|
||||
public function setBidRate($bidRate)
|
||||
{
|
||||
$this->bidRate = $bidRate;
|
||||
}
|
||||
public function getBidRate()
|
||||
{
|
||||
return $this->bidRate;
|
||||
}
|
||||
public function setBidRequestRate($bidRequestRate)
|
||||
{
|
||||
$this->bidRequestRate = $bidRequestRate;
|
||||
}
|
||||
public function getBidRequestRate()
|
||||
{
|
||||
return $this->bidRequestRate;
|
||||
}
|
||||
public function setCalloutStatusRate($calloutStatusRate)
|
||||
{
|
||||
$this->calloutStatusRate = $calloutStatusRate;
|
||||
}
|
||||
public function getCalloutStatusRate()
|
||||
{
|
||||
return $this->calloutStatusRate;
|
||||
}
|
||||
public function setCookieMatcherStatusRate($cookieMatcherStatusRate)
|
||||
{
|
||||
$this->cookieMatcherStatusRate = $cookieMatcherStatusRate;
|
||||
}
|
||||
public function getCookieMatcherStatusRate()
|
||||
{
|
||||
return $this->cookieMatcherStatusRate;
|
||||
}
|
||||
public function setCreativeStatusRate($creativeStatusRate)
|
||||
{
|
||||
$this->creativeStatusRate = $creativeStatusRate;
|
||||
}
|
||||
public function getCreativeStatusRate()
|
||||
{
|
||||
return $this->creativeStatusRate;
|
||||
}
|
||||
public function setFilteredBidRate($filteredBidRate)
|
||||
{
|
||||
$this->filteredBidRate = $filteredBidRate;
|
||||
}
|
||||
public function getFilteredBidRate()
|
||||
{
|
||||
return $this->filteredBidRate;
|
||||
}
|
||||
public function setHostedMatchStatusRate($hostedMatchStatusRate)
|
||||
{
|
||||
$this->hostedMatchStatusRate = $hostedMatchStatusRate;
|
||||
}
|
||||
public function getHostedMatchStatusRate()
|
||||
{
|
||||
return $this->hostedMatchStatusRate;
|
||||
}
|
||||
public function setInventoryMatchRate($inventoryMatchRate)
|
||||
{
|
||||
$this->inventoryMatchRate = $inventoryMatchRate;
|
||||
}
|
||||
public function getInventoryMatchRate()
|
||||
{
|
||||
return $this->inventoryMatchRate;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setLatency50thPercentile($latency50thPercentile)
|
||||
{
|
||||
$this->latency50thPercentile = $latency50thPercentile;
|
||||
}
|
||||
public function getLatency50thPercentile()
|
||||
{
|
||||
return $this->latency50thPercentile;
|
||||
}
|
||||
public function setLatency85thPercentile($latency85thPercentile)
|
||||
{
|
||||
$this->latency85thPercentile = $latency85thPercentile;
|
||||
}
|
||||
public function getLatency85thPercentile()
|
||||
{
|
||||
return $this->latency85thPercentile;
|
||||
}
|
||||
public function setLatency95thPercentile($latency95thPercentile)
|
||||
{
|
||||
$this->latency95thPercentile = $latency95thPercentile;
|
||||
}
|
||||
public function getLatency95thPercentile()
|
||||
{
|
||||
return $this->latency95thPercentile;
|
||||
}
|
||||
public function setNoQuotaInRegion($noQuotaInRegion)
|
||||
{
|
||||
$this->noQuotaInRegion = $noQuotaInRegion;
|
||||
}
|
||||
public function getNoQuotaInRegion()
|
||||
{
|
||||
return $this->noQuotaInRegion;
|
||||
}
|
||||
public function setOutOfQuota($outOfQuota)
|
||||
{
|
||||
$this->outOfQuota = $outOfQuota;
|
||||
}
|
||||
public function getOutOfQuota()
|
||||
{
|
||||
return $this->outOfQuota;
|
||||
}
|
||||
public function setPixelMatchRequests($pixelMatchRequests)
|
||||
{
|
||||
$this->pixelMatchRequests = $pixelMatchRequests;
|
||||
}
|
||||
public function getPixelMatchRequests()
|
||||
{
|
||||
return $this->pixelMatchRequests;
|
||||
}
|
||||
public function setPixelMatchResponses($pixelMatchResponses)
|
||||
{
|
||||
$this->pixelMatchResponses = $pixelMatchResponses;
|
||||
}
|
||||
public function getPixelMatchResponses()
|
||||
{
|
||||
return $this->pixelMatchResponses;
|
||||
}
|
||||
public function setQuotaConfiguredLimit($quotaConfiguredLimit)
|
||||
{
|
||||
$this->quotaConfiguredLimit = $quotaConfiguredLimit;
|
||||
}
|
||||
public function getQuotaConfiguredLimit()
|
||||
{
|
||||
return $this->quotaConfiguredLimit;
|
||||
}
|
||||
public function setQuotaThrottledLimit($quotaThrottledLimit)
|
||||
{
|
||||
$this->quotaThrottledLimit = $quotaThrottledLimit;
|
||||
}
|
||||
public function getQuotaThrottledLimit()
|
||||
{
|
||||
return $this->quotaThrottledLimit;
|
||||
}
|
||||
public function setRegion($region)
|
||||
{
|
||||
$this->region = $region;
|
||||
}
|
||||
public function getRegion()
|
||||
{
|
||||
return $this->region;
|
||||
}
|
||||
public function setSuccessfulRequestRate($successfulRequestRate)
|
||||
{
|
||||
$this->successfulRequestRate = $successfulRequestRate;
|
||||
}
|
||||
public function getSuccessfulRequestRate()
|
||||
{
|
||||
return $this->successfulRequestRate;
|
||||
}
|
||||
public function setTimestamp($timestamp)
|
||||
{
|
||||
$this->timestamp = $timestamp;
|
||||
}
|
||||
public function getTimestamp()
|
||||
{
|
||||
return $this->timestamp;
|
||||
}
|
||||
public function setUnsuccessfulRequestRate($unsuccessfulRequestRate)
|
||||
{
|
||||
$this->unsuccessfulRequestRate = $unsuccessfulRequestRate;
|
||||
}
|
||||
public function getUnsuccessfulRequestRate()
|
||||
{
|
||||
return $this->unsuccessfulRequestRate;
|
||||
}
|
||||
}
|
||||
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PerformanceReportList.php
vendored
Normal file
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PerformanceReportList.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PerformanceReportList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'performanceReport';
|
||||
public $kind;
|
||||
protected $performanceReportType = 'Google_Service_AdExchangeBuyer_PerformanceReport';
|
||||
protected $performanceReportDataType = 'array';
|
||||
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
284
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfig.php
vendored
Normal file
284
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfig.php
vendored
Normal file
@@ -0,0 +1,284 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfig extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'videoPlayerSizes';
|
||||
public $billingId;
|
||||
public $configId;
|
||||
public $configName;
|
||||
public $creativeType;
|
||||
protected $dimensionsType = 'Google_Service_AdExchangeBuyer_PretargetingConfigDimensions';
|
||||
protected $dimensionsDataType = 'array';
|
||||
public $excludedContentLabels;
|
||||
public $excludedGeoCriteriaIds;
|
||||
protected $excludedPlacementsType = 'Google_Service_AdExchangeBuyer_PretargetingConfigExcludedPlacements';
|
||||
protected $excludedPlacementsDataType = 'array';
|
||||
public $excludedUserLists;
|
||||
public $excludedVerticals;
|
||||
public $geoCriteriaIds;
|
||||
public $isActive;
|
||||
public $kind;
|
||||
public $languages;
|
||||
public $minimumViewabilityDecile;
|
||||
public $mobileCarriers;
|
||||
public $mobileDevices;
|
||||
public $mobileOperatingSystemVersions;
|
||||
protected $placementsType = 'Google_Service_AdExchangeBuyer_PretargetingConfigPlacements';
|
||||
protected $placementsDataType = 'array';
|
||||
public $platforms;
|
||||
public $supportedCreativeAttributes;
|
||||
public $userIdentifierDataRequired;
|
||||
public $userLists;
|
||||
public $vendorTypes;
|
||||
public $verticals;
|
||||
protected $videoPlayerSizesType = 'Google_Service_AdExchangeBuyer_PretargetingConfigVideoPlayerSizes';
|
||||
protected $videoPlayerSizesDataType = 'array';
|
||||
|
||||
public function setBillingId($billingId)
|
||||
{
|
||||
$this->billingId = $billingId;
|
||||
}
|
||||
public function getBillingId()
|
||||
{
|
||||
return $this->billingId;
|
||||
}
|
||||
public function setConfigId($configId)
|
||||
{
|
||||
$this->configId = $configId;
|
||||
}
|
||||
public function getConfigId()
|
||||
{
|
||||
return $this->configId;
|
||||
}
|
||||
public function setConfigName($configName)
|
||||
{
|
||||
$this->configName = $configName;
|
||||
}
|
||||
public function getConfigName()
|
||||
{
|
||||
return $this->configName;
|
||||
}
|
||||
public function setCreativeType($creativeType)
|
||||
{
|
||||
$this->creativeType = $creativeType;
|
||||
}
|
||||
public function getCreativeType()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setExcludedContentLabels($excludedContentLabels)
|
||||
{
|
||||
$this->excludedContentLabels = $excludedContentLabels;
|
||||
}
|
||||
public function getExcludedContentLabels()
|
||||
{
|
||||
return $this->excludedContentLabels;
|
||||
}
|
||||
public function setExcludedGeoCriteriaIds($excludedGeoCriteriaIds)
|
||||
{
|
||||
$this->excludedGeoCriteriaIds = $excludedGeoCriteriaIds;
|
||||
}
|
||||
public function getExcludedGeoCriteriaIds()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setExcludedUserLists($excludedUserLists)
|
||||
{
|
||||
$this->excludedUserLists = $excludedUserLists;
|
||||
}
|
||||
public function getExcludedUserLists()
|
||||
{
|
||||
return $this->excludedUserLists;
|
||||
}
|
||||
public function setExcludedVerticals($excludedVerticals)
|
||||
{
|
||||
$this->excludedVerticals = $excludedVerticals;
|
||||
}
|
||||
public function getExcludedVerticals()
|
||||
{
|
||||
return $this->excludedVerticals;
|
||||
}
|
||||
public function setGeoCriteriaIds($geoCriteriaIds)
|
||||
{
|
||||
$this->geoCriteriaIds = $geoCriteriaIds;
|
||||
}
|
||||
public function getGeoCriteriaIds()
|
||||
{
|
||||
return $this->geoCriteriaIds;
|
||||
}
|
||||
public function setIsActive($isActive)
|
||||
{
|
||||
$this->isActive = $isActive;
|
||||
}
|
||||
public function getIsActive()
|
||||
{
|
||||
return $this->isActive;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setLanguages($languages)
|
||||
{
|
||||
$this->languages = $languages;
|
||||
}
|
||||
public function getLanguages()
|
||||
{
|
||||
return $this->languages;
|
||||
}
|
||||
public function setMinimumViewabilityDecile($minimumViewabilityDecile)
|
||||
{
|
||||
$this->minimumViewabilityDecile = $minimumViewabilityDecile;
|
||||
}
|
||||
public function getMinimumViewabilityDecile()
|
||||
{
|
||||
return $this->minimumViewabilityDecile;
|
||||
}
|
||||
public function setMobileCarriers($mobileCarriers)
|
||||
{
|
||||
$this->mobileCarriers = $mobileCarriers;
|
||||
}
|
||||
public function getMobileCarriers()
|
||||
{
|
||||
return $this->mobileCarriers;
|
||||
}
|
||||
public function setMobileDevices($mobileDevices)
|
||||
{
|
||||
$this->mobileDevices = $mobileDevices;
|
||||
}
|
||||
public function getMobileDevices()
|
||||
{
|
||||
return $this->mobileDevices;
|
||||
}
|
||||
public function setMobileOperatingSystemVersions($mobileOperatingSystemVersions)
|
||||
{
|
||||
$this->mobileOperatingSystemVersions = $mobileOperatingSystemVersions;
|
||||
}
|
||||
public function getMobileOperatingSystemVersions()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setPlatforms($platforms)
|
||||
{
|
||||
$this->platforms = $platforms;
|
||||
}
|
||||
public function getPlatforms()
|
||||
{
|
||||
return $this->platforms;
|
||||
}
|
||||
public function setSupportedCreativeAttributes($supportedCreativeAttributes)
|
||||
{
|
||||
$this->supportedCreativeAttributes = $supportedCreativeAttributes;
|
||||
}
|
||||
public function getSupportedCreativeAttributes()
|
||||
{
|
||||
return $this->supportedCreativeAttributes;
|
||||
}
|
||||
public function setUserIdentifierDataRequired($userIdentifierDataRequired)
|
||||
{
|
||||
$this->userIdentifierDataRequired = $userIdentifierDataRequired;
|
||||
}
|
||||
public function getUserIdentifierDataRequired()
|
||||
{
|
||||
return $this->userIdentifierDataRequired;
|
||||
}
|
||||
public function setUserLists($userLists)
|
||||
{
|
||||
$this->userLists = $userLists;
|
||||
}
|
||||
public function getUserLists()
|
||||
{
|
||||
return $this->userLists;
|
||||
}
|
||||
public function setVendorTypes($vendorTypes)
|
||||
{
|
||||
$this->vendorTypes = $vendorTypes;
|
||||
}
|
||||
public function getVendorTypes()
|
||||
{
|
||||
return $this->vendorTypes;
|
||||
}
|
||||
public function setVerticals($verticals)
|
||||
{
|
||||
$this->verticals = $verticals;
|
||||
}
|
||||
public function getVerticals()
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfigDimensions extends Google_Model
|
||||
{
|
||||
public $height;
|
||||
public $width;
|
||||
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfigExcludedPlacements extends Google_Model
|
||||
{
|
||||
public $token;
|
||||
public $type;
|
||||
|
||||
public function setToken($token)
|
||||
{
|
||||
$this->token = $token;
|
||||
}
|
||||
public function getToken()
|
||||
{
|
||||
return $this->token;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigList.php
vendored
Normal file
47
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PretargetingConfigList.php
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfigList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_AdExchangeBuyer_PretargetingConfig';
|
||||
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;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfigPlacements extends Google_Model
|
||||
{
|
||||
public $token;
|
||||
public $type;
|
||||
|
||||
public function setToken($token)
|
||||
{
|
||||
$this->token = $token;
|
||||
}
|
||||
public function getToken()
|
||||
{
|
||||
return $this->token;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PretargetingConfigVideoPlayerSizes extends Google_Model
|
||||
{
|
||||
public $aspectRatio;
|
||||
public $minHeight;
|
||||
public $minWidth;
|
||||
|
||||
public function setAspectRatio($aspectRatio)
|
||||
{
|
||||
$this->aspectRatio = $aspectRatio;
|
||||
}
|
||||
public function getAspectRatio()
|
||||
{
|
||||
return $this->aspectRatio;
|
||||
}
|
||||
public function setMinHeight($minHeight)
|
||||
{
|
||||
$this->minHeight = $minHeight;
|
||||
}
|
||||
public function getMinHeight()
|
||||
{
|
||||
return $this->minHeight;
|
||||
}
|
||||
public function setMinWidth($minWidth)
|
||||
{
|
||||
$this->minWidth = $minWidth;
|
||||
}
|
||||
public function getMinWidth()
|
||||
{
|
||||
return $this->minWidth;
|
||||
}
|
||||
}
|
||||
57
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Price.php
vendored
Normal file
57
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Price.php
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_Price extends Google_Model
|
||||
{
|
||||
public $amountMicros;
|
||||
public $currencyCode;
|
||||
public $expectedCpmMicros;
|
||||
public $pricingType;
|
||||
|
||||
public function setAmountMicros($amountMicros)
|
||||
{
|
||||
$this->amountMicros = $amountMicros;
|
||||
}
|
||||
public function getAmountMicros()
|
||||
{
|
||||
return $this->amountMicros;
|
||||
}
|
||||
public function setCurrencyCode($currencyCode)
|
||||
{
|
||||
$this->currencyCode = $currencyCode;
|
||||
}
|
||||
public function getCurrencyCode()
|
||||
{
|
||||
return $this->currencyCode;
|
||||
}
|
||||
public function setExpectedCpmMicros($expectedCpmMicros)
|
||||
{
|
||||
$this->expectedCpmMicros = $expectedCpmMicros;
|
||||
}
|
||||
public function getExpectedCpmMicros()
|
||||
{
|
||||
return $this->expectedCpmMicros;
|
||||
}
|
||||
public function setPricingType($pricingType)
|
||||
{
|
||||
$this->pricingType = $pricingType;
|
||||
}
|
||||
public function getPricingType()
|
||||
{
|
||||
return $this->pricingType;
|
||||
}
|
||||
}
|
||||
78
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PricePerBuyer.php
vendored
Normal file
78
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PricePerBuyer.php
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
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';
|
||||
protected $priceDataType = '';
|
||||
|
||||
public function setAuctionTier($auctionTier)
|
||||
{
|
||||
$this->auctionTier = $auctionTier;
|
||||
}
|
||||
public function getAuctionTier()
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PrivateData.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PrivateData.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PrivateData extends Google_Model
|
||||
{
|
||||
public $referenceId;
|
||||
public $referencePayload;
|
||||
|
||||
public function setReferenceId($referenceId)
|
||||
{
|
||||
$this->referenceId = $referenceId;
|
||||
}
|
||||
public function getReferenceId()
|
||||
{
|
||||
return $this->referenceId;
|
||||
}
|
||||
public function setReferencePayload($referencePayload)
|
||||
{
|
||||
$this->referencePayload = $referencePayload;
|
||||
}
|
||||
public function getReferencePayload()
|
||||
{
|
||||
return $this->referencePayload;
|
||||
}
|
||||
}
|
||||
328
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Product.php
vendored
Normal file
328
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Product.php
vendored
Normal file
@@ -0,0 +1,328 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
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;
|
||||
public $flightStartTimeMs;
|
||||
public $hasCreatorSignedOff;
|
||||
public $inventorySource;
|
||||
public $kind;
|
||||
protected $labelsType = 'Google_Service_AdExchangeBuyer_MarketplaceLabel';
|
||||
protected $labelsDataType = 'array';
|
||||
public $lastUpdateTimeMs;
|
||||
public $legacyOfferId;
|
||||
public $marketplacePublisherProfileId;
|
||||
public $name;
|
||||
public $privateAuctionId;
|
||||
public $productId;
|
||||
public $publisherProfileId;
|
||||
protected $publisherProvidedForecastType = 'Google_Service_AdExchangeBuyer_PublisherProvidedForecast';
|
||||
protected $publisherProvidedForecastDataType = '';
|
||||
public $revisionNumber;
|
||||
protected $sellerType = 'Google_Service_AdExchangeBuyer_Seller';
|
||||
protected $sellerDataType = '';
|
||||
protected $sharedTargetingsType = 'Google_Service_AdExchangeBuyer_SharedTargeting';
|
||||
protected $sharedTargetingsDataType = 'array';
|
||||
public $state;
|
||||
public $syndicationProduct;
|
||||
protected $termsType = 'Google_Service_AdExchangeBuyer_DealTerms';
|
||||
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;
|
||||
}
|
||||
public function getCreationTimeMs()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setFlightEndTimeMs($flightEndTimeMs)
|
||||
{
|
||||
$this->flightEndTimeMs = $flightEndTimeMs;
|
||||
}
|
||||
public function getFlightEndTimeMs()
|
||||
{
|
||||
return $this->flightEndTimeMs;
|
||||
}
|
||||
public function setFlightStartTimeMs($flightStartTimeMs)
|
||||
{
|
||||
$this->flightStartTimeMs = $flightStartTimeMs;
|
||||
}
|
||||
public function getFlightStartTimeMs()
|
||||
{
|
||||
return $this->flightStartTimeMs;
|
||||
}
|
||||
public function setHasCreatorSignedOff($hasCreatorSignedOff)
|
||||
{
|
||||
$this->hasCreatorSignedOff = $hasCreatorSignedOff;
|
||||
}
|
||||
public function getHasCreatorSignedOff()
|
||||
{
|
||||
return $this->hasCreatorSignedOff;
|
||||
}
|
||||
public function setInventorySource($inventorySource)
|
||||
{
|
||||
$this->inventorySource = $inventorySource;
|
||||
}
|
||||
public function getInventorySource()
|
||||
{
|
||||
return $this->inventorySource;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setLastUpdateTimeMs($lastUpdateTimeMs)
|
||||
{
|
||||
$this->lastUpdateTimeMs = $lastUpdateTimeMs;
|
||||
}
|
||||
public function getLastUpdateTimeMs()
|
||||
{
|
||||
return $this->lastUpdateTimeMs;
|
||||
}
|
||||
public function setLegacyOfferId($legacyOfferId)
|
||||
{
|
||||
$this->legacyOfferId = $legacyOfferId;
|
||||
}
|
||||
public function getLegacyOfferId()
|
||||
{
|
||||
return $this->legacyOfferId;
|
||||
}
|
||||
public function setMarketplacePublisherProfileId($marketplacePublisherProfileId)
|
||||
{
|
||||
$this->marketplacePublisherProfileId = $marketplacePublisherProfileId;
|
||||
}
|
||||
public function getMarketplacePublisherProfileId()
|
||||
{
|
||||
return $this->marketplacePublisherProfileId;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setPrivateAuctionId($privateAuctionId)
|
||||
{
|
||||
$this->privateAuctionId = $privateAuctionId;
|
||||
}
|
||||
public function getPrivateAuctionId()
|
||||
{
|
||||
return $this->privateAuctionId;
|
||||
}
|
||||
public function setProductId($productId)
|
||||
{
|
||||
$this->productId = $productId;
|
||||
}
|
||||
public function getProductId()
|
||||
{
|
||||
return $this->productId;
|
||||
}
|
||||
public function setPublisherProfileId($publisherProfileId)
|
||||
{
|
||||
$this->publisherProfileId = $publisherProfileId;
|
||||
}
|
||||
public function getPublisherProfileId()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setRevisionNumber($revisionNumber)
|
||||
{
|
||||
$this->revisionNumber = $revisionNumber;
|
||||
}
|
||||
public function getRevisionNumber()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setState($state)
|
||||
{
|
||||
$this->state = $state;
|
||||
}
|
||||
public function getState()
|
||||
{
|
||||
return $this->state;
|
||||
}
|
||||
public function setSyndicationProduct($syndicationProduct)
|
||||
{
|
||||
$this->syndicationProduct = $syndicationProduct;
|
||||
}
|
||||
public function getSyndicationProduct()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setWebPropertyCode($webPropertyCode)
|
||||
{
|
||||
$this->webPropertyCode = $webPropertyCode;
|
||||
}
|
||||
public function getWebPropertyCode()
|
||||
{
|
||||
return $this->webPropertyCode;
|
||||
}
|
||||
}
|
||||
278
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Proposal.php
vendored
Normal file
278
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Proposal.php
vendored
Normal file
@@ -0,0 +1,278 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_Proposal extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'sellerContacts';
|
||||
protected $billedBuyerType = 'Google_Service_AdExchangeBuyer_Buyer';
|
||||
protected $billedBuyerDataType = '';
|
||||
protected $buyerType = 'Google_Service_AdExchangeBuyer_Buyer';
|
||||
protected $buyerDataType = '';
|
||||
protected $buyerContactsType = 'Google_Service_AdExchangeBuyer_ContactInformation';
|
||||
protected $buyerContactsDataType = 'array';
|
||||
protected $buyerPrivateDataType = 'Google_Service_AdExchangeBuyer_PrivateData';
|
||||
protected $buyerPrivateDataDataType = '';
|
||||
public $dbmAdvertiserIds;
|
||||
public $hasBuyerSignedOff;
|
||||
public $hasSellerSignedOff;
|
||||
public $inventorySource;
|
||||
public $isRenegotiating;
|
||||
public $isSetupComplete;
|
||||
public $kind;
|
||||
protected $labelsType = 'Google_Service_AdExchangeBuyer_MarketplaceLabel';
|
||||
protected $labelsDataType = 'array';
|
||||
public $lastUpdaterOrCommentorRole;
|
||||
public $name;
|
||||
public $negotiationId;
|
||||
public $originatorRole;
|
||||
public $privateAuctionId;
|
||||
public $proposalId;
|
||||
public $proposalState;
|
||||
public $revisionNumber;
|
||||
public $revisionTimeMs;
|
||||
protected $sellerType = 'Google_Service_AdExchangeBuyer_Seller';
|
||||
protected $sellerDataType = '';
|
||||
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;
|
||||
}
|
||||
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 Google_Service_AdExchangeBuyer_MarketplaceLabel
|
||||
*/
|
||||
public function setLabels($labels)
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_AdExchangeBuyer_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 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;
|
||||
}
|
||||
}
|
||||
234
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PublisherProfileApiProto.php
vendored
Normal file
234
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/PublisherProfileApiProto.php
vendored
Normal file
@@ -0,0 +1,234 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PublisherProfileApiProto extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'topHeadlines';
|
||||
public $audience;
|
||||
public $buyerPitchStatement;
|
||||
public $directContact;
|
||||
public $exchange;
|
||||
public $googlePlusLink;
|
||||
public $isParent;
|
||||
public $isPublished;
|
||||
public $kind;
|
||||
public $logoUrl;
|
||||
public $mediaKitLink;
|
||||
public $name;
|
||||
public $overview;
|
||||
public $profileId;
|
||||
public $programmaticContact;
|
||||
public $publisherDomains;
|
||||
public $publisherProfileId;
|
||||
protected $publisherProvidedForecastType = 'Google_Service_AdExchangeBuyer_PublisherProvidedForecast';
|
||||
protected $publisherProvidedForecastDataType = '';
|
||||
public $rateCardInfoLink;
|
||||
public $samplePageLink;
|
||||
protected $sellerType = 'Google_Service_AdExchangeBuyer_Seller';
|
||||
protected $sellerDataType = '';
|
||||
public $state;
|
||||
public $topHeadlines;
|
||||
|
||||
public function setAudience($audience)
|
||||
{
|
||||
$this->audience = $audience;
|
||||
}
|
||||
public function getAudience()
|
||||
{
|
||||
return $this->audience;
|
||||
}
|
||||
public function setBuyerPitchStatement($buyerPitchStatement)
|
||||
{
|
||||
$this->buyerPitchStatement = $buyerPitchStatement;
|
||||
}
|
||||
public function getBuyerPitchStatement()
|
||||
{
|
||||
return $this->buyerPitchStatement;
|
||||
}
|
||||
public function setDirectContact($directContact)
|
||||
{
|
||||
$this->directContact = $directContact;
|
||||
}
|
||||
public function getDirectContact()
|
||||
{
|
||||
return $this->directContact;
|
||||
}
|
||||
public function setExchange($exchange)
|
||||
{
|
||||
$this->exchange = $exchange;
|
||||
}
|
||||
public function getExchange()
|
||||
{
|
||||
return $this->exchange;
|
||||
}
|
||||
public function setGooglePlusLink($googlePlusLink)
|
||||
{
|
||||
$this->googlePlusLink = $googlePlusLink;
|
||||
}
|
||||
public function getGooglePlusLink()
|
||||
{
|
||||
return $this->googlePlusLink;
|
||||
}
|
||||
public function setIsParent($isParent)
|
||||
{
|
||||
$this->isParent = $isParent;
|
||||
}
|
||||
public function getIsParent()
|
||||
{
|
||||
return $this->isParent;
|
||||
}
|
||||
public function setIsPublished($isPublished)
|
||||
{
|
||||
$this->isPublished = $isPublished;
|
||||
}
|
||||
public function getIsPublished()
|
||||
{
|
||||
return $this->isPublished;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setLogoUrl($logoUrl)
|
||||
{
|
||||
$this->logoUrl = $logoUrl;
|
||||
}
|
||||
public function getLogoUrl()
|
||||
{
|
||||
return $this->logoUrl;
|
||||
}
|
||||
public function setMediaKitLink($mediaKitLink)
|
||||
{
|
||||
$this->mediaKitLink = $mediaKitLink;
|
||||
}
|
||||
public function getMediaKitLink()
|
||||
{
|
||||
return $this->mediaKitLink;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setOverview($overview)
|
||||
{
|
||||
$this->overview = $overview;
|
||||
}
|
||||
public function getOverview()
|
||||
{
|
||||
return $this->overview;
|
||||
}
|
||||
public function setProfileId($profileId)
|
||||
{
|
||||
$this->profileId = $profileId;
|
||||
}
|
||||
public function getProfileId()
|
||||
{
|
||||
return $this->profileId;
|
||||
}
|
||||
public function setProgrammaticContact($programmaticContact)
|
||||
{
|
||||
$this->programmaticContact = $programmaticContact;
|
||||
}
|
||||
public function getProgrammaticContact()
|
||||
{
|
||||
return $this->programmaticContact;
|
||||
}
|
||||
public function setPublisherDomains($publisherDomains)
|
||||
{
|
||||
$this->publisherDomains = $publisherDomains;
|
||||
}
|
||||
public function getPublisherDomains()
|
||||
{
|
||||
return $this->publisherDomains;
|
||||
}
|
||||
public function setPublisherProfileId($publisherProfileId)
|
||||
{
|
||||
$this->publisherProfileId = $publisherProfileId;
|
||||
}
|
||||
public function getPublisherProfileId()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setRateCardInfoLink($rateCardInfoLink)
|
||||
{
|
||||
$this->rateCardInfoLink = $rateCardInfoLink;
|
||||
}
|
||||
public function getRateCardInfoLink()
|
||||
{
|
||||
return $this->rateCardInfoLink;
|
||||
}
|
||||
public function setSamplePageLink($samplePageLink)
|
||||
{
|
||||
$this->samplePageLink = $samplePageLink;
|
||||
}
|
||||
public function getSamplePageLink()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setState($state)
|
||||
{
|
||||
$this->state = $state;
|
||||
}
|
||||
public function getState()
|
||||
{
|
||||
return $this->state;
|
||||
}
|
||||
public function setTopHeadlines($topHeadlines)
|
||||
{
|
||||
$this->topHeadlines = $topHeadlines;
|
||||
}
|
||||
public function getTopHeadlines()
|
||||
{
|
||||
return $this->topHeadlines;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_PublisherProvidedForecast extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dimensions';
|
||||
protected $dimensionsType = 'Google_Service_AdExchangeBuyer_Dimension';
|
||||
protected $dimensionsDataType = 'array';
|
||||
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;
|
||||
}
|
||||
public function setWeeklyImpressions($weeklyImpressions)
|
||||
{
|
||||
$this->weeklyImpressions = $weeklyImpressions;
|
||||
}
|
||||
public function getWeeklyImpressions()
|
||||
{
|
||||
return $this->weeklyImpressions;
|
||||
}
|
||||
public function setWeeklyUniques($weeklyUniques)
|
||||
{
|
||||
$this->weeklyUniques = $weeklyUniques;
|
||||
}
|
||||
public function getWeeklyUniques()
|
||||
{
|
||||
return $this->weeklyUniques;
|
||||
}
|
||||
}
|
||||
88
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Accounts.php
vendored
Normal file
88
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Accounts.php
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "accounts" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $accounts = $adexchangebuyerService->accounts;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_Accounts extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Gets one account by ID. (accounts.get)
|
||||
*
|
||||
* @param int $id The account id
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_Account
|
||||
*/
|
||||
public function get($id, $optParams = array())
|
||||
{
|
||||
$params = array('id' => $id);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Account");
|
||||
}
|
||||
/**
|
||||
* Retrieves the authenticated user's list of accounts. (accounts.listAccounts)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_AccountsList
|
||||
*/
|
||||
public function listAccounts($optParams = array())
|
||||
{
|
||||
$params = array();
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_AccountsList");
|
||||
}
|
||||
/**
|
||||
* Updates an existing account. This method supports patch semantics.
|
||||
* (accounts.patch)
|
||||
*
|
||||
* @param int $id The account id
|
||||
* @param Google_Service_AdExchangeBuyer_Account $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param bool confirmUnsafeAccountChange Confirmation for erasing bidder
|
||||
* and cookie matching urls.
|
||||
* @return Google_Service_AdExchangeBuyer_Account
|
||||
*/
|
||||
public function patch($id, Google_Service_AdExchangeBuyer_Account $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('id' => $id, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_Account");
|
||||
}
|
||||
/**
|
||||
* Updates an existing account. (accounts.update)
|
||||
*
|
||||
* @param int $id The account id
|
||||
* @param Google_Service_AdExchangeBuyer_Account $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param bool confirmUnsafeAccountChange Confirmation for erasing bidder
|
||||
* and cookie matching urls.
|
||||
* @return Google_Service_AdExchangeBuyer_Account
|
||||
*/
|
||||
public function update($id, Google_Service_AdExchangeBuyer_Account $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('id' => $id, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_Account");
|
||||
}
|
||||
}
|
||||
55
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/BillingInfo.php
vendored
Normal file
55
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/BillingInfo.php
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "billingInfo" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $billingInfo = $adexchangebuyerService->billingInfo;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_BillingInfo extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Returns the billing information for one account specified by account ID.
|
||||
* (billingInfo.get)
|
||||
*
|
||||
* @param int $accountId The account id.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_BillingInfo
|
||||
*/
|
||||
public function get($accountId, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_BillingInfo");
|
||||
}
|
||||
/**
|
||||
* Retrieves a list of billing information for all accounts of the authenticated
|
||||
* user. (billingInfo.listBillingInfo)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_BillingInfoList
|
||||
*/
|
||||
public function listBillingInfo($optParams = array())
|
||||
{
|
||||
$params = array();
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_BillingInfoList");
|
||||
}
|
||||
}
|
||||
81
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Budget.php
vendored
Normal file
81
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Budget.php
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "budget" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $budget = $adexchangebuyerService->budget;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_Budget extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Returns the budget information for the adgroup specified by the accountId and
|
||||
* billingId. (budget.get)
|
||||
*
|
||||
* @param string $accountId The account id to get the budget information for.
|
||||
* @param string $billingId The billing id to get the budget information for.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_Budget
|
||||
*/
|
||||
public function get($accountId, $billingId, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'billingId' => $billingId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Budget");
|
||||
}
|
||||
/**
|
||||
* Updates the budget amount for the budget of the adgroup specified by the
|
||||
* accountId and billingId, with the budget amount in the request. This method
|
||||
* supports patch semantics. (budget.patch)
|
||||
*
|
||||
* @param string $accountId The account id associated with the budget being
|
||||
* updated.
|
||||
* @param string $billingId The billing id associated with the budget being
|
||||
* updated.
|
||||
* @param Google_Service_AdExchangeBuyer_Budget $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_Budget
|
||||
*/
|
||||
public function patch($accountId, $billingId, Google_Service_AdExchangeBuyer_Budget $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'billingId' => $billingId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_Budget");
|
||||
}
|
||||
/**
|
||||
* Updates the budget amount for the budget of the adgroup specified by the
|
||||
* accountId and billingId, with the budget amount in the request.
|
||||
* (budget.update)
|
||||
*
|
||||
* @param string $accountId The account id associated with the budget being
|
||||
* updated.
|
||||
* @param string $billingId The billing id associated with the budget being
|
||||
* updated.
|
||||
* @param Google_Service_AdExchangeBuyer_Budget $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_Budget
|
||||
*/
|
||||
public function update($accountId, $billingId, Google_Service_AdExchangeBuyer_Budget $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'billingId' => $billingId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_Budget");
|
||||
}
|
||||
}
|
||||
127
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Creatives.php
vendored
Normal file
127
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Creatives.php
vendored
Normal file
@@ -0,0 +1,127 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "creatives" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $creatives = $adexchangebuyerService->creatives;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_Creatives extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Add a deal id association for the creative. (creatives.addDeal)
|
||||
*
|
||||
* @param int $accountId The id for the account that will serve this creative.
|
||||
* @param string $buyerCreativeId The buyer-specific id for this creative.
|
||||
* @param string $dealId The id of the deal id to associate with this creative.
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function addDeal($accountId, $buyerCreativeId, $dealId, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId, 'dealId' => $dealId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('addDeal', array($params));
|
||||
}
|
||||
/**
|
||||
* Gets the status for a single creative. A creative will be available 30-40
|
||||
* minutes after submission. (creatives.get)
|
||||
*
|
||||
* @param int $accountId The id for the account that will serve this creative.
|
||||
* @param string $buyerCreativeId The buyer-specific id for this creative.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_Creative
|
||||
*/
|
||||
public function get($accountId, $buyerCreativeId, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Creative");
|
||||
}
|
||||
/**
|
||||
* Submit a new creative. (creatives.insert)
|
||||
*
|
||||
* @param Google_Service_AdExchangeBuyer_Creative $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_Creative
|
||||
*/
|
||||
public function insert(Google_Service_AdExchangeBuyer_Creative $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_Creative");
|
||||
}
|
||||
/**
|
||||
* Retrieves a list of the authenticated user's active creatives. A creative
|
||||
* will be available 30-40 minutes after submission. (creatives.listCreatives)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param int accountId When specified, only creatives for the given account
|
||||
* ids are returned.
|
||||
* @opt_param string buyerCreativeId When specified, only creatives for the
|
||||
* given buyer creative ids are returned.
|
||||
* @opt_param string dealsStatusFilter When specified, only creatives having the
|
||||
* given deals status are returned.
|
||||
* @opt_param string maxResults Maximum number of entries returned on one result
|
||||
* page. If not set, the default is 100. Optional.
|
||||
* @opt_param string openAuctionStatusFilter When specified, only creatives
|
||||
* having the given open auction status are returned.
|
||||
* @opt_param string pageToken A continuation token, used to page through ad
|
||||
* clients. To retrieve the next page, set this parameter to the value of
|
||||
* "nextPageToken" from the previous response. Optional.
|
||||
* @return Google_Service_AdExchangeBuyer_CreativesList
|
||||
*/
|
||||
public function listCreatives($optParams = array())
|
||||
{
|
||||
$params = array();
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_CreativesList");
|
||||
}
|
||||
/**
|
||||
* Lists the external deal ids associated with the creative.
|
||||
* (creatives.listDeals)
|
||||
*
|
||||
* @param int $accountId The id for the account that will serve this creative.
|
||||
* @param string $buyerCreativeId The buyer-specific id for this creative.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_CreativeDealIds
|
||||
*/
|
||||
public function listDeals($accountId, $buyerCreativeId, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('listDeals', array($params), "Google_Service_AdExchangeBuyer_CreativeDealIds");
|
||||
}
|
||||
/**
|
||||
* Remove a deal id associated with the creative. (creatives.removeDeal)
|
||||
*
|
||||
* @param int $accountId The id for the account that will serve this creative.
|
||||
* @param string $buyerCreativeId The buyer-specific id for this creative.
|
||||
* @param string $dealId The id of the deal id to disassociate with this
|
||||
* creative.
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function removeDeal($accountId, $buyerCreativeId, $dealId, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId, 'dealId' => $dealId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('removeDeal', array($params));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "marketplacedeals" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $marketplacedeals = $adexchangebuyerService->marketplacedeals;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_Marketplacedeals extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Delete the specified deals from the proposal (marketplacedeals.delete)
|
||||
*
|
||||
* @param string $proposalId The proposalId to delete deals from.
|
||||
* @param Google_Service_AdExchangeBuyer_DeleteOrderDealsRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_DeleteOrderDealsResponse
|
||||
*/
|
||||
public function delete($proposalId, Google_Service_AdExchangeBuyer_DeleteOrderDealsRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('proposalId' => $proposalId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params), "Google_Service_AdExchangeBuyer_DeleteOrderDealsResponse");
|
||||
}
|
||||
/**
|
||||
* Add new deals for the specified proposal (marketplacedeals.insert)
|
||||
*
|
||||
* @param string $proposalId proposalId for which deals need to be added.
|
||||
* @param Google_Service_AdExchangeBuyer_AddOrderDealsRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_AddOrderDealsResponse
|
||||
*/
|
||||
public function insert($proposalId, Google_Service_AdExchangeBuyer_AddOrderDealsRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('proposalId' => $proposalId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_AddOrderDealsResponse");
|
||||
}
|
||||
/**
|
||||
* List all the deals for a given proposal
|
||||
* (marketplacedeals.listMarketplacedeals)
|
||||
*
|
||||
* @param string $proposalId The proposalId to get deals for. To search across
|
||||
* all proposals specify order_id = '-' as part of the URL.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string pqlQuery Query string to retrieve specific deals.
|
||||
* @return Google_Service_AdExchangeBuyer_GetOrderDealsResponse
|
||||
*/
|
||||
public function listMarketplacedeals($proposalId, $optParams = array())
|
||||
{
|
||||
$params = array('proposalId' => $proposalId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_GetOrderDealsResponse");
|
||||
}
|
||||
/**
|
||||
* Replaces all the deals in the proposal with the passed in deals
|
||||
* (marketplacedeals.update)
|
||||
*
|
||||
* @param string $proposalId The proposalId to edit deals on.
|
||||
* @param Google_Service_AdExchangeBuyer_EditAllOrderDealsRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_EditAllOrderDealsResponse
|
||||
*/
|
||||
public function update($proposalId, Google_Service_AdExchangeBuyer_EditAllOrderDealsRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('proposalId' => $proposalId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_EditAllOrderDealsResponse");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "marketplacenotes" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $marketplacenotes = $adexchangebuyerService->marketplacenotes;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_Marketplacenotes extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Add notes to the proposal (marketplacenotes.insert)
|
||||
*
|
||||
* @param string $proposalId The proposalId to add notes for.
|
||||
* @param Google_Service_AdExchangeBuyer_AddOrderNotesRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_AddOrderNotesResponse
|
||||
*/
|
||||
public function insert($proposalId, Google_Service_AdExchangeBuyer_AddOrderNotesRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('proposalId' => $proposalId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_AddOrderNotesResponse");
|
||||
}
|
||||
/**
|
||||
* Get all the notes associated with a proposal
|
||||
* (marketplacenotes.listMarketplacenotes)
|
||||
*
|
||||
* @param string $proposalId The proposalId to get notes for. To search across
|
||||
* all proposals specify order_id = '-' as part of the URL.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string pqlQuery Query string to retrieve specific notes. To search
|
||||
* the text contents of notes, please use syntax like "WHERE note.note = "foo"
|
||||
* or "WHERE note.note LIKE "%bar%"
|
||||
* @return Google_Service_AdExchangeBuyer_GetOrderNotesResponse
|
||||
*/
|
||||
public function listMarketplacenotes($proposalId, $optParams = array())
|
||||
{
|
||||
$params = array('proposalId' => $proposalId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_GetOrderNotesResponse");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "marketplaceprivateauction" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $marketplaceprivateauction = $adexchangebuyerService->marketplaceprivateauction;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_Marketplaceprivateauction extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Update a given private auction proposal
|
||||
* (marketplaceprivateauction.updateproposal)
|
||||
*
|
||||
* @param string $privateAuctionId The private auction id to be updated.
|
||||
* @param Google_Service_AdExchangeBuyer_UpdatePrivateAuctionProposalRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function updateproposal($privateAuctionId, Google_Service_AdExchangeBuyer_UpdatePrivateAuctionProposalRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('privateAuctionId' => $privateAuctionId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('updateproposal', array($params));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "performanceReport" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $performanceReport = $adexchangebuyerService->performanceReport;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_PerformanceReport extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Retrieves the authenticated user's list of performance metrics.
|
||||
* (performanceReport.listPerformanceReport)
|
||||
*
|
||||
* @param string $accountId The account id to get the reports.
|
||||
* @param string $endDateTime The end time of the report in ISO 8601 timestamp
|
||||
* format using UTC.
|
||||
* @param string $startDateTime The start time of the report in ISO 8601
|
||||
* timestamp format using UTC.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults Maximum number of entries returned on one result
|
||||
* page. If not set, the default is 100. Optional.
|
||||
* @opt_param string pageToken A continuation token, used to page through
|
||||
* performance reports. To retrieve the next page, set this parameter to the
|
||||
* value of "nextPageToken" from the previous response. Optional.
|
||||
* @return Google_Service_AdExchangeBuyer_PerformanceReportList
|
||||
*/
|
||||
public function listPerformanceReport($accountId, $endDateTime, $startDateTime, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'endDateTime' => $endDateTime, 'startDateTime' => $startDateTime);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_PerformanceReportList");
|
||||
}
|
||||
}
|
||||
118
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/PretargetingConfig.php
vendored
Normal file
118
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/PretargetingConfig.php
vendored
Normal file
@@ -0,0 +1,118 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "pretargetingConfig" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $pretargetingConfig = $adexchangebuyerService->pretargetingConfig;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_PretargetingConfig extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Deletes an existing pretargeting config. (pretargetingConfig.delete)
|
||||
*
|
||||
* @param string $accountId The account id to delete the pretargeting config
|
||||
* for.
|
||||
* @param string $configId The specific id of the configuration to delete.
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function delete($accountId, $configId, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'configId' => $configId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params));
|
||||
}
|
||||
/**
|
||||
* Gets a specific pretargeting configuration (pretargetingConfig.get)
|
||||
*
|
||||
* @param string $accountId The account id to get the pretargeting config for.
|
||||
* @param string $configId The specific id of the configuration to retrieve.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_PretargetingConfig
|
||||
*/
|
||||
public function get($accountId, $configId, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'configId' => $configId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig");
|
||||
}
|
||||
/**
|
||||
* Inserts a new pretargeting configuration. (pretargetingConfig.insert)
|
||||
*
|
||||
* @param string $accountId The account id to insert the pretargeting config
|
||||
* for.
|
||||
* @param Google_Service_AdExchangeBuyer_PretargetingConfig $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_PretargetingConfig
|
||||
*/
|
||||
public function insert($accountId, Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig");
|
||||
}
|
||||
/**
|
||||
* Retrieves a list of the authenticated user's pretargeting configurations.
|
||||
* (pretargetingConfig.listPretargetingConfig)
|
||||
*
|
||||
* @param string $accountId The account id to get the pretargeting configs for.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_PretargetingConfigList
|
||||
*/
|
||||
public function listPretargetingConfig($accountId, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfigList");
|
||||
}
|
||||
/**
|
||||
* Updates an existing pretargeting config. This method supports patch
|
||||
* semantics. (pretargetingConfig.patch)
|
||||
*
|
||||
* @param string $accountId The account id to update the pretargeting config
|
||||
* for.
|
||||
* @param string $configId The specific id of the configuration to update.
|
||||
* @param Google_Service_AdExchangeBuyer_PretargetingConfig $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_PretargetingConfig
|
||||
*/
|
||||
public function patch($accountId, $configId, Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'configId' => $configId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig");
|
||||
}
|
||||
/**
|
||||
* Updates an existing pretargeting config. (pretargetingConfig.update)
|
||||
*
|
||||
* @param string $accountId The account id to update the pretargeting config
|
||||
* for.
|
||||
* @param string $configId The specific id of the configuration to update.
|
||||
* @param Google_Service_AdExchangeBuyer_PretargetingConfig $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_PretargetingConfig
|
||||
*/
|
||||
public function update($accountId, $configId, Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId, 'configId' => $configId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig");
|
||||
}
|
||||
}
|
||||
55
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Products.php
vendored
Normal file
55
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Products.php
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "products" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $products = $adexchangebuyerService->products;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_Products extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Gets the requested product by id. (products.get)
|
||||
*
|
||||
* @param string $productId The id for the product to get the head revision for.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_Product
|
||||
*/
|
||||
public function get($productId, $optParams = array())
|
||||
{
|
||||
$params = array('productId' => $productId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Product");
|
||||
}
|
||||
/**
|
||||
* Gets the requested product. (products.search)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string pqlQuery The pql query used to query for products.
|
||||
* @return Google_Service_AdExchangeBuyer_GetOffersResponse
|
||||
*/
|
||||
public function search($optParams = array())
|
||||
{
|
||||
$params = array();
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('search', array($params), "Google_Service_AdExchangeBuyer_GetOffersResponse");
|
||||
}
|
||||
}
|
||||
122
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Proposals.php
vendored
Normal file
122
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Proposals.php
vendored
Normal file
@@ -0,0 +1,122 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "proposals" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $proposals = $adexchangebuyerService->proposals;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_Proposals extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Get a proposal given its id (proposals.get)
|
||||
*
|
||||
* @param string $proposalId Id of the proposal to retrieve.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_Proposal
|
||||
*/
|
||||
public function get($proposalId, $optParams = array())
|
||||
{
|
||||
$params = array('proposalId' => $proposalId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Proposal");
|
||||
}
|
||||
/**
|
||||
* Create the given list of proposals (proposals.insert)
|
||||
*
|
||||
* @param Google_Service_AdExchangeBuyer_CreateOrdersRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_CreateOrdersResponse
|
||||
*/
|
||||
public function insert(Google_Service_AdExchangeBuyer_CreateOrdersRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_CreateOrdersResponse");
|
||||
}
|
||||
/**
|
||||
* Update the given proposal. This method supports patch semantics.
|
||||
* (proposals.patch)
|
||||
*
|
||||
* @param string $proposalId The proposal id to update.
|
||||
* @param string $revisionNumber The last known revision number to update. If
|
||||
* the head revision in the marketplace database has since changed, an error
|
||||
* will be thrown. The caller should then fetch the latest proposal at head
|
||||
* revision and retry the update at that revision.
|
||||
* @param string $updateAction The proposed action to take on the proposal. This
|
||||
* field is required and it must be set when updating a proposal.
|
||||
* @param Google_Service_AdExchangeBuyer_Proposal $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_Proposal
|
||||
*/
|
||||
public function patch($proposalId, $revisionNumber, $updateAction, Google_Service_AdExchangeBuyer_Proposal $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('proposalId' => $proposalId, 'revisionNumber' => $revisionNumber, 'updateAction' => $updateAction, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_Proposal");
|
||||
}
|
||||
/**
|
||||
* Search for proposals using pql query (proposals.search)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string pqlQuery Query string to retrieve specific proposals.
|
||||
* @return Google_Service_AdExchangeBuyer_GetOrdersResponse
|
||||
*/
|
||||
public function search($optParams = array())
|
||||
{
|
||||
$params = array();
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('search', array($params), "Google_Service_AdExchangeBuyer_GetOrdersResponse");
|
||||
}
|
||||
/**
|
||||
* Update the given proposal to indicate that setup has been completed.
|
||||
* (proposals.setupcomplete)
|
||||
*
|
||||
* @param string $proposalId The proposal id for which the setup is complete
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function setupcomplete($proposalId, $optParams = array())
|
||||
{
|
||||
$params = array('proposalId' => $proposalId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('setupcomplete', array($params));
|
||||
}
|
||||
/**
|
||||
* Update the given proposal (proposals.update)
|
||||
*
|
||||
* @param string $proposalId The proposal id to update.
|
||||
* @param string $revisionNumber The last known revision number to update. If
|
||||
* the head revision in the marketplace database has since changed, an error
|
||||
* will be thrown. The caller should then fetch the latest proposal at head
|
||||
* revision and retry the update at that revision.
|
||||
* @param string $updateAction The proposed action to take on the proposal. This
|
||||
* field is required and it must be set when updating a proposal.
|
||||
* @param Google_Service_AdExchangeBuyer_Proposal $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_Proposal
|
||||
*/
|
||||
public function update($proposalId, $revisionNumber, $updateAction, Google_Service_AdExchangeBuyer_Proposal $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('proposalId' => $proposalId, 'revisionNumber' => $revisionNumber, 'updateAction' => $updateAction, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_Proposal");
|
||||
}
|
||||
}
|
||||
42
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Pubprofiles.php
vendored
Normal file
42
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Resource/Pubprofiles.php
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "pubprofiles" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $adexchangebuyerService = new Google_Service_AdExchangeBuyer(...);
|
||||
* $pubprofiles = $adexchangebuyerService->pubprofiles;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_AdExchangeBuyer_Resource_Pubprofiles extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Gets the requested publisher profile(s) by publisher accountId.
|
||||
* (pubprofiles.listPubprofiles)
|
||||
*
|
||||
* @param int $accountId The accountId of the publisher to get profiles for.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_AdExchangeBuyer_GetPublisherProfilesByAccountIdResponse
|
||||
*/
|
||||
public function listPubprofiles($accountId, $optParams = array())
|
||||
{
|
||||
$params = array('accountId' => $accountId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_GetPublisherProfilesByAccountIdResponse");
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Seller.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/Seller.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_Seller extends Google_Model
|
||||
{
|
||||
public $accountId;
|
||||
public $subAccountId;
|
||||
|
||||
public function setAccountId($accountId)
|
||||
{
|
||||
$this->accountId = $accountId;
|
||||
}
|
||||
public function getAccountId()
|
||||
{
|
||||
return $this->accountId;
|
||||
}
|
||||
public function setSubAccountId($subAccountId)
|
||||
{
|
||||
$this->subAccountId = $subAccountId;
|
||||
}
|
||||
public function getSubAccountId()
|
||||
{
|
||||
return $this->subAccountId;
|
||||
}
|
||||
}
|
||||
63
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/SharedTargeting.php
vendored
Normal file
63
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/SharedTargeting.php
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_SharedTargeting extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'inclusions';
|
||||
protected $exclusionsType = 'Google_Service_AdExchangeBuyer_TargetingValue';
|
||||
protected $exclusionsDataType = 'array';
|
||||
protected $inclusionsType = 'Google_Service_AdExchangeBuyer_TargetingValue';
|
||||
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;
|
||||
}
|
||||
public function setKey($key)
|
||||
{
|
||||
$this->key = $key;
|
||||
}
|
||||
public function getKey()
|
||||
{
|
||||
return $this->key;
|
||||
}
|
||||
}
|
||||
103
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValue.php
vendored
Normal file
103
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValue.php
vendored
Normal file
@@ -0,0 +1,103 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_TargetingValue extends Google_Model
|
||||
{
|
||||
protected $creativeSizeValueType = 'Google_Service_AdExchangeBuyer_TargetingValueCreativeSize';
|
||||
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;
|
||||
}
|
||||
public function getLongValue()
|
||||
{
|
||||
return $this->longValue;
|
||||
}
|
||||
public function setStringValue($stringValue)
|
||||
{
|
||||
$this->stringValue = $stringValue;
|
||||
}
|
||||
public function getStringValue()
|
||||
{
|
||||
return $this->stringValue;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
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;
|
||||
}
|
||||
public function setCreativeSizeType($creativeSizeType)
|
||||
{
|
||||
$this->creativeSizeType = $creativeSizeType;
|
||||
}
|
||||
public function getCreativeSizeType()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setSkippableAdType($skippableAdType)
|
||||
{
|
||||
$this->skippableAdType = $skippableAdType;
|
||||
}
|
||||
public function getSkippableAdType()
|
||||
{
|
||||
return $this->skippableAdType;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'dayParts';
|
||||
protected $dayPartsType = 'Google_Service_AdExchangeBuyer_TargetingValueDayPartTargetingDayPart';
|
||||
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;
|
||||
}
|
||||
public function setTimeZoneType($timeZoneType)
|
||||
{
|
||||
$this->timeZoneType = $timeZoneType;
|
||||
}
|
||||
public function getTimeZoneType()
|
||||
{
|
||||
return $this->timeZoneType;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_TargetingValueDayPartTargetingDayPart extends Google_Model
|
||||
{
|
||||
public $dayOfWeek;
|
||||
public $endHour;
|
||||
public $endMinute;
|
||||
public $startHour;
|
||||
public $startMinute;
|
||||
|
||||
public function setDayOfWeek($dayOfWeek)
|
||||
{
|
||||
$this->dayOfWeek = $dayOfWeek;
|
||||
}
|
||||
public function getDayOfWeek()
|
||||
{
|
||||
return $this->dayOfWeek;
|
||||
}
|
||||
public function setEndHour($endHour)
|
||||
{
|
||||
$this->endHour = $endHour;
|
||||
}
|
||||
public function getEndHour()
|
||||
{
|
||||
return $this->endHour;
|
||||
}
|
||||
public function setEndMinute($endMinute)
|
||||
{
|
||||
$this->endMinute = $endMinute;
|
||||
}
|
||||
public function getEndMinute()
|
||||
{
|
||||
return $this->endMinute;
|
||||
}
|
||||
public function setStartHour($startHour)
|
||||
{
|
||||
$this->startHour = $startHour;
|
||||
}
|
||||
public function getStartHour()
|
||||
{
|
||||
return $this->startHour;
|
||||
}
|
||||
public function setStartMinute($startMinute)
|
||||
{
|
||||
$this->startMinute = $startMinute;
|
||||
}
|
||||
public function getStartMinute()
|
||||
{
|
||||
return $this->startMinute;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'demogAgeCriteriaIds';
|
||||
public $demogAgeCriteriaIds;
|
||||
|
||||
public function setDemogAgeCriteriaIds($demogAgeCriteriaIds)
|
||||
{
|
||||
$this->demogAgeCriteriaIds = $demogAgeCriteriaIds;
|
||||
}
|
||||
public function getDemogAgeCriteriaIds()
|
||||
{
|
||||
return $this->demogAgeCriteriaIds;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'demogGenderCriteriaIds';
|
||||
public $demogGenderCriteriaIds;
|
||||
|
||||
public function setDemogGenderCriteriaIds($demogGenderCriteriaIds)
|
||||
{
|
||||
$this->demogGenderCriteriaIds = $demogGenderCriteriaIds;
|
||||
}
|
||||
public function getDemogGenderCriteriaIds()
|
||||
{
|
||||
return $this->demogGenderCriteriaIds;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueSize.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/AdExchangeBuyer/TargetingValueSize.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_TargetingValueSize extends Google_Model
|
||||
{
|
||||
public $height;
|
||||
public $width;
|
||||
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_AdExchangeBuyer_UpdatePrivateAuctionProposalRequest extends Google_Model
|
||||
{
|
||||
public $externalDealId;
|
||||
protected $noteType = 'Google_Service_AdExchangeBuyer_MarketplaceNote';
|
||||
protected $noteDataType = '';
|
||||
public $proposalRevisionNumber;
|
||||
public $updateAction;
|
||||
|
||||
public function setExternalDealId($externalDealId)
|
||||
{
|
||||
$this->externalDealId = $externalDealId;
|
||||
}
|
||||
public function getExternalDealId()
|
||||
{
|
||||
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;
|
||||
}
|
||||
public function setProposalRevisionNumber($proposalRevisionNumber)
|
||||
{
|
||||
$this->proposalRevisionNumber = $proposalRevisionNumber;
|
||||
}
|
||||
public function getProposalRevisionNumber()
|
||||
{
|
||||
return $this->proposalRevisionNumber;
|
||||
}
|
||||
public function setUpdateAction($updateAction)
|
||||
{
|
||||
$this->updateAction = $updateAction;
|
||||
}
|
||||
public function getUpdateAction()
|
||||
{
|
||||
return $this->updateAction;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user