Interface MyShoppingListSetTextLineItemDescriptionAction

interface MyShoppingListSetTextLineItemDescriptionAction {
    action: "setTextLineItemDescription";
    description?: LocalizedString;
    textLineItemId?: string;
    textLineItemKey?: string;
}

Properties

action: "setTextLineItemDescription"
description?: LocalizedString

Value to set. If empty, any existing value will be removed.

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.