export declare class AirSegment { /** * Airline code of the trip segment */ airlineCode: string; /** * Departure airport of the trip segment */ departureAirportCode: string; /** * Arrival airport of the trip segment */ arrivalAirportCode: string; /** * Local date and time of departure from departure location, in ISO-8601 date and time format `yyyy-MM-ddTHH:mm:ss.SSSZ`. */ departureTime?: Date; /** * Local date and time of arrival to destination location, in ISO-8601 date and time format `yyyy-MM-ddTHH:mm:ss.SSSZ`. */ arrivalTime?: Date; constructor(airSegment: AirSegmentProperties); } export interface AirSegmentProperties { airlineCode: string; departureAirportCode: string; arrivalAirportCode: string; departureTime?: Date; arrivalTime?: Date; }