myDATATools.getVatCategory Method

Get all Vat Categories (code and description). 
Invoice Types are used in SendInvoices class for the field invoiceLine.VatCategory 
This way, you can limit the end user's options and lead him to select the correct Vat Category. 
When the Vat Category is 7, then an Exemption Category is required.
Public Function getVatCategory( _ 
Optional ByVal English As Boolean = False _ 
) As Dictionary(Of String, Object)
This language is not supported or no code example is available.
public Dictionary<string, object> getVatCategory( 
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

Dictionary<string, object>
Example
 
 myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
 Dictionary<string, object> result = mdt.getVatCategory();
 					
This language is not supported or no code example is available.
 Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key")
 Dim result As Dictionary(Of String, Object) = mdt.getVatCategory()
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition