/**
 * 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.
 */
/**
 * Item information for a shipment in a fulfillment order.
 * @export
 * @interface FulfillmentShipmentItem
 */
export interface FulfillmentShipmentItem {
    /**
     * The seller SKU of the item.
     * @type {string}
     * @memberof FulfillmentShipmentItem
     */
    'sellerSku': string;
    /**
     * The fulfillment order item identifier that the seller created and submitted with a call to the `createFulfillmentOrder` operation.
     * @type {string}
     * @memberof FulfillmentShipmentItem
     */
    'sellerFulfillmentOrderItemId': string;
    /**
     * The item quantity.
     * @type {number}
     * @memberof FulfillmentShipmentItem
     */
    'quantity': number;
    /**
     * An identifier for the package that contains the item quantity.
     * @type {number}
     * @memberof FulfillmentShipmentItem
     */
    'packageNumber'?: number;
    /**
     * The serial number of the shipped item.
     * @type {string}
     * @memberof FulfillmentShipmentItem
     */
    'serialNumber'?: string;
    /**
     * String list
     * @type {Array<string>}
     * @memberof FulfillmentShipmentItem
     */
    'manufacturerLotCodes'?: Array<string>;
}
