PendingChargeHelperCreatePendingCharge Method |
Creates the pending charge.
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 Subscription CreatePendingCharge(
Guid resellerId,
Guid customerId,
string pendingChargeItemNumber,
decimal quantity
)
Public Shared Function CreatePendingCharge (
resellerId As Guid,
customerId As Guid,
pendingChargeItemNumber As String,
quantity As Decimal
) As Subscription
public:
static Subscription^ CreatePendingCharge(
Guid resellerId,
Guid customerId,
String^ pendingChargeItemNumber,
Decimal quantity
)
static member CreatePendingCharge :
resellerId : Guid *
customerId : Guid *
pendingChargeItemNumber : string *
quantity : decimal -> Subscription
Parameters
- resellerId
- Type: SystemGuid
The reseller identifier. - customerId
- Type: SystemGuid
The customer identifier. - pendingChargeItemNumber
- Type: SystemString
The pending charge item number. - quantity
- Type: SystemDecimal
The quantity.
Return Value
Type:
SubscriptionSubscription that represents pending charge.
See Also