Interface NewBuyMicroResources

Base interface shared by all journal event types.

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

Hierarchy (View Summary)

Properties

event: "BuyMicroResources"

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