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