Information used to determine the tax compliance.

TaxDetails

interface TaxDetails {
    declaredValue?: Currency;
    hsnCode?: string;
    taxRates?: TaxRate[];
}

Properties

declaredValue?: Currency

TaxDetails

hsnCode?: string

Harmonized System of Nomenclature code.

TaxDetails

taxRates?: TaxRate[]

List of tax rates.

TaxDetails