Interface ShipLocker

Lists the contents of the ship locker, eg at startup. The full list is written into the journal at startup (if in a ship) and when boarding a ship. For other updates the ship locker has to be watched separately.

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

Hierarchy (View Summary)

Properties

Components?: ShipLockerItem[]
Consumables?: ShipLockerItem[]
event: "ShipLocker"

The type of event.

Items?: ShipLockerItem[]
timestamp: string

The time in GMT, ISO 8601.