Interface SellDrones

Base interface shared by all journal event types.

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

Hierarchy (View Summary)

Properties

Count: number
event: "SellDrones"

The type of event.

SellPrice: number
timestamp: string

The time in GMT, ISO 8601.

TotalSale: number
Type: string