InvoiceHelperCreateInvoiceForPendingCharges Method |
Creates the invoice for pending charges.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static Invoice CreateInvoiceForPendingCharges(
Guid customerId,
IList<Subscription> pendingChargesSubscriptions,
IAtomiaBillingApi atomiaBillingApi
)
Public Shared Function CreateInvoiceForPendingCharges (
customerId As Guid,
pendingChargesSubscriptions As IList(Of Subscription),
atomiaBillingApi As IAtomiaBillingApi
) As Invoice
public:
static Invoice^ CreateInvoiceForPendingCharges(
Guid customerId,
IList<Subscription^>^ pendingChargesSubscriptions,
IAtomiaBillingApi^ atomiaBillingApi
)
static member CreateInvoiceForPendingCharges :
customerId : Guid *
pendingChargesSubscriptions : IList<Subscription> *
atomiaBillingApi : IAtomiaBillingApi -> Invoice
Parameters
- customerId
- Type: SystemGuid
The customer identifier. - pendingChargesSubscriptions
- Type: System.Collections.GenericIListSubscription
The pending charges subscriptions. - atomiaBillingApi
- Type: Atomia.Billing.Core.SdkIAtomiaBillingApi
The atomia billing API.
Return Value
Type:
InvoiceInvoice for pending charges.
See Also