@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.
48 lines (47 loc) • 1.56 kB
TypeScript
/**
* 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.
*/
import type { AdditionalSellerInputs } from './additional-seller-inputs';
import type { DangerousGoodsDetails } from './dangerous-goods-details';
import type { LiquidVolume } from './liquid-volume';
import type { Weight } from './weight';
/**
* An Amazon order item identifier and a quantity.
*/
export interface Item {
/**
* An Amazon-defined identifier for an individual item in an order.
*/
'OrderItemId': string;
/**
* The number of items.
*/
'Quantity': number;
'ItemWeight'?: Weight;
/**
* The description of the item.
*/
'ItemDescription'?: string;
/**
* A list of transparency codes.
*/
'TransparencyCodeList'?: Array<string>;
/**
* A list of additional seller input pairs required to purchase shipping.
*/
'ItemLevelSellerInputsList'?: Array<AdditionalSellerInputs>;
'LiquidVolume'?: LiquidVolume;
/**
* When true, the item qualifies as hazardous materials (hazmat). Defaults to false.
*/
'IsHazmat'?: boolean;
'DangerousGoodsDetails'?: DangerousGoodsDetails;
}