/** * Auto-generated file. Do not change. */ import { Address } from './Address'; import { Company } from './Company'; import { Contact } from './Contact'; import { Metadata } from './Metadata'; import { Type } from './Type'; import { TypedApiObject } from '../types/TypedApiObject'; export declare type Location = { /** * Type of the object. Always /network/location for this object. */ readonly _object: Type.Location; /** * Unique identifier for the location * * JSON-schema: string (string) */ readonly id?: string; readonly metadata?: Metadata; /** * JSON-schema: string */ readonly name?: string; readonly address?: Address; /** * JSON-schema: boolean */ readonly editable?: boolean; readonly company?: Company; readonly contacts?: Contact; /** * JSON-schema: string */ readonly ref?: string; }; export declare type LiftedLocation = TypedApiObject & Location; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftLocation: (original: Location) => LiftedLocation;