interface TaxCategoryDraft {
    description?: string;
    key?: string;
    name: string;
    rates?: TaxRateDraft[];
}

Properties

description?: string

Description of the TaxCategory.

key?: string

User-defined unique identifier for the TaxCategory.

name: string

Name of the TaxCategory.

rates?: TaxRateDraft[]

Tax rates and subrates of states and countries.

Generated using TypeDoc