Details of tax amount applied.

Export

TaxDetails

interface TaxDetails {
    taxAmount: Money;
    taxRate?: string;
    taxType: TaxDetailsTaxTypeEnum;
    taxableAmount?: Money;
}

Properties

taxAmount: Money

Memberof

TaxDetails

taxRate?: string

A decimal number with no loss of precision. Useful when precision loss is unacceptable, as with currencies. Follows RFC7159 for number representation.
Pattern : ^-?(0|([1-9]\\d*))(\\.\\d+)?([eE][+-]?\\d+)?$.

Memberof

TaxDetails

Type of the tax applied.

Memberof

TaxDetails

taxableAmount?: Money

Memberof

TaxDetails