@sp-api-sdk/fulfillment-outbound-api-2020-07-01
Version:
The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon's fulfillment network. You can get information on both potential and existing fulfill
55 lines (54 loc) • 2.01 kB
TypeScript
/**
* Selling Partner APIs for Fulfillment Outbound
* The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders.
*
* The version of the OpenAPI document: 2020-07-01
*
*
* 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 { Weight } from './weight';
/**
* Item information for a shipment in a fulfillment order preview.
* @export
* @interface FulfillmentPreviewItem
*/
export interface FulfillmentPreviewItem {
/**
* The seller SKU of the item.
* @type {string}
* @memberof FulfillmentPreviewItem
*/
'sellerSku': string;
/**
* The item quantity.
* @type {number}
* @memberof FulfillmentPreviewItem
*/
'quantity': number;
/**
* A fulfillment order item identifier that the seller created with a call to the `createFulfillmentOrder` operation.
* @type {string}
* @memberof FulfillmentPreviewItem
*/
'sellerFulfillmentOrderItemId': string;
/**
*
* @type {Weight}
* @memberof FulfillmentPreviewItem
*/
'estimatedShippingWeight'?: Weight;
/**
* The method used to calculate the estimated shipping weight.
* @type {string}
* @memberof FulfillmentPreviewItem
*/
'shippingWeightCalculationMethod'?: FulfillmentPreviewItemShippingWeightCalculationMethodEnum;
}
export declare const FulfillmentPreviewItemShippingWeightCalculationMethodEnum: {
readonly Package: "Package";
readonly Dimensional: "Dimensional";
};
export type FulfillmentPreviewItemShippingWeightCalculationMethodEnum = typeof FulfillmentPreviewItemShippingWeightCalculationMethodEnum[keyof typeof FulfillmentPreviewItemShippingWeightCalculationMethodEnum];