/** * Auto-generated file. Do not change. */ import { Type } from './Type'; import { TypedApiObject } from '../types/TypedApiObject'; export declare type PurchaseOrderLineItemCollectionRef = { /** * Type of the object */ readonly _object: Type.CollectionRef; /** * Type of the object in this list * * JSON-schema: string * @example "/purchase_orders/line_item" */ readonly ref_type?: string; /** * URL to fetch list of objects * * JSON-schema: string * @example "https://api.flexport.com/purchase_order_line_items?f.purchase_order.id=123" */ readonly link?: string; }; export declare type LiftedPurchaseOrderLineItemCollectionRef = TypedApiObject & PurchaseOrderLineItemCollectionRef; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftPurchaseOrderLineItemCollectionRef: (original: PurchaseOrderLineItemCollectionRef) => LiftedPurchaseOrderLineItemCollectionRef;