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

    Interface SimilarJourney

    A journey that overlaps or duplicates the queried journey

    interface SimilarJourney {
        booking_ref: string;
        destination_station: Station;
        id: string;
        origin_station: Station;
        reservations: Reservation[];
        scheduled_arrival: string;
        scheduled_departure: string;
    }
    Index

    Properties

    booking_ref: string

    Booking reference

    destination_station: Station
    id: string

    Journey ID

    origin_station: Station
    reservations: Reservation[]

    Active seat reservations across all legs of this journey

    scheduled_arrival: string

    Scheduled arrival time

    scheduled_departure: string

    Scheduled departure time