@kayahr/ed-journal
    Preparing search index...

    Interface Embark

    Base interface shared by all journal event types.

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

    Hierarchy (View Summary)

    Index

    Properties

    Body: string
    BodyID: ID
    Crew?: { Name: string; Role: string }[]
    event: "Embark"

    The type of event.

    ID?: ID
    MarketID?: ID
    Multicrew: boolean
    OnPlanet: boolean
    OnStation: boolean
    SRV: boolean
    StarSystem: string
    StationName?: string
    StationType?: StationType
    SystemAddress: ID
    Taxi: boolean
    timestamp: string

    The time in GMT, ISO 8601.