interface Booker {
    email: string;
    firstName: string;
    lastName: string;
    phone: string;
    reference?: BookerReference;
}

Hierarchy

  • BaseTraveler
    • Booker

Properties

email: string
firstName: string
lastName: string
phone: string
reference?: BookerReference