/** * Auto-generated file. Do not change. */ import { Type } from './Type'; import { TypedApiObject } from '../types/TypedApiObject'; export declare type ProductProperty = { /** * Type of the object */ readonly _object: Type.ProductProperty; /** * Type of this property * * JSON-schema: string * @example "color" */ readonly type?: string; /** * Value of this property * * JSON-schema: string * @example "blue" */ readonly value?: string; }; export declare type LiftedProductProperty = TypedApiObject & ProductProperty; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftProductProperty: (original: ProductProperty) => LiftedProductProperty;