interface ProductChangePriceAction {
    action: "changePrice";
    price: PriceDraft;
    priceId: string;
    staged?: boolean;
}

Properties

action: "changePrice"
price: PriceDraft

Value to set.

priceId: string

The id of the Embedded Price to update.

staged?: boolean

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

Generated using TypeDoc