UNPKG

@ohm-vision/kiwi-tequila-api

Version:
27 lines 640 B
import { Currency, SearchLocale } from "../types"; export interface SearchMultiCityParamsDto { locale?: SearchLocale; curr?: Currency; } export interface SearchMultiCityBodyDto { requests: SearchMultiCityBodyDtoRequest[]; } export interface SearchMultiCityBodyDtoRequest { /** * IATA code of the destination */ to: string; /** * IATA code of origin */ fly_from: string; /** * search for flights from this date */ dateFrom: string | Date; /** * search for flights upto this date */ dateTo: string | Date; } //# sourceMappingURL=search-multicity.dto.d.ts.map