InvoiceHelperGetInvoicesForReminderStrict Method |
Gets the invoices for reminder with due date passed for exactly numberOfDays.
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<Invoice> GetInvoicesForReminderStrict(
int numberOfDays,
string[] notificationTypes,
InvoiceStatus[] allowedStates,
InvoiceStatus[] notAllowedStates
)
Public Shared Function GetInvoicesForReminderStrict (
numberOfDays As Integer,
notificationTypes As String(),
allowedStates As InvoiceStatus(),
notAllowedStates As InvoiceStatus()
) As List(Of Invoice)
public:
static List<Invoice^>^ GetInvoicesForReminderStrict(
int numberOfDays,
array<String^>^ notificationTypes,
array<InvoiceStatus>^ allowedStates,
array<InvoiceStatus>^ notAllowedStates
)
static member GetInvoicesForReminderStrict :
numberOfDays : int *
notificationTypes : string[] *
allowedStates : InvoiceStatus[] *
notAllowedStates : InvoiceStatus[] -> List<Invoice>
Parameters
- numberOfDays
- Type: SystemInt32
The number of days. - notificationTypes
- Type: SystemString
The notification types. - allowedStates
- Type: Atomia.Billing.Core.Sdk.BusinessObjectsInvoiceStatus
The allowed states. - notAllowedStates
- Type: Atomia.Billing.Core.Sdk.BusinessObjectsInvoiceStatus
The not allowed states.
Return Value
Type:
ListInvoiceList of invoices for reminder.
See Also