/** * Auto-generated file. Do not change. */ import { Type } from './Type'; import { TypedApiObject } from '../types/TypedApiObject'; export declare type AirShipmentLeg = { readonly _object: Type.AirShipmentLeg; /** * JSON-schema: string * @example "2Q" */ readonly iata_code?: string; /** * JSON-schema: string * @example "SNC" */ readonly icao_code?: string; /** * JSON-schema: string * @example "Y8 1234" */ readonly flight_number?: string; }; export declare type LiftedAirShipmentLeg = TypedApiObject & AirShipmentLeg; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftAirShipmentLeg: (original: AirShipmentLeg) => LiftedAirShipmentLeg;