Skip to content

Commit 12ba4e9

Browse files
authored
Merge pull request #178 from BingAds/v13.0.15.1
13.0.15.1
2 parents 064b6d3 + bf55827 commit 12ba4e9

File tree

128 files changed

+2145
-18
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+2145
-18
lines changed

src/Auth/ServiceClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
php
22

33
namespace Microsoft\BingAds\Auth;
44

@@ -242,7 +242,7 @@ private function RefreshServiceProxy()
242242
'features' => SOAP_SINGLE_ELEMENT_ARRAYS,
243243
// Disable keep_alive to avoid 'Process open FD table is full'
244244
'keep_alive' => FALSE,
245-
'user_agent' => 'BingAdsSDKPHP ' . '13.0.15 ' . PHP_VERSION,
245+
'user_agent' => 'BingAdsSDKPHP ' . '13.0.15.1 ' . PHP_VERSION,
246246
'cache_wsdl' => 'WSDL_CACHE_NONE',
247247

248248
/**

src/V13/CampaignManagement/ApplyHotelGroupActionsRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{
66
/**
7-
* Applies an add, update, or delete action to each of the specified BiddableAdGroupCriterion or NegativeAdGroupCriterion, which each contain a ProductPartition.
7+
* Applies an add, update, or delete action to each of the specified BiddableAdGroupCriterion or NegativeAdGroupCriterion, which each contain a HotelGroup.
88
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/applyhotelgroupactions?view=bingads-13 ApplyHotelGroupActions Request Object
99
*
1010
* @uses AdGroupCriterionAction

src/V13/CampaignManagement/ApplyHotelGroupActionsResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{
66
/**
7-
* Applies an add, update, or delete action to each of the specified BiddableAdGroupCriterion or NegativeAdGroupCriterion, which each contain a ProductPartition.
7+
* Applies an add, update, or delete action to each of the specified BiddableAdGroupCriterion or NegativeAdGroupCriterion, which each contain a HotelGroup.
88
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/applyhotelgroupactions?view=bingads-13 ApplyHotelGroupActions Response Object
99
*
1010
* @uses BatchError

src/V13/CampaignManagement/CommissionBiddingScheme.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
{
66
/**
7-
* Reserved.
7+
* Defines an object that represents the commission bid strategy type (commission pay per stay).
88
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/commissionbiddingscheme?view=bingads-13 CommissionBiddingScheme Data Object
99
*/
1010
final class CommissionBiddingScheme extends BiddingScheme
1111
{
1212
/**
13-
* Reserved.
13+
* The commission rate charged to the advertiser when someone books a hotel and stays there.
1414
* @var double
1515
*/
1616
public $CommissionRate;

src/V13/CampaignManagement/PercentCpcBiddingScheme.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
{
66
/**
7-
* Reserved.
7+
* Defines an object that represents the percent CPC bid strategy type (total hotel price per night, including taxes and fees).
88
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/percentcpcbiddingscheme?view=bingads-13 PercentCpcBiddingScheme Data Object
99
*/
1010
final class PercentCpcBiddingScheme extends BiddingScheme
1111
{
1212
/**
13-
* Reserved.
13+
* The maximum effective bid limit, in absolute form, at the campaign level.
1414
* @var double
1515
*/
1616
public $MaxPercentCpc;

src/V13/CampaignManagement/RateAmount.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
{
66
/**
7-
* Reserved.
7+
* Defines an object that represents the rate amount in percentage form.
88
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/rateamount?view=bingads-13 RateAmount Data Object
99
*
1010
* @used-by RateBid
1111
*/
1212
final class RateAmount
1313
{
1414
/**
15-
* Reserved.
15+
* The rate amount in percentage form.
1616
* @var double
1717
*/
1818
public $Amount;

src/V13/CampaignManagement/RateBid.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{
66
/**
7-
* Reserved.
7+
* Defines an object that represents the rate bid.
88
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/ratebid?view=bingads-13 RateBid Data Object
99
*
1010
* @uses RateAmount
@@ -13,7 +13,7 @@
1313
final class RateBid extends CriterionBid
1414
{
1515
/**
16-
* Reserved.
16+
* Defines an object that represents the rate amount.
1717
* @var RateAmount
1818
*/
1919
public $RateAmount;
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
namespace Microsoft\BingAds\V13\CustomerBilling;
4+
5+
{
6+
/**
7+
* Adds an insertion order to the specified account.
8+
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/addinsertionorder?view=bingads-13 AddInsertionOrder Request Object
9+
*
10+
* @uses InsertionOrder
11+
* @used-by BingAdsCustomerBillingService::AddInsertionOrder
12+
*/
13+
final class AddInsertionOrderRequest
14+
{
15+
/**
16+
* An insertion order to add to the account.
17+
* @var InsertionOrder
18+
*/
19+
public $InsertionOrder;
20+
}
21+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
3+
namespace Microsoft\BingAds\V13\CustomerBilling;
4+
5+
{
6+
/**
7+
* Adds an insertion order to the specified account.
8+
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/addinsertionorder?view=bingads-13 AddInsertionOrder Response Object
9+
*
10+
* @used-by BingAdsCustomerBillingService::AddInsertionOrder
11+
*/
12+
final class AddInsertionOrderResponse
13+
{
14+
/**
15+
* A long value that represents the identifier for the insertion order that was added.
16+
* @var integer
17+
*/
18+
public $InsertionOrderId;
19+
20+
/**
21+
* Identifies the server time in UTC when the insertion order was added.
22+
* @var \DateTime
23+
*/
24+
public $CreateTime;
25+
}
26+
}

src/V13/CustomerBilling/BatchError.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/batcherror?view=bingads-13 BatchError Data Object
99
*
1010
* @used-by ApiBatchFault
11+
* @used-by DispatchCouponsResponse
1112
*/
1213
final class BatchError
1314
{

0 commit comments

Comments
 (0)