/** * Auto-generated file. Do not change. */ import { Type } from './Type'; import { TypedApiObject } from '../types/TypedApiObject'; export declare enum TruckingBookingDetailPaymentTermsTypes { COLLECT = "collect", PREPAID = "prepaid" } export declare type TruckingBookingDetail = { /** * Type of the object */ readonly _object: Type.TruckingBookingDetail; /** * JSON-schema: boolean * @example false */ readonly is_ftl?: boolean; /** * JSON-schema: string * @example "collect" */ readonly payment_terms?: TruckingBookingDetailPaymentTermsTypes; /** * JSON-schema: string * @example "Wristwatches" */ readonly description_of_products?: string; }; export declare type LiftedTruckingBookingDetail = TypedApiObject & TruckingBookingDetail; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftTruckingBookingDetail: (original: TruckingBookingDetail) => LiftedTruckingBookingDetail;