Interface BackpackChange

Base interface shared by all journal event types.

interface BackpackChange {
    Added?: ChangedBackpackItem[];
    Removed?: ChangedBackpackItem[];
    event: "BackpackChange";
    timestamp: string;
}

Hierarchy (view full)

Properties

event: "BackpackChange"

The type of event.

timestamp: string

The time in GMT, ISO 8601.