interface ShoppingList {
    anonymousId?: string;
    createdAt: string;
    createdBy?: CreatedBy;
    custom?: CustomFields;
    customer?: CustomerReference;
    deleteDaysAfterLastModification?: number;
    description?: LocalizedString;
    id: string;
    key?: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    lineItems: ShoppingListLineItem[];
    name: LocalizedString;
    slug?: LocalizedString;
    store?: StoreKeyReference;
    textLineItems: TextLineItem[];
    version: number;
}

Hierarchy

Properties

anonymousId?: string

Identifies ShoppingLists belonging to an anonymous session.

createdAt: string

Date and time (UTC) the ShoppingList was initially created.

createdBy?: CreatedBy

Present on resources created after 1 February 2019 except for events not tracked.

custom?: CustomFields

Custom Fields defined for the ShoppingList.

Reference to a Customer associated with the ShoppingList.

deleteDaysAfterLastModification?: number

Number of days after which the ShoppingList will be automatically deleted if it has not been modified.

description?: LocalizedString

Description of the ShoppingList.

id: string

Unique identifier of the ShoppingList.

key?: string

User-defined unique identifier of the ShoppingList.

lastModifiedAt: string

Date and time (UTC) the ShoppingList was last updated.

lastModifiedBy?: LastModifiedBy

Present on resources created after 1 February 2019 except for events not tracked.

Line Items (containing Products) of the ShoppingList.

Name of the ShoppingList.

Human-readable identifiers usually used as deep-link URL to the related ShoppingList. Each slug is unique across a Project, but a ShoppingList can have the same slug for different languages. The slug must match the pattern [a-zA-Z0-9_-]{2,256}. For good performance, indexes are provided for the first 15 languages set on the Project.

Store to which the ShoppingList is assigned.

textLineItems: TextLineItem[]

Line Items (containing text values) of the ShoppingList.

version: number

Current version of the ShoppingList.

Generated using TypeDoc