SubscriptionHelperGetSubscriptionsForRenewalCheck Method |
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> GetSubscriptionsForRenewalCheck(
string subscriptionState,
string renewedSubscriptionState,
DateTime renewedSubscriptionExpirationDateMin,
DateTime renewedSubscriptionExpirationDateMax,
string[] renewedItemCategories,
string extendedSubscriptionState,
string checkAttributeName
)
Public Shared Function GetSubscriptionsForRenewalCheck (
subscriptionState As String,
renewedSubscriptionState As String,
renewedSubscriptionExpirationDateMin As DateTime,
renewedSubscriptionExpirationDateMax As DateTime,
renewedItemCategories As String(),
extendedSubscriptionState As String,
checkAttributeName As String
) As List(Of Subscription)
public:
static List<Subscription^>^ GetSubscriptionsForRenewalCheck(
String^ subscriptionState,
String^ renewedSubscriptionState,
DateTime renewedSubscriptionExpirationDateMin,
DateTime renewedSubscriptionExpirationDateMax,
array<String^>^ renewedItemCategories,
String^ extendedSubscriptionState,
String^ checkAttributeName
)
static member GetSubscriptionsForRenewalCheck :
subscriptionState : string *
renewedSubscriptionState : string *
renewedSubscriptionExpirationDateMin : DateTime *
renewedSubscriptionExpirationDateMax : DateTime *
renewedItemCategories : string[] *
extendedSubscriptionState : string *
checkAttributeName : string -> List<Subscription>
Parameters
- subscriptionState
- Type: SystemString
The subscription state. - renewedSubscriptionState
- Type: SystemString
The renewed subscription state. - renewedSubscriptionExpirationDateMin
- Type: SystemDateTime
The renewed subscription expiration date lower margin. - renewedSubscriptionExpirationDateMax
- Type: SystemDateTime
The renewed subscription expiration date upper margin. - renewedItemCategories
- Type: SystemString
The item categories. - extendedSubscriptionState
- Type: SystemString
The extended subscription state. - checkAttributeName
- Type: SystemString
The attribute name.
Return Value
Type:
ListSubscriptionFiltered subscriptions.
See Also