@qite/tide-client
Version:
Frontend client for Tide
12 lines (10 loc) • 334 B
text/typescript
import { BookingPackageFlightMetaDataLine } from "./booking-package-flight-meta-data-line";
export interface BookingPackageFlightMetaData {
flightLines: BookingPackageFlightMetaDataLine[];
luggageIncluded: boolean;
bagageAllowed: boolean;
bagage: string;
mealIncluded: boolean;
meal: string;
durationInTicks: number;
}