UNPKG

@sp-api-sdk/merchant-fulfillment-api-v0

Version:

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.

41 lines (40 loc) 1.13 kB
/** * 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 */ export interface LiquidVolume { /** * The unit of measurement. * @type {string} * @memberof LiquidVolume */ 'Unit': LiquidVolumeUnitEnum; /** * The measurement value. * @type {number} * @memberof LiquidVolume */ '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];