/** * Auto-generated file. Do not change. */ import { Place } from './Place'; import { Terminal } from './Terminal'; import { Type } from './Type'; import { TypedApiObject } from '../types/TypedApiObject'; export declare type ShipmentNode = { /** * Type of the object */ readonly _object: Type.ShipmentNode; /** * JSON-schema: array */ readonly tags?: string[]; readonly place: Place; readonly terminal?: Terminal; }; export declare type LiftedShipmentNode = TypedApiObject & ShipmentNode; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftShipmentNode: (original: ShipmentNode) => LiftedShipmentNode;