interface TaxCategoryReplaceTaxRateAction {
    action: "replaceTaxRate";
    taxRate: TaxRateDraft;
    taxRateId?: string;
    taxRateKey?: string;
}

Properties

action: "replaceTaxRate"
taxRate: TaxRateDraft

New TaxRate to replace with.

taxRateId?: string

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

taxRateKey?: string

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

Generated using TypeDoc