-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #176 from BingAds/users/qitia/version13015
version 13.0.15
- Loading branch information
Showing
234 changed files
with
1,986 additions
and
2,384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\AdInsight; | ||
|
||
{ | ||
/** | ||
* Discover your recommendations. | ||
* @link https://docs.microsoft.com/en-us/advertising/ad-insight-service/getrecommendations?view=bingads-13 GetRecommendations Request Object | ||
* | ||
* @used-by BingAdsAdInsightService::GetRecommendations | ||
*/ | ||
final class GetRecommendationsRequest | ||
{ | ||
/** | ||
* The identifier of the campaign that owns the ad group specified in the AdGroupId element. | ||
* @var integer | ||
*/ | ||
public $CampaignId; | ||
|
||
/** | ||
* The identifier of the ad group for which you want to determine responsive search ads opportunities. | ||
* @var integer | ||
*/ | ||
public $AdGroupId; | ||
|
||
/** | ||
* The identifier of the recommendation type that you want to get. | ||
* @var string | ||
*/ | ||
public $RecommendationType; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\AdInsight; | ||
|
||
{ | ||
/** | ||
* Discover your recommendations. | ||
* @link https://docs.microsoft.com/en-us/advertising/ad-insight-service/getrecommendations?view=bingads-13 GetRecommendations Response Object | ||
* | ||
* @uses Recommendation | ||
* @used-by BingAdsAdInsightService::GetRecommendations | ||
*/ | ||
final class GetRecommendationsResponse | ||
{ | ||
/** | ||
* An array of Recommendation objects. | ||
* @var Recommendation[] | ||
*/ | ||
public $Recommendations; | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/V13/AdInsight/GetTextAssetSuggestionsByFinalUrlsRequest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\AdInsight; | ||
|
||
{ | ||
/** | ||
* Reserved. | ||
* @link https://docs.microsoft.com/en-us/advertising/ad-insight-service/gettextassetsuggestionsbyfinalurls?view=bingads-13 GetTextAssetSuggestionsByFinalUrls Request Object | ||
* | ||
* @used-by BingAdsAdInsightService::GetTextAssetSuggestionsByFinalUrls | ||
*/ | ||
final class GetTextAssetSuggestionsByFinalUrlsRequest | ||
{ | ||
/** | ||
* Reserved. | ||
* @var string[] | ||
*/ | ||
public $FinalUrls; | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
src/V13/AdInsight/GetTextAssetSuggestionsByFinalUrlsResponse.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\AdInsight; | ||
|
||
{ | ||
/** | ||
* Reserved. | ||
* @link https://docs.microsoft.com/en-us/advertising/ad-insight-service/gettextassetsuggestionsbyfinalurls?view=bingads-13 GetTextAssetSuggestionsByFinalUrls Response Object | ||
* | ||
* @uses TextAssetSuggestions | ||
* @uses BatchError | ||
* @used-by BingAdsAdInsightService::GetTextAssetSuggestionsByFinalUrls | ||
*/ | ||
final class GetTextAssetSuggestionsByFinalUrlsResponse | ||
{ | ||
/** | ||
* Reserved. | ||
* @var TextAssetSuggestions[] | ||
*/ | ||
public $TextAssetSuggestions; | ||
|
||
/** | ||
* Reserved. | ||
* @var BatchError[] | ||
*/ | ||
public $PartialErrors; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.