Interface CartChangeCustomLineItemPriceModeAction

interface CartChangeCustomLineItemPriceModeAction {
    action: "changeCustomLineItemPriceMode";
    customLineItemId: string;
    mode: string;
}

Properties

action: "changeCustomLineItemPriceMode"
customLineItemId: string

id of the CustomLineItem to update.

mode: string

New value to set. Must not be empty.

Generated using TypeDoc