/** * Auto-generated file. Do not change. */ import { Type } from './Type'; import { TypedApiObject } from '../types/TypedApiObject'; export declare type Roadport = { /** * Type of the object */ readonly _object: Type.Roadport; /** * JSON-schema: string * @example "3901" */ readonly port_code?: string; }; export declare type LiftedRoadport = TypedApiObject & Roadport; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftRoadport: (original: Roadport) => LiftedRoadport;