interface TaxCategoryRemoveTaxRateAction {
    action: "removeTaxRate";
    taxRateId?: string;
    taxRateKey?: string;
}

Properties

action: "removeTaxRate"
taxRateId?: string

ID of the TaxRate to remove. Either taxRateId or taxRateKey is required for this update action.

taxRateKey?: string

Key of the TaxRate to remove. Either taxRateId or taxRateKey is required for this update action.

Generated using TypeDoc