SubscriptionHelperGetSubscriptionsForRenewalNotification Method (String, String, String, NullableDateTime, DateTime, String) |
Gets subscriptions for renewal notification for specified time 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> GetSubscriptionsForRenewalNotification(
string notificationType,
string[] allowedStates,
string[] notAllowedStates,
Nullable<DateTime> minimumRenewalDate,
DateTime maximumRenewalDate,
string[] itemCategories
)
Public Shared Function GetSubscriptionsForRenewalNotification (
notificationType As String,
allowedStates As String(),
notAllowedStates As String(),
minimumRenewalDate As Nullable(Of DateTime),
maximumRenewalDate As DateTime,
itemCategories As String()
) As List(Of Subscription)
public:
static List<Subscription^>^ GetSubscriptionsForRenewalNotification(
String^ notificationType,
array<String^>^ allowedStates,
array<String^>^ notAllowedStates,
Nullable<DateTime> minimumRenewalDate,
DateTime maximumRenewalDate,
array<String^>^ itemCategories
)
static member GetSubscriptionsForRenewalNotification :
notificationType : string *
allowedStates : string[] *
notAllowedStates : string[] *
minimumRenewalDate : Nullable<DateTime> *
maximumRenewalDate : DateTime *
itemCategories : string[] -> List<Subscription>
Parameters
- notificationType
- Type: SystemString
The notification type. - allowedStates
- Type: SystemString
The allowed states. - notAllowedStates
- Type: SystemString
The not allowed states. - minimumRenewalDate
- Type: SystemNullableDateTime
The minimum renewal date. - maximumRenewalDate
- Type: SystemDateTime
The maximum renewal date. - itemCategories
- Type: SystemString
The item categories.
Return Value
Type:
ListSubscription
Filtered subscriptions.
See Also