Interface TradeMicroResources

Base interface shared by all journal event types.

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

Hierarchy (view full)

Properties

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

Type declaration

  • Category: string
  • Count: number
  • Name: string
  • Optional Name_Localised?: string
Received: string
Received_Localised?: string
TotalCount: number
event: "TradeMicroResources"

The type of event.

timestamp: string

The time in GMT, ISO 8601.