myDATATools.getVatExemptionCategory Method

Get all Vat Exemption Categories (code and description). 
Exemption Categories are used for the field invoiceLine.vatExemptionCategory and it is mandatory field when Vat Category of the invoiceLine is 7. 
Use this function to get the supported Vat Exemption Categories.
Public Function getVatExemptionCategory( _ 
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> getVatExemptionCategory( 
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.getVatExemptionCategory();
 					
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.getVatExemptionCategory()
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition