Skip to content

Commit 387e319

Browse files
committed
v13.0.18
1 parent b5d157b commit 387e319

File tree

48 files changed

+319
-101
lines changed

Some content is hidden

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

48 files changed

+319
-101
lines changed

src/Auth/ServiceClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.17 ' . PHP_VERSION,
245+
'user_agent' => 'BingAdsSDKPHP ' . '13.0.18 ' . PHP_VERSION,
246246
'cache_wsdl' => 'WSDL_CACHE_NONE',
247247

248248
/**

src/V13/Bulk/DownloadEntity.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,15 @@ final class DownloadEntity
473473

474474
/** Reserved. */
475475
const AdGroupLogoAdExtensions = 'AdGroupLogoAdExtensions';
476+
477+
/** Reserved. */
478+
const LeadFormAdExtensions = 'LeadFormAdExtensions';
479+
480+
/** Reserved. */
481+
const AccountLeadFormAdExtensions = 'AccountLeadFormAdExtensions';
482+
483+
/** Reserved. */
484+
const CampaignLeadFormAdExtensions = 'CampaignLeadFormAdExtensions';
476485
}
477486

478487
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
namespace Microsoft\BingAds\V13\CampaignManagement;
4+
5+
{
6+
/**
7+
* Reserved.
8+
* @link https:/learn.microsoft.com/advertising/campaign-management-service/accountnegativekeywordlist?view=bingads-13 AccountNegativeKeywordList Data Object
9+
*/
10+
final class AccountNegativeKeywordList extends SharedList
11+
{
12+
}
13+
14+
}

src/V13/CampaignManagement/AdGroup.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,17 @@ final class AdGroup
153153
public $UrlCustomParameters;
154154

155155
/**
156-
* Indicates if predictive targeting is enabled for an AdGroup.
156+
* This will be deprecated.
157157
* @var boolean
158158
*/
159159
public $UseOptimizedTargeting;
160160

161+
/**
162+
* Indicates if predictive targeting is enabled for an AdGroup.
163+
* @var boolean
164+
*/
165+
public $UsePredictiveTargeting;
166+
161167
/**
162168
* Determines whether to use the account time zone or the time zone of the search user where the ads could be delivered.
163169
* @var boolean

src/V13/CampaignManagement/AdGroupAdditionalField.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,14 @@ final class AdGroupAdditionalField
3636
/** Reserved. */
3737
const McpaBid = 'McpaBid';
3838

39-
/** Indicates if predictive targeting is enabled for an AdGroup. */
39+
/** This will be deprecated. */
4040
const UseOptimizedTargeting = 'UseOptimizedTargeting';
4141

4242
/** Settings for the frequency cap. */
4343
const FrequencyCapSettings = 'FrequencyCapSettings';
44+
45+
/** Indicates if predictive targeting is enabled for an AdGroup. */
46+
const UsePredictiveTargeting = 'UsePredictiveTargeting';
4447
}
4548

4649
}

src/V13/CampaignManagement/AdGroupCriterionType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ final class AdGroupCriterionType
9292
/** Reserved. */
9393
const HotelCheckInDate = 'HotelCheckInDate';
9494

95-
/** Reserved. */
95+
/** The ad group criterion is a genre criterion. */
9696
const Genre = 'Genre';
9797
}
9898

src/V13/CampaignManagement/AddAudienceGroupsRequest.php

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

55
{
66
/**
7-
* Adds array of audience groups to a specified campaign.
7+
* Adds array of audience groups to the account.
88
* @link https:/learn.microsoft.com/advertising/campaign-management-service/addaudiencegroups?view=bingads-13 AddAudienceGroups Request Object
99
*
1010
* @uses AudienceGroup

src/V13/CampaignManagement/AddAudienceGroupsResponse.php

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

55
{
66
/**
7-
* Adds array of audience groups to a specified campaign.
7+
* Adds array of audience groups to the account.
88
* @link https:/learn.microsoft.com/advertising/campaign-management-service/addaudiencegroups?view=bingads-13 AddAudienceGroups Response Object
99
*
1010
* @uses BatchError

src/V13/CampaignManagement/ApplyAssetGroupListingGroupActionsRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
final class ApplyAssetGroupListingGroupActionsRequest
1414
{
1515
/**
16-
* A list of AssetGroupListingGroupAction objects that each contain an Action element and a ListingGroup element.All of the asset group listing group actions must be for the same asset group
16+
* A list of AssetGroupListingGroupAction objects that each contain an Action element and a ListingGroup element.
1717
* @var AssetGroupListingGroupAction[]
1818
*/
1919
public $ListingGroupActions;

src/V13/CampaignManagement/AssetGroupStatus.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
*/
1212
final class AssetGroupStatus
1313
{
14-
/** The status of the AssetGroup is Active. */
14+
/** The asset group is active, which indicates that the asset group can be served. */
1515
const Active = 'Active';
1616

17-
/** The status of the AssetGroup is Paused. */
17+
/** The asset group is paused, which indicates that the asset group will not serve. */
1818
const Paused = 'Paused';
1919

20-
/** The status of the AssetGroup is Deleted. */
20+
/** This status is for internal use only. */
2121
const Deleted = 'Deleted';
2222

23-
/** Reserved. */
23+
/** The asset group is expired. */
2424
const Expired = 'Expired';
2525
}
2626

0 commit comments

Comments
 (0)