Interface SellMicroResources

Base interface shared by all journal event types.

interface SellMicroResources {
    event: "SellMicroResources";
    MarketID: number;
    MicroResources: {
        Category: string;
        Count: number;
        Name: string;
        Name_Localised?: string;
    }[];
    Price: number;
    timestamp: string;
    TotalCount: number;
}

Hierarchy (View Summary)

Properties

event: "SellMicroResources"

The type of event.

MarketID: number
MicroResources: {
    Category: string;
    Count: number;
    Name: string;
    Name_Localised?: string;
}[]
Price: number
timestamp: string

The time in GMT, ISO 8601.

TotalCount: number