Interface MyShoppingListRemoveTextLineItemAction

interface MyShoppingListRemoveTextLineItemAction {
    action: "removeTextLineItem";
    quantity?: number;
    textLineItemId: string;
}

Properties

action: "removeTextLineItem"
quantity?: number

Amount to remove from the quantity of the TextLineItem. If not set, the TextLineItem is removed from the ShoppingList. If this value matches or exceeds the current quantity of the TextLineItem, the TextLineItem is removed from the ShoppingList.

textLineItemId: string

The id of the TextLineItem to update.

Generated using TypeDoc