myDATATools.getInvoiceTypeProvider Method

Get all Invoice Types (code and description) that a provider can interact with. 
Invoice Types are used in SendInvoices class for the field elements.invoiceType 
Public Function getInvoiceTypeProvider( _ 
Optional ByVal English As Boolean = False _ 
) As Object
This language is not supported or no code example is available.
public object getInvoiceTypeProvider( 
bool English = False 
)
This language is not supported or no code example is available.

Parameters

English
bool

Optional. If True, the result in English terms. Default is False

Return Value

object
Example
 
 myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
 
 // Get a list of all invoice types that a provider can interact with.
 Dictionary<string, object> result = mdt.getInvoiceTypeProvider();
 					
This language is not supported or no code example is available.
 Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key")
 
 ' Get a list of all invoice types that a provider can interact with.
 Dim result As Dictionary(Of String, Object) = mdt.getInvoiceTypeProvider()
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition