interface ProductRemovePriceAction {
    action: "removePrice";
    priceId: string;
    staged?: boolean;
}

Properties

action: "removePrice"
priceId: string

The id of the Embedded Price to remove.

staged?: boolean

If true, only the staged Embedded Price is removed. If false, both the current and staged Embedded Price are removed.

Generated using TypeDoc