SubscriptionHelperGetPendingChargesGroupedByCustomer Method |
Gets the pending charges grouped by customer.
If customerId is ommited, returns pending charges for all customers.
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 IDictionary<Guid, IList<Subscription>> GetPendingChargesGroupedByCustomer(
Guid customerId = null
)
Public Shared Function GetPendingChargesGroupedByCustomer (
Optional customerId As Guid = Nothing
) As IDictionary(Of Guid, IList(Of Subscription))
public:
static IDictionary<Guid, IList<Subscription^>^>^ GetPendingChargesGroupedByCustomer(
Guid customerId = nullptr
)
static member GetPendingChargesGroupedByCustomer :
?customerId : Guid
(* Defaults:
let _customerId = defaultArg customerId null
*)
-> IDictionary<Guid, IList<Subscription>>
Parameters
- customerId (Optional)
- Type: SystemGuid
The customer identifier.
Return Value
Type:
IDictionaryGuid,
IListSubscription[Missing <returns> documentation for "M:Atomia.Billing.Core.Sdk.BusinessLogic.SubscriptionHelper.GetPendingChargesGroupedByCustomer(System.Guid)"]
See Also