import { Type } from '../generated/Type'; /** * ObjectRefs are expandable * * @see https://apibeta.flexport.com/reference/links#objectref */ export declare type ApiObjectRef = { /** * String representing the object’s type. Always `/api/refs/object` for this object. */ _object: Type.ObjectRef; /** * The `_object` value of the object that the link points to. */ ref_type: string; /** * API end point that points to a resource. */ link: string; /** * The `id` value of the object that the link points to. */ id: number; };