-
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
14 changed files
with
135 additions
and
3 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 possible compression types for the file to download. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/compressiontype?view=bingads-13 CompressionType Value Set | ||
* | ||
* @used-by GetGeoLocationsFileUrlRequest | ||
*/ | ||
final class CompressionType | ||
{ | ||
/** Reserved. */ | ||
const Zip = 'Zip'; | ||
|
||
/** The file should be GZIP compressed. */ | ||
const GZip = 'GZip'; | ||
} | ||
|
||
} |
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,33 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CampaignManagement; | ||
|
||
{ | ||
/** | ||
* Reserved. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/numberruleitem?view=bingads-13 NumberRuleItem Data Object | ||
* | ||
* @uses NumberOperator | ||
*/ | ||
final class NumberRuleItem extends RuleItem | ||
{ | ||
/** | ||
* Reserved. | ||
* @var string | ||
*/ | ||
public $Operand; | ||
|
||
/** | ||
* Reserved. | ||
* @var NumberOperator | ||
*/ | ||
public $Operator; | ||
|
||
/** | ||
* Reserved. | ||
* @var string | ||
*/ | ||
public $Value; | ||
} | ||
|
||
} |
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,24 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CampaignManagement; | ||
|
||
{ | ||
/** | ||
* Reserved. | ||
* @link https://docs.microsoft.com/en-us/advertising/campaign-management-service/webpageconditionoperator?view=bingads-13 WebpageConditionOperator Value Set | ||
* | ||
* @used-by WebpageCondition | ||
*/ | ||
final class WebpageConditionOperator | ||
{ | ||
/** Reserved. */ | ||
const Unknown = 'Unknown'; | ||
|
||
/** Reserved. */ | ||
const Equals = 'Equals'; | ||
|
||
/** Reserved. */ | ||
const Contains = 'Contains'; | ||
} | ||
|
||
} |
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