@sp-api-sdk/fulfillment-inbound-api-v0
Version:
The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon's fulfillment network.
59 lines (58 loc) • 1.95 kB
TypeScript
/**
* Selling Partner API for Fulfillment Inbound
* The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon\'s fulfillment network.
*
* 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 { AmazonPrepFeesDetails } from './amazon-prep-fees-details';
import type { BarcodeInstruction } from './barcode-instruction';
import type { PrepGuidance } from './prep-guidance';
import type { PrepInstruction } from './prep-instruction';
/**
* Labeling requirements and item preparation instructions to help you prepare items for shipment to Amazon\'s fulfillment network.
* @export
* @interface SKUPrepInstructions
*/
export interface SKUPrepInstructions {
/**
* The seller SKU of the item.
* @type {string}
* @memberof SKUPrepInstructions
*/
'SellerSKU'?: string;
/**
* The Amazon Standard Identification Number (ASIN) of the item.
* @type {string}
* @memberof SKUPrepInstructions
*/
'ASIN'?: string;
/**
*
* @type {BarcodeInstruction}
* @memberof SKUPrepInstructions
*/
'BarcodeInstruction'?: BarcodeInstruction;
/**
*
* @type {PrepGuidance}
* @memberof SKUPrepInstructions
*/
'PrepGuidance'?: PrepGuidance;
/**
* A list of preparation instructions to help with item sourcing decisions.
* @type {Array<PrepInstruction>}
* @memberof SKUPrepInstructions
*/
'PrepInstructionList'?: Array<PrepInstruction>;
/**
* A list of preparation instructions and fees for Amazon to prep goods for shipment.
* @type {Array<AmazonPrepFeesDetails>}
* @memberof SKUPrepInstructions
*/
'AmazonPrepFeesDetailsList'?: Array<AmazonPrepFeesDetails>;
}