Interface ApproachSettlement

Base interface shared by all journal event types.

interface ApproachSettlement {
    BodyID?: number;
    BodyName?: string;
    event: "ApproachSettlement";
    Latitude?: number;
    Longitude?: number;
    MarketID?: number;
    Name: string;
    Name_Localised?: string;
    StationAllegiance?: string;
    StationEconomies?: {
        Name: string;
        Name_Localised?: string;
        Proportion: number;
    }[];
    StationEconomy?: string;
    StationEconomy_Localised?: string;
    StationFaction?: { FactionState?: string; Name: string };
    StationGovernment?: string;
    StationGovernment_Localised?: string;
    StationServices?: StationService[];
    SystemAddress?: number;
    timestamp: string;
}

Hierarchy (View Summary)

Properties

BodyID?: number
BodyName?: string
event: "ApproachSettlement"

The type of event.

Latitude?: number
Longitude?: number
MarketID?: number
Name: string
Name_Localised?: string
StationAllegiance?: string
StationEconomies?: { Name: string; Name_Localised?: string; Proportion: number }[]
StationEconomy?: string
StationEconomy_Localised?: string
StationFaction?: { FactionState?: string; Name: string }
StationGovernment?: string
StationGovernment_Localised?: string
StationServices?: StationService[]
SystemAddress?: number
timestamp: string

The time in GMT, ISO 8601.