/** * Auto-generated file. Do not change. */ export declare type WriteProductProperty = { /** * Always required. User defined type of this property * * JSON-schema: string * @example "color" */ readonly type: string; /** * Always required. Value of this property * * JSON-schema: string * @example "blue" */ readonly value: string; }; export declare type LiftedWriteProductProperty = WriteProductProperty; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftWriteProductProperty: (original: WriteProductProperty) => LiftedWriteProductProperty;