SubscriptionHelperGetSubscriptionsForItemsByCustomer Method |
Gets the subscriptions for specified items and customer.
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 List<Subscription> GetSubscriptionsForItemsByCustomer(
Account account,
List<Guid> itemIds,
string[] allowedStates
)
Public Shared Function GetSubscriptionsForItemsByCustomer (
account As Account,
itemIds As List(Of Guid),
allowedStates As String()
) As List(Of Subscription)
public:
static List<Subscription^>^ GetSubscriptionsForItemsByCustomer(
Account^ account,
List<Guid>^ itemIds,
array<String^>^ allowedStates
)
static member GetSubscriptionsForItemsByCustomer :
account : Account *
itemIds : List<Guid> *
allowedStates : string[] -> List<Subscription>
Parameters
- account
- Type: Account
Account used for language settings and filter. - itemIds
- Type: System.Collections.GenericListGuid
Item ids used for filtering subscriptions. - allowedStates
- Type: SystemString
Allowed subscription states.
Return Value
Type:
ListSubscriptionFiltered subscriptions.
See Also