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

Properties

action: "changeCustomLineItemPriceMode"
customLineItemId?: string

id of the CustomLineItem to update. Either customLineItemId or customLineItemKey is required.

customLineItemKey?: string

key of the CustomLineItem to update. Either customLineItemId or customLineItemKey is required.

mode: string

New value to set. Must not be empty.