Represents an item that has been packed into a container for shipping.

PackedItem

interface PackedItem {
    buyerProductIdentifier?: string;
    itemSequenceNumber: number;
    packedQuantity: ItemQuantity;
    vendorProductIdentifier?: string;
}

Properties

buyerProductIdentifier?: string

Buyer's Standard Identification Number (ASIN) of an item. Either buyerProductIdentifier or vendorProductIdentifier is required.

PackedItem

itemSequenceNumber: number

Item Sequence Number for the item. This must be the same value as sent in the order for a given item.

PackedItem

packedQuantity: ItemQuantity

PackedItem

vendorProductIdentifier?: string

The vendor selected product identification of the item. Should be the same as was sent in the Purchase Order, like SKU Number.

PackedItem