@qite/tide-client
Version:
Frontend client for Tide
13 lines (12 loc) • 392 B
TypeScript
import { BookingPackageRequestRoom } from "../shared";
import { BookingPackageDestination } from "./booking-package-destination";
export interface BookingPackageFlightPoolRequest {
catalogueIds: number[];
rooms: BookingPackageRequestRoom[];
destination?: BookingPackageDestination;
fromDate: string;
toDate: string;
productCode: string;
tourCode: string;
realTime: boolean;
}