interface TaxRate {
    amount: number;
    country: string;
    id?: string;
    includedInPrice: boolean;
    name: string;
    state?: string;
    subRates?: SubRate[];
}

Properties

amount: number
country: string

A two-digit country code as per ISO 3166-1 alpha-2.

id?: string
includedInPrice: boolean
name: string
state?: string
subRates?: SubRate[]