Interface SellDrones

Base interface shared by all journal event types.

interface SellDrones {
    Count: number;
    SellPrice: number;
    TotalSale: number;
    Type: string;
    event: "SellDrones";
    timestamp: string;
}

Hierarchy (view full)

Properties

Count: number
SellPrice: number
TotalSale: number
Type: string
event: "SellDrones"

The type of event.

timestamp: string

The time in GMT, ISO 8601.