Interface SellSuit

Base interface shared by all journal event types.

interface SellSuit {
    event: "SellSuit";
    Name: string;
    Name_Localised: string;
    Price: number;
    SuitID: number;
    SuitMods?: string[];
    timestamp: string;
}

Hierarchy (View Summary)

Properties

event: "SellSuit"

The type of event.

Name: string
Name_Localised: string
Price: number
SuitID: number
SuitMods?: string[]
timestamp: string

The time in GMT, ISO 8601.