UNPKG

@qite/tide-client

Version:
13 lines (12 loc) 392 B
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; }