Skip to content

Commit 21fd7c3

Browse files
authored
Merge pull request #22 from BingAds/august-refresh
add service proxy chnages
2 parents 1c1bd57 + 2a427bd commit 21fd7c3

15 files changed

+124
-1
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
namespace Microsoft\BingAds\V11\CampaignManagement;
4+
5+
{
6+
/**
7+
* Defines a list of optional AdGroup properties that you can request when calling GetAdGroupsByCampaignId and GetAdGroupsByIds.
8+
* @link http://msdn.microsoft.com/en-us/library/mt709095(v=msads.110).aspx AdGroupAdditionalField Value Set
9+
*
10+
* @used-by GetAdGroupsByCampaignIdRequest
11+
* @used-by GetAdGroupsByIdsRequest
12+
*/
13+
final class AdGroupAdditionalField
14+
{
15+
/** Includes the InheritedBidStrategyType element that can be nested within the BiddingScheme element of an AdGroup object. */
16+
const InheritedBidStrategyType = 'InheritedBidStrategyType';
17+
}
18+
19+
}

src/V11/CampaignManagement/ConversionGoalType.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,11 @@ final class ConversionGoalType
2828
/** Refers to an AppInstallGoal */
2929
const AppInstall = 'AppInstall';
3030

31-
/** Refers to an OfflineConversion */
31+
/** Refers to an OfflineConversionGoal */
3232
const OfflineConversion = 'OfflineConversion';
33+
34+
/** Refers to an InStoreTransactionGoal */
35+
const InStoreTransaction = 'InStoreTransaction';
3336
}
3437

3538
}

src/V11/CampaignManagement/GetAdGroupsByCampaignIdRequest.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* Gets the ad groups within the specified campaign.
88
* @link http://msdn.microsoft.com/en-us/library/dn277524(v=msads.110).aspx GetAdGroupsByCampaignId Request Object
99
*
10+
* @uses AdGroupAdditionalField
1011
* @used-by BingAdsCampaignManagementService::GetAdGroupsByCampaignId
1112
*/
1213
final class GetAdGroupsByCampaignIdRequest
@@ -16,5 +17,11 @@ final class GetAdGroupsByCampaignIdRequest
1617
* @var integer
1718
*/
1819
public $CampaignId;
20+
21+
/**
22+
* The list of additional properties that you want included within each returned AdGroup object.
23+
* @var AdGroupAdditionalField
24+
*/
25+
public $ReturnAdditionalFields;
1926
}
2027
}

src/V11/CampaignManagement/GetAdGroupsByIdsRequest.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* Gets the specified ad groups within the specified campaign.
88
* @link http://msdn.microsoft.com/en-us/library/dn277529(v=msads.110).aspx GetAdGroupsByIds Request Object
99
*
10+
* @uses AdGroupAdditionalField
1011
* @used-by BingAdsCampaignManagementService::GetAdGroupsByIds
1112
*/
1213
final class GetAdGroupsByIdsRequest
@@ -22,5 +23,11 @@ final class GetAdGroupsByIdsRequest
2223
* @var integer[]
2324
*/
2425
public $AdGroupIds;
26+
27+
/**
28+
* The list of additional properties that you want included within each returned AdGroup object.
29+
* @var AdGroupAdditionalField
30+
*/
31+
public $ReturnAdditionalFields;
2532
}
2633
}

src/V11/CampaignManagement/GetKeywordsByAdGroupIdRequest.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* Gets the keywords within an ad group.
88
* @link http://msdn.microsoft.com/en-us/library/dn236311(v=msads.110).aspx GetKeywordsByAdGroupId Request Object
99
*
10+
* @uses KeywordAdditionalField
1011
* @used-by BingAdsCampaignManagementService::GetKeywordsByAdGroupId
1112
*/
1213
final class GetKeywordsByAdGroupIdRequest
@@ -16,5 +17,11 @@ final class GetKeywordsByAdGroupIdRequest
1617
* @var integer
1718
*/
1819
public $AdGroupId;
20+
21+
/**
22+
* The list of additional properties that you want included within each returned Keyword object.
23+
* @var KeywordAdditionalField
24+
*/
25+
public $ReturnAdditionalFields;
1926
}
2027
}

src/V11/CampaignManagement/GetKeywordsByEditorialStatusRequest.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* @link http://msdn.microsoft.com/en-us/library/dn277501(v=msads.110).aspx GetKeywordsByEditorialStatus Request Object
99
*
1010
* @uses KeywordEditorialStatus
11+
* @uses KeywordAdditionalField
1112
* @used-by BingAdsCampaignManagementService::GetKeywordsByEditorialStatus
1213
*/
1314
final class GetKeywordsByEditorialStatusRequest
@@ -23,5 +24,11 @@ final class GetKeywordsByEditorialStatusRequest
2324
* @var KeywordEditorialStatus
2425
*/
2526
public $EditorialStatus;
27+
28+
/**
29+
* The list of additional properties that you want included within each returned Keyword object.
30+
* @var KeywordAdditionalField
31+
*/
32+
public $ReturnAdditionalFields;
2633
}
2734
}

src/V11/CampaignManagement/GetKeywordsByIdsRequest.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* Retrieves the specified keywords.
88
* @link http://msdn.microsoft.com/en-us/library/dn277505(v=msads.110).aspx GetKeywordsByIds Request Object
99
*
10+
* @uses KeywordAdditionalField
1011
* @used-by BingAdsCampaignManagementService::GetKeywordsByIds
1112
*/
1213
final class GetKeywordsByIdsRequest
@@ -22,5 +23,11 @@ final class GetKeywordsByIdsRequest
2223
* @var integer[]
2324
*/
2425
public $KeywordIds;
26+
27+
/**
28+
* The list of additional properties that you want included within each returned Keyword object.
29+
* @var KeywordAdditionalField
30+
*/
31+
public $ReturnAdditionalFields;
2532
}
2633
}
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\V11\CampaignManagement;
4+
5+
{
6+
/**
7+
* Defines an in-store transaction goal.
8+
* @link http://msdn.microsoft.com/en-us/library/mt493294(v=msads.110).aspx InStoreTransactionGoal Data Object
9+
*/
10+
final class InStoreTransactionGoal extends ConversionGoal
11+
{
12+
}
13+
14+
}

src/V11/CampaignManagement/InheritFromParentBiddingScheme.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
*/
1010
final class InheritFromParentBiddingScheme extends BiddingScheme
1111
{
12+
/**
13+
* The type of bidding scheme (a.
14+
* @var string
15+
*/
16+
public $InheritedBidStrategyType;
1217
}
1318

1419
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
namespace Microsoft\BingAds\V11\CampaignManagement;
4+
5+
{
6+
/**
7+
* Defines a list of optional Keyword properties that you can request when calling GetKeywordsByAdGroupId, GetKeywordsByEditorialStatus, and GetKeywordsByIds.
8+
* @link http://msdn.microsoft.com/en-us/library/mt709096(v=msads.110).aspx KeywordAdditionalField Value Set
9+
*
10+
* @used-by GetKeywordsByAdGroupIdRequest
11+
* @used-by GetKeywordsByEditorialStatusRequest
12+
* @used-by GetKeywordsByIdsRequest
13+
*/
14+
final class KeywordAdditionalField
15+
{
16+
/** Includes the InheritedBidStrategyType element that can be nested within the BiddingScheme element of an Keyword object. */
17+
const InheritedBidStrategyType = 'InheritedBidStrategyType';
18+
}
19+
20+
}

0 commit comments

Comments
 (0)