interface CartChangeCustomLineItemMoneyAction {
    action: "changeCustomLineItemMoney";
    customLineItemId: string;
    money: _Money;
}

Properties

action: "changeCustomLineItemMoney"
customLineItemId: string

id of the CustomLineItem to update.

money: _Money

Value to set. Must not be empty. Can be a negative amount.

Generated using TypeDoc