@qite/tide-client
Version:
Frontend client for Tide
14 lines (13 loc) • 312 B
TypeScript
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;
}