-
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.
- Loading branch information
Showing
61 changed files
with
575 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CampaignManagement; | ||
|
||
{ | ||
/** | ||
* Defines the AddVideos Service Operation. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/addvideos?view=bingads-13 AddVideos Request Object | ||
* | ||
* @uses Video | ||
* @used-by BingAdsCampaignManagementService::AddVideos | ||
*/ | ||
final class AddVideosRequest | ||
{ | ||
/** | ||
* Reserved. | ||
* @var Video[] | ||
*/ | ||
public $Videos; | ||
} | ||
} |
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,27 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CampaignManagement; | ||
|
||
{ | ||
/** | ||
* Defines the AddVideos Service Operation. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/addvideos?view=bingads-13 AddVideos Response Object | ||
* | ||
* @uses BatchError | ||
* @used-by BingAdsCampaignManagementService::AddVideos | ||
*/ | ||
final class AddVideosResponse | ||
{ | ||
/** | ||
* Reserved. | ||
* @var integer[] | ||
*/ | ||
public $VideoIds; | ||
|
||
/** | ||
* 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
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,19 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CampaignManagement; | ||
|
||
{ | ||
/** | ||
* Defines the CashbackAdjustment Data Object. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/cashbackadjustment?view=bingads-13 CashbackAdjustment Data Object | ||
*/ | ||
final class CashbackAdjustment extends CriterionCashback | ||
{ | ||
/** | ||
* Reserved. | ||
* @var double | ||
*/ | ||
public $CashbackPercent; | ||
} | ||
|
||
} |
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,19 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CampaignManagement; | ||
|
||
{ | ||
/** | ||
* Defines a list of optional criterion properties that you can request when calling GetAdGroupCriterionsByIds and GetCampaignCriterionsByIds. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/criterionadditionalfield?view=bingads-13 CriterionAdditionalField Value Set | ||
* | ||
* @used-by GetAdGroupCriterionsByIdsRequest | ||
* @used-by GetCampaignCriterionsByIdsRequest | ||
*/ | ||
final class CriterionAdditionalField | ||
{ | ||
/** Request that the ```CriterionCashback``` element be included within each returned BiddableAdGroupCriterion or BiddableCampaignCriterion object. */ | ||
const CriterionCashback = 'CriterionCashback'; | ||
} | ||
|
||
} |
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,22 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CampaignManagement; | ||
|
||
{ | ||
/** | ||
* Defines the CriterionCashback Data Object. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/criterioncashback?view=bingads-13 CriterionCashback Data Object | ||
* | ||
* @used-by BiddableAdGroupCriterion | ||
* @used-by BiddableCampaignCriterion | ||
*/ | ||
class CriterionCashback | ||
{ | ||
/** | ||
* Reserved. | ||
* @var string | ||
*/ | ||
public $Type; | ||
} | ||
|
||
} |
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\CampaignManagement; | ||
|
||
{ | ||
/** | ||
* Defines the DeleteVideos Service Operation. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/deletevideos?view=bingads-13 DeleteVideos Request Object | ||
* | ||
* @used-by BingAdsCampaignManagementService::DeleteVideos | ||
*/ | ||
final class DeleteVideosRequest | ||
{ | ||
/** | ||
* Reserved. | ||
* @var integer[] | ||
*/ | ||
public $VideoIds; | ||
} | ||
} |
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\CampaignManagement; | ||
|
||
{ | ||
/** | ||
* Defines the DeleteVideos Service Operation. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/deletevideos?view=bingads-13 DeleteVideos Response Object | ||
* | ||
* @uses BatchError | ||
* @used-by BingAdsCampaignManagementService::DeleteVideos | ||
*/ | ||
final class DeleteVideosResponse | ||
{ | ||
/** | ||
* 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CampaignManagement; | ||
|
||
{ | ||
/** | ||
* Defines the DynamicFeedSetting Data Object. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/dynamicfeedsetting?view=bingads-13 DynamicFeedSetting Data Object | ||
*/ | ||
final class DynamicFeedSetting extends Setting | ||
{ | ||
/** | ||
* Reserved. | ||
* @var integer | ||
*/ | ||
public $FeedId; | ||
} | ||
|
||
} |
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.