Interface Backpack

Base interface shared by all journal event types.

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

Hierarchy (view full)

Properties

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

The type of event.

timestamp: string

The time in GMT, ISO 8601.