A tax amount calculated for the order summary.

interface TaxAmount {
    amount: string;
    minorUnitsAmount: number;
    inclusive: boolean;
    displayName: string;
    percentage?: number;
}

Hierarchy (View Summary)

Properties

amount: string

Localized display value, for example $10.00.

minorUnitsAmount: number

Value in the currency's smallest unit.

inclusive: boolean

Whether this tax is included in the subtotal.

displayName: string

Customer-facing tax name.

percentage?: number

The tax percentage, when available.