UNPKG

@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

92 lines (91 loc) 3.12 kB
/** * 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 { FeatureSettings } from './feature-settings'; import type { Fee } from './fee'; import type { FulfillmentPreviewShipment } from './fulfillment-preview-shipment'; import type { ScheduledDeliveryInfo } from './scheduled-delivery-info'; import type { ShippingSpeedCategory } from './shipping-speed-category'; import type { UnfulfillablePreviewItem } from './unfulfillable-preview-item'; import type { Weight } from './weight'; /** * Information about a fulfillment order preview, including delivery and fee information based on shipping method. * @export * @interface FulfillmentPreview */ export interface FulfillmentPreview { /** * * @type {ShippingSpeedCategory} * @memberof FulfillmentPreview */ 'shippingSpeedCategory': ShippingSpeedCategory; /** * * @type {ScheduledDeliveryInfo} * @memberof FulfillmentPreview */ 'scheduledDeliveryInfo'?: ScheduledDeliveryInfo; /** * When true, this fulfillment order preview is fulfillable. * @type {boolean} * @memberof FulfillmentPreview */ 'isFulfillable': boolean; /** * When true, this fulfillment order preview is for COD (Cash On Delivery). * @type {boolean} * @memberof FulfillmentPreview */ 'isCODCapable': boolean; /** * * @type {Weight} * @memberof FulfillmentPreview */ 'estimatedShippingWeight'?: Weight; /** * An array of fee type and cost pairs. * @type {Array<Fee>} * @memberof FulfillmentPreview */ 'estimatedFees'?: Array<Fee>; /** * An array of fulfillment preview shipment information. * @type {Array<FulfillmentPreviewShipment>} * @memberof FulfillmentPreview */ 'fulfillmentPreviewShipments'?: Array<FulfillmentPreviewShipment>; /** * An array of unfulfillable preview item information. * @type {Array<UnfulfillablePreviewItem>} * @memberof FulfillmentPreview */ 'unfulfillablePreviewItems'?: Array<UnfulfillablePreviewItem>; /** * String list * @type {Array<string>} * @memberof FulfillmentPreview */ 'orderUnfulfillableReasons'?: Array<string>; /** * The marketplace the fulfillment order is placed against. * @type {string} * @memberof FulfillmentPreview */ 'marketplaceId': string; /** * A list of features and their fulfillment policies to apply to the order. * @type {Array<FeatureSettings>} * @memberof FulfillmentPreview */ 'featureConstraints'?: Array<FeatureSettings>; }