Interface MyShoppingListChangeLineItemQuantityAction

interface MyShoppingListChangeLineItemQuantityAction {
    action: "changeLineItemQuantity";
    lineItemId: string;
    quantity: number;
}

Properties

action: "changeLineItemQuantity"
lineItemId: string

The id of the ShoppingListLineItem to update.

quantity: number

New value to set. If 0, the ShoppingListLineItem is removed from the ShoppingList.

Generated using TypeDoc