Interface BookTaxi

Base interface shared by all journal event types.

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

Hierarchy (View Summary)

Properties

Cost: number
DestinationLocation: string
DestinationSystem: string
event: "BookTaxi"

The type of event.

Retreat?: boolean

Indicates if requested for exit from combat zone.

timestamp: string

The time in GMT, ISO 8601.