/** * Auto-generated file. Do not change. */ import { Type } from './Type'; import { ApiCollectionRef } from '../types/ApiCollectionRef'; import { Option } from 'fp-ts/lib/Option'; import { ResolvableCollection } from '../types/Link'; import { TypedApiObject } from '../types/TypedApiObject'; export declare type RailShipmentLeg = { readonly _object: Type.RailShipmentLeg; readonly container_legs?: ApiCollectionRef; }; export declare type LiftedRailShipmentLeg = TypedApiObject & Omit & { readonly container_legs: Option; }; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftRailShipmentLeg: (original: RailShipmentLeg) => LiftedRailShipmentLeg;