SubscriptionHelperGetLatestRenewalIdForRenewedSubscription Method |
Get the latest subscription with state not in the passed List whois a child of the passed subscription
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 Nullable<Guid> GetLatestRenewalIdForRenewedSubscription(
Subscription subscription,
string[] nonAllowedStates,
Guid languageId
)
Public Shared Function GetLatestRenewalIdForRenewedSubscription (
subscription As Subscription,
nonAllowedStates As String(),
languageId As Guid
) As Nullable(Of Guid)
public:
static Nullable<Guid> GetLatestRenewalIdForRenewedSubscription(
Subscription^ subscription,
array<String^>^ nonAllowedStates,
Guid languageId
)
static member GetLatestRenewalIdForRenewedSubscription :
subscription : Subscription *
nonAllowedStates : string[] *
languageId : Guid -> Nullable<Guid>
Parameters
- subscription
- Type: Atomia.Billing.Core.Sdk.BusinessObjectsSubscription
The subscription to fetch renewed subscription for - nonAllowedStates
- Type: SystemString
[Missing <param name="nonAllowedStates"/> documentation for "M:Atomia.Billing.Core.Sdk.BusinessLogic.SubscriptionHelper.GetLatestRenewalIdForRenewedSubscription(Atomia.Billing.Core.Sdk.BusinessObjects.Subscription,System.String[],System.Guid)"]
- languageId
- Type: SystemGuid
The language id to use with GetSubscriptionById
Return Value
Type:
NullableGuidThe ID of the subscription found, or null if none
See Also