SubscriptionHelperGetSubscriptionsForRenewalPeriod Method |
Gets the subscriptions for renewal period.
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> GetSubscriptionsForRenewalPeriod(
Guid renewalPeriodId,
string languageIsoCode,
string[] allowedStates,
string[] notAllowedStates
)
Public Shared Function GetSubscriptionsForRenewalPeriod (
renewalPeriodId As Guid,
languageIsoCode As String,
allowedStates As String(),
notAllowedStates As String()
) As List(Of Subscription)
public:
static List<Subscription^>^ GetSubscriptionsForRenewalPeriod(
Guid renewalPeriodId,
String^ languageIsoCode,
array<String^>^ allowedStates,
array<String^>^ notAllowedStates
)
static member GetSubscriptionsForRenewalPeriod :
renewalPeriodId : Guid *
languageIsoCode : string *
allowedStates : string[] *
notAllowedStates : string[] -> List<Subscription>
Parameters
- renewalPeriodId
- Type: SystemGuid
The renewal period id. - languageIsoCode
- Type: SystemString
The language iso code. - allowedStates
- Type: SystemString
The allowed states. - notAllowedStates
- Type: SystemString
The not allowed states.
Return Value
Type:
ListSubscriptionList of subscriptions for renewal period.
See Also