Interface SellSuit

Base interface shared by all journal event types.

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

Hierarchy (view full)

Properties

Name: string
Name_Localised: string
Price: number
SuitID: number
SuitMods?: string[]
event: "SellSuit"

The type of event.

timestamp: string

The time in GMT, ISO 8601.