Skip to content

Commit d33cd0e

Browse files
authored
Merge pull request #27 from BingAds/september-refresh
September refresh
2 parents dc5378c + 1090932 commit d33cd0e

12 files changed

+49
-22
lines changed

src/V11/Bulk/DataScope.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
*/
1313
final class DataScope
1414
{
15-
/** Download the entity attributes records. */
15+
/** Download the entity attributes records.*/
1616
const EntityData = 'EntityData';
1717

18-
/** Download the performance data fields for the corresponding entity records. */
18+
/** Download the performance data fields.*/
1919
const EntityPerformanceData = 'EntityPerformanceData';
2020

2121
/** Download the quality score fields for the corresponding entity records. */
2222
const QualityScoreData = 'QualityScoreData';
2323

24-
/** Download the bid suggestions records. */
24+
/** Download the bid suggestions records.*/
2525
const BidSuggestionsData = 'BidSuggestionsData';
2626
}
2727

src/V11/CampaignManagement/AdGroup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ final class AdGroup
9999
public $PricingModel;
100100

101101
/**
102-
* The targeting setting that is applicable for all remarketing lists that are associated with this ad group.
102+
* The targeting setting that is applicable for all audiences e.g., custom audiences and remarketing lists that are associated with this ad group.
103103
* @var RemarketingTargetingSetting
104104
*/
105105
public $RemarketingTargetingSetting;

src/V11/CampaignManagement/AdGroupAdditionalField.php

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

55
{
66
/**
7-
* Defines a list of optional AdGroup properties that you can request when calling GetAdGroupsByCampaignId and GetAdGroupsByIds.
7+
* Defines additional properties of an AdGroup object, or properties of objects nested within an ad group, that you can request when calling GetAdGroupsByCampaignId and GetAdGroupsByIds.
88
* @link http://msdn.microsoft.com/en-us/library/mt709095(v=msads.110).aspx AdGroupAdditionalField Value Set
99
*
1010
* @used-by GetAdGroupsByCampaignIdRequest

src/V11/CampaignManagement/KeywordAdditionalField.php

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

55
{
66
/**
7-
* Defines a list of optional Keyword properties that you can request when calling GetKeywordsByAdGroupId, GetKeywordsByEditorialStatus, and GetKeywordsByIds.
7+
* Defines additional properties of a Keyword object, or properties of objects nested within a keyword, that you can request when calling GetKeywordsByAdGroupId, GetKeywordsByEditorialStatus, and GetKeywordsByIds.
88
* @link http://msdn.microsoft.com/en-us/library/mt709096(v=msads.110).aspx KeywordAdditionalField Value Set
99
*
1010
* @used-by GetKeywordsByAdGroupIdRequest

src/V11/CampaignManagement/RemarketingTargetingSetting.php

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

55
{
66
/**
7-
* Defines the targeting setting that is applicable for all remarketing lists that are associated with a given ad group.
7+
* The targeting setting that is applicable for all audiences e.g., custom audiences and remarketing lists that are associated with this ad group.
88
* @link http://msdn.microsoft.com/en-us/library/mt735046(v=msads.110).aspx RemarketingTargetingSetting Value Set
99
*
1010
* @used-by AdGroup
1111
*/
1212
final class RemarketingTargetingSetting
1313
{
14-
/** Show ads to people searching for your ad, with the option to change the bid amount for people included in the remarketing list. */
14+
/** Show ads to people searching for your ad, with the option to change the bid amount for people included in the audience. */
1515
const BidOnly = 'BidOnly';
1616

17-
/** Show ads only to people included in the remarketing list, with the option to change the bid amount. */
17+
/** Show ads only to people included in the audience, with the option to change the bid amount. */
1818
const TargetAndBid = 'TargetAndBid';
1919
}
2020

src/V11/Reporting/GeographicPerformanceReportColumn.php

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ final class GeographicPerformanceReportColumn
3535
/** The Bing Ads assigned identifier of an ad group. */
3636
const AdGroupId = 'AdGroupId';
3737

38-
/** The country used to deliver the ad. */
38+
/** The country where the user was physically located when they clicked the ad. */
3939
const Country = 'Country';
4040

41-
/** The state used to deliver the ad. */
41+
/** The state where the user was physically located when they clicked the ad. */
4242
const State = 'State';
4343

44-
/** The metro area used to deliver the ad. */
44+
/** The metro area where the user was physically located when they clicked the ad. */
4545
const MetroArea = 'MetroArea';
4646

47-
/** The city used to deliver the ad. */
47+
/** The city where the user was physically located when they clicked the ad. */
4848
const City = 'City';
4949

5050
/** The account currency type. */
@@ -139,6 +139,15 @@ final class GeographicPerformanceReportColumn
139139

140140
/** The ad group status. */
141141
const AdGroupStatus = 'AdGroupStatus';
142+
143+
/** The county where the user was physically located when they clicked the ad. */
144+
const County = 'County';
145+
146+
/** The postal code where the user was physically located when they clicked the ad. */
147+
const PostalCode = 'PostalCode';
148+
149+
/** The Bing Ads identifier of the location where the user was physically located when they clicked the ad. */
150+
const LocationId = 'LocationId';
142151
}
143152

144153
}

src/V11/Reporting/KeywordPerformanceReportColumn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ final class KeywordPerformanceReportColumn
5151
/** The destination URL attribute of the ad, keyword, or ad group criterion. */
5252
const DestinationUrl = 'DestinationUrl';
5353

54-
/** The maximum cost per click. */
54+
/** The maximum cost per click bid that was in effect at the time the report was generated. */
5555
const CurrentMaxCpc = 'CurrentMaxCpc';
5656

5757
/** The account currency type. */

src/V11/Reporting/ProductPartitionPerformanceReportColumn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ final class ProductPartitionPerformanceReportColumn
4747
/** The Bing Ads assigned identifier of an ad. */
4848
const AdId = 'AdId';
4949

50-
/** The maximum cost per click. */
50+
/** The maximum cost per click bid that was in effect at the time the report was generated. */
5151
const CurrentMaxCpc = 'CurrentMaxCpc';
5252

5353
/** The account currency type. */

src/V11/Reporting/ProductPartitionUnitPerformanceReportColumn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ final class ProductPartitionUnitPerformanceReportColumn
4444
/** The Bing Ads assigned identifier of an ad. */
4545
const AdId = 'AdId';
4646

47-
/** The maximum cost per click. */
47+
/** The maximum cost per click bid that was in effect at the time the report was generated. */
4848
const CurrentMaxCpc = 'CurrentMaxCpc';
4949

5050
/** The account currency type. */

src/V11/Reporting/ReportingServiceSettings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
final class ReportingServiceSettings
77
{
88
const ServiceNamespace = 'https://bingads.microsoft.com/Reporting/v11';
9-
const ProductionEndpoint = 'https://api.bingads.microsoft.com/Api/Advertiser/Reporting/v11/ReportingService.svc';
9+
const ProductionEndpoint = 'https://reporting.api.bingads.microsoft.com/Api/Advertiser/Reporting/v11/ReportingService.svc';
1010
const SandboxEndpoint = 'https://reporting.api.sandbox.bingads.microsoft.com/Api/Advertiser/Reporting/v11/ReportingService.svc';
1111
}
1212

0 commit comments

Comments
 (0)