Interface MarketBuy

Base interface shared by all journal event types.

interface MarketBuy {
    BuyPrice: number;
    Count: number;
    MarketID?: number;
    TotalCost: number;
    Type: string;
    Type_Localised?: string;
    event: "MarketBuy";
    timestamp: string;
}

Hierarchy (view full)

Properties

BuyPrice: number
Count: number
MarketID?: number
TotalCost: number
Type: string
Type_Localised?: string
event: "MarketBuy"

The type of event.

timestamp: string

The time in GMT, ISO 8601.