/** * 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 { PrepDetails } from './prep-details'; /** * Item information for an inbound shipment. Submitted with a call to the createInboundShipment or updateInboundShipment operation. */ export interface InboundShipmentItem { /** * A shipment identifier originally returned by the createInboundShipmentPlan operation. */ 'ShipmentId'?: string; /** * The seller SKU of the item. */ 'SellerSKU': string; /** * Amazon\'s fulfillment network SKU of the item. */ 'FulfillmentNetworkSKU'?: string; /** * The item quantity. */ 'QuantityShipped': number; /** * The item quantity. */ 'QuantityReceived'?: number; /** * The item quantity. */ 'QuantityInCase'?: number; /** * Type containing date in string format */ 'ReleaseDate'?: string; /** * A list of preparation instructions and who is responsible for that preparation. */ 'PrepDetailsList'?: Array; }