myDATATools.getOtherTaxesCategory Method

Get all Other Taxes Categories (code and description). 
Taxes Categories are used for the field invoiceLine.otherTaxesPercentCategory and it is mandatory field when Othe Taxes Amount of the invoiceLine has value other than 0. 
Use this function to get the supported Taxes Categories.
Public Function getOtherTaxesCategory( _ 
Optional ByVal English As Boolean = False, _ 
Optional ByVal Hotels As Boolean = False _ 
) As Dictionary(Of String, Object)
This language is not supported or no code example is available.
public Dictionary<string, object> getOtherTaxesCategory( 
bool English = False, 
bool Hotels = 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

Hotels
bool

Optional. If True, returns only the categories associated with Hotels and Rental Rooms. Default is False

Return Value

Dictionary<string, object>
Example
 
 myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
 Dictionary<string, object> result = mdt.getOtherTaxesCategory();
 					
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.getOtherTaxesCategory()
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition