Interface ModuleBuy

Base interface shared by all journal event types.

interface ModuleBuy {
    BuyItem: string;
    BuyItem_Localised?: string;
    BuyPrice: number;
    MarketID?: number;
    SellItem?: string;
    SellItem_Localised?: string;
    SellPrice?: number;
    Ship: string;
    ShipID: number;
    Slot: string;
    StoredItem?: string;
    StoredItem_Localised?: string;
    event: "ModuleBuy";
    timestamp: string;
}

Hierarchy (view full)

Properties

BuyItem: string
BuyItem_Localised?: string
BuyPrice: number
MarketID?: number
SellItem?: string
SellItem_Localised?: string
SellPrice?: number
Ship: string
ShipID: number
Slot: string
StoredItem?: string
StoredItem_Localised?: string
event: "ModuleBuy"

The type of event.

timestamp: string

The time in GMT, ISO 8601.