Interface Embark

Base interface shared by all journal event types.

interface Embark {
    Body: string;
    BodyID: number;
    Crew?: {
        Name: string;
        Role: string;
    }[];
    ID?: number;
    MarketID?: number;
    Multicrew: boolean;
    OnPlanet: boolean;
    OnStation: boolean;
    SRV: boolean;
    StarSystem: string;
    StationName?: string;
    StationType?: string;
    SystemAddress: number;
    Taxi: boolean;
    event: "Embark";
    timestamp: string;
}

Hierarchy (view full)

Properties

Body: string
BodyID: number
Crew?: {
    Name: string;
    Role: string;
}[]

Type declaration

  • Name: string
  • Role: string
ID?: number
MarketID?: number
Multicrew: boolean
OnPlanet: boolean
OnStation: boolean
SRV: boolean
StarSystem: string
StationName?: string
StationType?: string
SystemAddress: number
Taxi: boolean
event: "Embark"

The type of event.

timestamp: string

The time in GMT, ISO 8601.