Skip to content

Commit 7a0ed00

Browse files
authored
Merge pull request #72 from BingAds/v11-12-4
july refresh
2 parents b4fcc4a + d2b1dbf commit 7a0ed00

File tree

8 files changed

+19
-6
lines changed

8 files changed

+19
-6
lines changed

src/Auth/LiveComOAuthService.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ public function GetAccessTokens(OAuthRequestParameters $oauthRequestParameters,
5151
'client_id' => $oauthRequestParameters->ClientId,
5252
'grant_type' => $oauthRequestParameters->GrantType,
5353
$oauthRequestParameters->GrantParamName => $oauthRequestParameters->GrantValue,
54-
'redirect_uri' => $oauthRequestParameters->RedirectUri
54+
'redirect_uri' => $oauthRequestParameters->RedirectUri,
55+
'scope' => 'bingads.manage'
5556
);
5657

5758
if ($oauthRequestParameters->ClientSecret != null)

src/V12/CampaignManagement/AdGroup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ final class AdGroup
9191
public $PrivacyStatus;
9292

9393
/**
94-
* The ad group settings for criterion type group targets.
94+
* The ad group settings that typically vary by campaign type.
9595
* @var Setting[]
9696
*/
9797
public $Settings;

src/V12/CampaignManagement/CoOpSetting.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
final class CoOpSetting extends Setting
1313
{
1414
/**
15-
* The percentage that allows your cooperative bid to flex.
15+
* The percentage (greater than zero) that allows your cooperative bid to flex.
1616
* @var double
1717
*/
1818
public $BidBoostValue;

src/V12/CampaignManagement/Network.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ final class Network
2020
/** Display ads on only syndicated search networks. */
2121
const SyndicatedSearchOnly = 'SyndicatedSearchOnly';
2222

23-
/** Reserved. */
23+
/** Reserved for future use. */
2424
const InHousePromotion = 'InHousePromotion';
2525
}
2626

src/V12/CampaignManagement/ProductAd.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
final class ProductAd extends Ad
1111
{
1212
/**
13-
* The promotional text to display in a product ad.
13+
* This property is reserved for internal use and will be removed from a future version of the API.
1414
* @var string
1515
*/
1616
public $PromotionalText;

src/V12/CampaignManagement/ShoppingSetting.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class ShoppingSetting extends Setting
2828
public $SalesCountryCode;
2929

3030
/**
31-
* The unique identifier for the Bing Merchant Center store that your product catalog feed belongs to.
31+
* The unique identifier for the Bing Merchant Center store that contains a product catalog feed that you want to use for the campaign.
3232
* @var integer
3333
*/
3434
public $StoreId;

src/V12/CustomerManagement/CustomerRole.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ final class CustomerRole
2828
* @var integer[]
2929
*/
3030
public $AccountIds;
31+
32+
/**
33+
* Reserved.
34+
* @var integer[]
35+
*/
36+
public $LinkedAccountIds;
3137
}
3238

3339
}

src/V12/CustomerManagement/GetUserRequest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,11 @@ final class GetUserRequest
1616
* @var integer
1717
*/
1818
public $UserId;
19+
20+
/**
21+
* Reserved.
22+
* @var boolean
23+
*/
24+
public $IncludeLinkedAccountIds;
1925
}
2026
}

0 commit comments

Comments
 (0)