interface TextLineItemDraft {
    addedAt?: string;
    custom?: CustomFieldsDraft;
    description?: LocalizedString;
    name: LocalizedString;
    quantity?: number;
}

Properties

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 for the TextLineItem.

description?: LocalizedString

Description of the TextLineItem.

Name of the TextLineItem.

quantity?: number

Number of entries in the TextLineItem.

Generated using TypeDoc