TextLineItems are Line Items that use text values instead of references to Products.

interface TextLineItem {
    addedAt: string;
    custom?: CustomFields;
    description?: LocalizedString;
    id: string;
    name: LocalizedString;
    quantity: number;
}

Properties

addedAt: string

Date and time (UTC) the TextLineItem was added to the ShoppingList.

custom?: CustomFields

Custom Fields of the TextLineItem.

description?: LocalizedString

Description of the TextLineItem.

id: string

Unique identifier of the TextLineItem.

Name of the TextLineItem.

quantity: number

Number of entries in the TextLineItem.

Generated using TypeDoc