Typescript SDK Type Docs
    Preparing search index...

    Interface TaxRate

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

    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[]