Represents a user's Personal Collection — a named, per-user set of entries.

interface IPersonalCollection {
    entryIds?: number[];
    id?: string;
    name?: string;
}

Implemented by

Properties

Properties

entryIds?: number[]

The IDs of the entries contained in the collection.

id?: string

The stable identifier of the collection (the underlying user-area name).

name?: string

The display name of the collection.