InvoiceHelperGetSubscriptionsForInvoice Method |
Gets the subscriptions for invoice.
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> GetSubscriptionsForInvoice(
Guid invoiceId,
string[] allowedStates,
string[] notAllowedStates,
Guid languageId
)
Public Shared Function GetSubscriptionsForInvoice (
invoiceId As Guid,
allowedStates As String(),
notAllowedStates As String(),
languageId As Guid
) As List(Of Subscription)
public:
static List<Subscription^>^ GetSubscriptionsForInvoice(
Guid invoiceId,
array<String^>^ allowedStates,
array<String^>^ notAllowedStates,
Guid languageId
)
static member GetSubscriptionsForInvoice :
invoiceId : Guid *
allowedStates : string[] *
notAllowedStates : string[] *
languageId : Guid -> List<Subscription>
Parameters
- invoiceId
- Type: SystemGuid
The invoice id. - allowedStates
- Type: SystemString
Allowed subscription states. - notAllowedStates
- Type: SystemString
Not allowed subscription states. - languageId
- Type: SystemGuid
The language id.
Return Value
Type:
ListSubscriptionList of subscriptions for invoice
invoiceIdSee Also