@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
65 lines (64 loc) • 2.64 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 { Address } from './address';
import type { FeatureSettings } from './feature-settings';
import type { GetFulfillmentPreviewItem } from './get-fulfillment-preview-item';
import type { ShippingSpeedCategory } from './shipping-speed-category';
/**
* The request body schema for the `getFulfillmentPreview` operation.
* @export
* @interface GetFulfillmentPreviewRequest
*/
export interface GetFulfillmentPreviewRequest {
/**
* The marketplace the fulfillment order is placed against.
* @type {string}
* @memberof GetFulfillmentPreviewRequest
*/
'marketplaceId'?: string;
/**
*
* @type {Address}
* @memberof GetFulfillmentPreviewRequest
*/
'address': Address;
/**
* An array of fulfillment preview item information.
* @type {Array<GetFulfillmentPreviewItem>}
* @memberof GetFulfillmentPreviewRequest
*/
'items': Array<GetFulfillmentPreviewItem>;
/**
* ShippingSpeedCategory List
* @type {Array<ShippingSpeedCategory>}
* @memberof GetFulfillmentPreviewRequest
*/
'shippingSpeedCategories'?: Array<ShippingSpeedCategory>;
/**
* When true, returns all fulfillment order previews both for COD and not for COD. Otherwise, returns only fulfillment order previews that are not for COD.
* @type {boolean}
* @memberof GetFulfillmentPreviewRequest
*/
'includeCODFulfillmentPreview'?: boolean;
/**
* When true, returns the `ScheduledDeliveryInfo` response object, which contains the available delivery windows for a Scheduled Delivery. The `ScheduledDeliveryInfo` response object can only be returned for fulfillment order previews with `ShippingSpeedCategories` = `ScheduledDelivery`.
* @type {boolean}
* @memberof GetFulfillmentPreviewRequest
*/
'includeDeliveryWindows'?: boolean;
/**
* A list of features and their fulfillment policies to apply to the order.
* @type {Array<FeatureSettings>}
* @memberof GetFulfillmentPreviewRequest
*/
'featureConstraints'?: Array<FeatureSettings>;
}