@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
49 lines (48 loc) • 1.66 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.
*/
/**
* Information about an SKU, including the count available, identifiers, and a list of overlapping SKUs that share the same inventory pool.
* @export
* @interface FeatureSku
*/
export interface FeatureSku {
/**
* Used to identify an item in the given marketplace. `SellerSKU` is qualified by the seller\'s SellerId, which is included with every operation that you submit.
* @type {string}
* @memberof FeatureSku
*/
'sellerSku'?: string;
/**
* The unique SKU used by Amazon\'s fulfillment network.
* @type {string}
* @memberof FeatureSku
*/
'fnSku'?: string;
/**
* The Amazon Standard Identification Number (ASIN) of the item.
* @type {string}
* @memberof FeatureSku
*/
'asin'?: string;
/**
* The number of SKUs available for this service.
* @type {number}
* @memberof FeatureSku
*/
'skuCount'?: number;
/**
* Other seller SKUs that are shared across the same inventory.
* @type {Array<string>}
* @memberof FeatureSku
*/
'overlappingSkus'?: Array<string>;
}