Export

TaxDetails

interface TaxDetails {
    taxAmount: Money;
    taxRate?: string;
    taxableAmount?: Money;
    type?: TaxDetailsTypeEnum;
}

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.

Memberof

TaxDetails

taxableAmount?: Money

Memberof

TaxDetails

Tax type.

Memberof

TaxDetails