@transreport/pauk-passenger-api
    Preparing search index...

    Interface JourneyV2

    Journey details (v2)

    interface JourneyV2 {
        destination_station?: Station | null;
        direction: JourneyV2Direction;
        flight_number?: string | null;
        legs: JourneyLegV2[];
        origin_station?: Station | null;
        outbound_time_type?: JourneyV2OutboundTimeType;
        realtime_arrival?: string | null;
        realtime_classification?: JourneyV2RealtimeClassification;
        realtime_departure?: string | null;
        scheduled_arrival: string;
        scheduled_departure: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    destination_station?: Station | null

    Journey direction

    flight_number?: string | null

    Flight number if connecting with air travel

    legs: JourneyLegV2[]

    Journey legs

    1

    origin_station?: Station | null
    outbound_time_type?: JourneyV2OutboundTimeType

    Whether journey time is for departure or arrival

    realtime_arrival?: string | null

    Journey real-time arrival prediction

    realtime_classification?: JourneyV2RealtimeClassification

    Journey real-time status

    realtime_departure?: string | null

    Journey real-time departure prediction

    scheduled_arrival: string

    Journey scheduled arrival time

    scheduled_departure: string

    Journey scheduled departure time