Represents an individual item in an order, including item details, quantities, pricing, and backorder information.

OrderItem

interface OrderItem {
    amazonProductIdentifier?: string;
    isBackOrderAllowed: boolean;
    itemSequenceNumber: string;
    listPrice?: Money;
    netCost?: Money;
    orderedQuantity: ItemQuantity;
    vendorProductIdentifier?: string;
}

Properties

amazonProductIdentifier?: string

Amazon Standard Identification Number (ASIN) of an item.

OrderItem

isBackOrderAllowed: boolean

When true, we will accept backorder confirmations for this item.

OrderItem

itemSequenceNumber: string

Numbering of the item on the purchase order. The first item will be 1, the second 2, and so on.

OrderItem

listPrice?: Money

OrderItem

netCost?: Money

OrderItem

orderedQuantity: ItemQuantity

OrderItem

vendorProductIdentifier?: string

The vendor selected product identification of the item.

OrderItem