Interface MyShoppingListChangeTextLineItemNameAction

interface MyShoppingListChangeTextLineItemNameAction {
    action: "changeTextLineItemName";
    name: LocalizedString;
    textLineItemId?: string;
    textLineItemKey?: string;
}

Properties

action: "changeTextLineItemName"

New value to set. Must not be empty.

textLineItemId?: string

The id of the TextLineItem to update. Either lineItemId or lineItemKey is required.

textLineItemKey?: string

The key of the TextLineItem to update. Either lineItemId or lineItemKey is required.