Interface Backpack

Base interface shared by all journal event types.

interface Backpack {
    Components?: BackpackItem[];
    Consumables?: BackpackItem[];
    Data?: BackpackItem[];
    event: "Backpack";
    Items?: BackpackItem[];
    timestamp: string;
}

Hierarchy (View Summary)

Properties

Components?: BackpackItem[]
Consumables?: BackpackItem[]
Data?: BackpackItem[]
event: "Backpack"

The type of event.

Items?: BackpackItem[]
timestamp: string

The time in GMT, ISO 8601.