-
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 #178 from BingAds/v13.0.15.1
13.0.15.1
- Loading branch information
Showing
128 changed files
with
2,145 additions
and
18 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
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\CustomerBilling; | ||
|
||
{ | ||
/** | ||
* Adds an insertion order to the specified account. | ||
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/addinsertionorder?view=bingads-13 AddInsertionOrder Request Object | ||
* | ||
* @uses InsertionOrder | ||
* @used-by BingAdsCustomerBillingService::AddInsertionOrder | ||
*/ | ||
final class AddInsertionOrderRequest | ||
{ | ||
/** | ||
* An insertion order to add to the account. | ||
* @var InsertionOrder | ||
*/ | ||
public $InsertionOrder; | ||
} | ||
} |
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,26 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CustomerBilling; | ||
|
||
{ | ||
/** | ||
* Adds an insertion order to the specified account. | ||
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/addinsertionorder?view=bingads-13 AddInsertionOrder Response Object | ||
* | ||
* @used-by BingAdsCustomerBillingService::AddInsertionOrder | ||
*/ | ||
final class AddInsertionOrderResponse | ||
{ | ||
/** | ||
* A long value that represents the identifier for the insertion order that was added. | ||
* @var integer | ||
*/ | ||
public $InsertionOrderId; | ||
|
||
/** | ||
* Identifies the server time in UTC when the insertion order was added. | ||
* @var \DateTime | ||
*/ | ||
public $CreateTime; | ||
} | ||
} |
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\CustomerBilling; | ||
|
||
{ | ||
/** | ||
* Dispatch coupons of the specified coupon class name owned by the specified customer. | ||
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/dispatchcoupons?view=bingads-13 DispatchCoupons Request Object | ||
* | ||
* @used-by BingAdsCustomerBillingService::DispatchCoupons | ||
*/ | ||
final class DispatchCouponsRequest | ||
{ | ||
/** | ||
* Email addresses to which the coupons are dispatched. | ||
* @var string[] | ||
*/ | ||
public $SendToEmails; | ||
|
||
/** | ||
* The identifier of the customer that the coupon class belongs to. | ||
* @var integer | ||
*/ | ||
public $CustomerId; | ||
|
||
/** | ||
* The name of coupon class whose available coupons are dispatched. | ||
* @var string | ||
*/ | ||
public $CouponClassName; | ||
} | ||
} |
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\CustomerBilling; | ||
|
||
{ | ||
/** | ||
* Dispatch coupons of the specified coupon class name owned by the specified customer. | ||
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/dispatchcoupons?view=bingads-13 DispatchCoupons Response Object | ||
* | ||
* @uses BatchError | ||
* @used-by BingAdsCustomerBillingService::DispatchCoupons | ||
*/ | ||
final class DispatchCouponsResponse | ||
{ | ||
/** | ||
* An array of BatchError objects that correspond to any email addresses where the coupon code could not be sent to. | ||
* @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,26 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CustomerBilling; | ||
|
||
{ | ||
/** | ||
* Gets the amount spent by the account in the specified month. | ||
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/getaccountmonthlyspend?view=bingads-13 GetAccountMonthlySpend Request Object | ||
* | ||
* @used-by BingAdsCustomerBillingService::GetAccountMonthlySpend | ||
*/ | ||
final class GetAccountMonthlySpendRequest | ||
{ | ||
/** | ||
* The identifier of the account that contains the spend information to get. | ||
* @var integer | ||
*/ | ||
public $AccountId; | ||
|
||
/** | ||
* The month and year for which you want to get the monthly spend information (the operation ignores the day and time values). | ||
* @var \DateTime | ||
*/ | ||
public $MonthYear; | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/V13/CustomerBilling/GetAccountMonthlySpendResponse.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\CustomerBilling; | ||
|
||
{ | ||
/** | ||
* Gets the amount spent by the account in the specified month. | ||
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/getaccountmonthlyspend?view=bingads-13 GetAccountMonthlySpend Response Object | ||
* | ||
* @used-by BingAdsCustomerBillingService::GetAccountMonthlySpend | ||
*/ | ||
final class GetAccountMonthlySpendResponse | ||
{ | ||
/** | ||
* The amount spent by the account in the specified period. | ||
* @var double | ||
*/ | ||
public $Amount; | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
src/V13/CustomerBilling/GetBillingDocumentsInfoRequest.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,32 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CustomerBilling; | ||
|
||
{ | ||
/** | ||
* Gets a list of objects that contains billing document identification information, for example the billing document identifier, amount, and account identifier. | ||
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/getbillingdocumentsinfo?view=bingads-13 GetBillingDocumentsInfo Request Object | ||
* | ||
* @used-by BingAdsCustomerBillingService::GetBillingDocumentsInfo | ||
*/ | ||
final class GetBillingDocumentsInfoRequest | ||
{ | ||
/** | ||
* A list of identifiers of the accounts whose billing document information you want to get. | ||
* @var integer[] | ||
*/ | ||
public $AccountIds; | ||
|
||
/** | ||
* The start date to use for specifying the billing documents to get. | ||
* @var \DateTime | ||
*/ | ||
public $StartDate; | ||
|
||
/** | ||
* The end date to use for specifying the billing documents to get. | ||
* @var \DateTime | ||
*/ | ||
public $EndDate; | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
src/V13/CustomerBilling/GetBillingDocumentsInfoResponse.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,21 @@ | ||
<?php | ||
|
||
namespace Microsoft\BingAds\V13\CustomerBilling; | ||
|
||
{ | ||
/** | ||
* Gets a list of objects that contains billing document identification information, for example the billing document identifier, amount, and account identifier. | ||
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/getbillingdocumentsinfo?view=bingads-13 GetBillingDocumentsInfo Response Object | ||
* | ||
* @uses BillingDocumentInfo | ||
* @used-by BingAdsCustomerBillingService::GetBillingDocumentsInfo | ||
*/ | ||
final class GetBillingDocumentsInfoResponse | ||
{ | ||
/** | ||
* The list of billing document information objects that were retrieved. | ||
* @var BillingDocumentInfo[] | ||
*/ | ||
public $BillingDocumentsInfo; | ||
} | ||
} |
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\CustomerBilling; | ||
|
||
{ | ||
/** | ||
* Gets the specified billing documents. | ||
* @link https://docs.microsoft.com/en-us/advertising/customer-billing-service/getbillingdocuments?view=bingads-13 GetBillingDocuments Request Object | ||
* | ||
* @uses BillingDocumentInfo | ||
* @uses DataType | ||
* @used-by BingAdsCustomerBillingService::GetBillingDocuments | ||
*/ | ||
final class GetBillingDocumentsRequest | ||
{ | ||
/** | ||
* Identifies the list of billing documents that you want to get. | ||
* @var BillingDocumentInfo[] | ||
*/ | ||
public $BillingDocumentsInfo; | ||
|
||
/** | ||
* The format to use to generate the billing document. | ||
* @var DataType | ||
*/ | ||
public $Type; | ||
} | ||
} |
Oops, something went wrong.