Interface TradeMicroResources

Base interface shared by all journal event types.

interface TradeMicroResources {
    Category: string;
    Count: number;
    event: "TradeMicroResources";
    MarketID: number;
    Offered: {
        Category: string;
        Count: number;
        Name: string;
        Name_Localised?: string;
    }[];
    Received: string;
    Received_Localised?: string;
    timestamp: string;
    TotalCount: number;
}

Hierarchy (View Summary)

Properties

Category: string
Count: number
event: "TradeMicroResources"

The type of event.

MarketID: number
Offered: {
    Category: string;
    Count: number;
    Name: string;
    Name_Localised?: string;
}[]
Received: string
Received_Localised?: string
timestamp: string

The time in GMT, ISO 8601.

TotalCount: number