/** * Auto-generated file. Do not change. */ export declare enum CreateQuantityUnitTypes { PCS = "pcs", DPC = "dpc", DOZ = "doz", HUN = "hun", THS = "ths", PRS = "prs", DPR = "dpr" } export declare type CreateQuantity = { /** * Required. The number of units in the units of measurement. * * JSON-schema: number */ readonly value: number; /** * Required. Unit of measurement. * * JSON-schema: string */ readonly unit: CreateQuantityUnitTypes; }; export declare type LiftedCreateQuantity = CreateQuantity; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftCreateQuantity: (original: CreateQuantity) => LiftedCreateQuantity;