Interface NewBuyMicroResources

Base interface shared by all journal event types.

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

Hierarchy (view full)

Properties

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

Type declaration

  • Category: string
  • Count: number
  • Name: string
  • Name_Localised: string
Price: number
TotalCount: number
event: "BuyMicroResources"

The type of event.

timestamp: string

The time in GMT, ISO 8601.