Interface SwitchSuitLoadout

Base interface shared by all journal event types.

interface SwitchSuitLoadout {
    event: "SwitchSuitLoadout";
    LoadoutID: number;
    LoadoutName: string;
    Modules: {
        Class?: number;
        ModuleName: string;
        ModuleName_Localised: string;
        SlotName: string;
        SuitModuleID: number;
        WeaponMods?: string[];
    }[];
    SuitID: number;
    SuitMods?: string[];
    SuitName: string;
    SuitName_Localised: string;
    timestamp: string;
}

Hierarchy (View Summary)

Properties

event: "SwitchSuitLoadout"

The type of event.

LoadoutID: number
LoadoutName: string
Modules: {
    Class?: number;
    ModuleName: string;
    ModuleName_Localised: string;
    SlotName: string;
    SuitModuleID: number;
    WeaponMods?: string[];
}[]
SuitID: number
SuitMods?: string[]
SuitName: string
SuitName_Localised: string
timestamp: string

The time in GMT, ISO 8601.