interface GroundTransfer {
    _id?: string;
    booking?: string | SavedBooking;
    cancellationType?: CancellationType;
    code: string;
    createdDate?: Date;
    externalId: number;
    id?: string;
    journey: Journey;
    modifiedDate?: Date;
    quoteRequest: GroundTransferQuoteRequest;
    trip: string | SavedTrip;
    user: string | SavedUser;
}

Hierarchy (View Summary)

Properties

_id?: string
booking?: string | SavedBooking
cancellationType?: CancellationType
code: string
createdDate?: Date
externalId: number
id?: string

Use _id instead

journey: Journey
modifiedDate?: Date
trip: string | SavedTrip
user: string | SavedUser