The shipment item information required by a seller to issue a shipment invoice.

ShipmentItem

interface ShipmentItem {
    ASIN?: string;
    GiftWrapPrice?: Money;
    ItemPrice?: Money;
    OrderItemId?: string;
    PromotionDiscount?: Money;
    QuantityOrdered?: number;
    SellerSKU?: string;
    SerialNumbers?: string[];
    ShippingDiscount?: Money;
    ShippingPrice?: Money;
    Title?: string;
}

Properties

ASIN?: string

The Amazon Standard Identification Number (ASIN) of the item.

ShipmentItem

GiftWrapPrice?: Money

ShipmentItem

ItemPrice?: Money

ShipmentItem

OrderItemId?: string

The Amazon-defined identifier for the order item.

ShipmentItem

PromotionDiscount?: Money

ShipmentItem

QuantityOrdered?: number

The number of items ordered.

ShipmentItem

SellerSKU?: string

The seller SKU of the item.

ShipmentItem

SerialNumbers?: string[]

The list of serial numbers.

ShipmentItem

ShippingDiscount?: Money

ShipmentItem

ShippingPrice?: Money

ShipmentItem

Title?: string

The name of the item.

ShipmentItem