interface ListTaxesResponseTax {
    currency: string;
    description: string;
    rate?: number;
    totalTaxValue?: number;
}

Properties

currency: string

The three-letter currency code.

description: string

Description of the tax applied.

rate?: number

Applied tax rate (0.2 means a VAT of 20%).

totalTaxValue?: number

The total tax value of the consumption.