/** * Auto-generated file. Do not change. */ export declare type AddressForRequestBody = { /** * JSON-schema: string * @example "1641 Settlers Lane" */ readonly street_address: string; /** * JSON-schema: string * @example "STE 2918" */ readonly street_address2?: string; /** * JSON-schema: string * @example "Albany" */ readonly city?: string; /** * JSON-schema: string * @example "MN" */ readonly state?: string; /** * JSON-schema: string * @example "US" */ readonly country_code?: string; /** * JSON-schema: string * @example "56307" */ readonly zip?: string; /** * JSON-schema: string * @example "USAL2" */ readonly unlocode?: string; }; export declare type LiftedAddressForRequestBody = AddressForRequestBody; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftAddressForRequestBody: (original: AddressForRequestBody) => LiftedAddressForRequestBody;