Interface BuyDrones

Base interface shared by all journal event types.

interface BuyDrones {
    BuyPrice: number;
    Count: number;
    TotalCost: number;
    Type: string;
    event: "BuyDrones";
    timestamp: string;
}

Hierarchy (view full)

Properties

BuyPrice: number
Count: number
TotalCost: number
Type: string
event: "BuyDrones"

The type of event.

timestamp: string

The time in GMT, ISO 8601.