import { FlightMetaDataLine } from ".";
export interface FlightMetaData {
  flightLines: FlightMetaDataLine[];
  pnr: string;
  orderId: string;
  isLowCost: boolean;
  luggageIncluded: boolean;
  validatingAirlines: string;
  bagageAllowed: boolean;
  bagage: string;
  mealIncluded: boolean;
  meal: string;
}
