Interface MyShoppingListChangeTextLineItemQuantityAction

interface MyShoppingListChangeTextLineItemQuantityAction {
    action: "changeTextLineItemQuantity";
    quantity: number;
    textLineItemId: string;
}

Properties

action: "changeTextLineItemQuantity"
quantity: number

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

textLineItemId: string

The id of the TextLineItem to update.

Generated using TypeDoc