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

Properties

amount?: number
country: string
includedInPrice?: boolean
name: string
state?: string
subRates?: SubRate[]