interface MyShoppingListAddTextLineItemAction {
    action: "addTextLineItem";
    addedAt?: string;
    custom?: CustomFieldsDraft;
    description?: LocalizedString;
    name: LocalizedString;
    quantity?: number;
}

Properties

action: "addTextLineItem"
addedAt?: string

Date and time the TextLineItem is added to the ShoppingList. If not set, the current date and time (UTC) is used.

Custom Fields defined for the TextLineItem.

description?: LocalizedString

Description of the TextLineItem.

Name of the TextLineItem.

quantity?: number

Number of entries in the TextLineItem.

Generated using TypeDoc