/**
 * Selling Partner API for Merchant Fulfillment
 * With the Selling Partner API for Merchant Fulfillment, you can build applications that sellers can use to purchase shipping for non-Prime and Prime orders using Amazon\'s Buy Shipping Services.
 *
 * The version of the OpenAPI document: v0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Liquid volume.
 */
export interface LiquidVolume {
    /**
     * The unit of measurement.
     */
    'Unit': LiquidVolumeUnitEnum;
    /**
     * The measurement value.
     */
    'Value': number;
}
export declare const LiquidVolumeUnitEnum: {
    readonly Ml: "ML";
    readonly L: "L";
    readonly FlOz: "FL_OZ";
    readonly Gal: "GAL";
    readonly Pt: "PT";
    readonly Qt: "QT";
    readonly C: "C";
};
export type LiquidVolumeUnitEnum = typeof LiquidVolumeUnitEnum[keyof typeof LiquidVolumeUnitEnum];
