Interface BookTaxi

Base interface shared by all journal event types.

interface BookTaxi {
    Cost: number;
    DestinationLocation: string;
    DestinationSystem: string;
    Retreat?: boolean;
    event: "BookTaxi";
    timestamp: string;
}

Hierarchy (view full)

Properties

Cost: number
DestinationLocation: string
DestinationSystem: string
Retreat?: boolean

Indicates if requested for exit from combat zone.

event: "BookTaxi"

The type of event.

timestamp: string

The time in GMT, ISO 8601.