Details of the item being acknowledged.

OrderAcknowledgementItem

interface OrderAcknowledgementItem {
    amazonProductIdentifier?: string;
    discountMultiplier?: string;
    itemAcknowledgements: OrderItemAcknowledgement[];
    itemSequenceNumber?: string;
    listPrice?: Money;
    netCost?: Money;
    orderedQuantity: ItemQuantity;
    vendorProductIdentifier?: string;
}

Properties

amazonProductIdentifier?: string

Amazon Standard Identification Number (ASIN) of an item.

OrderAcknowledgementItem

discountMultiplier?: string

The discount multiplier that should be applied to the price if a vendor sells books with a list price. This is a multiplier factor to arrive at a final discounted price. A multiplier of .90 would be the factor if a 10% discount is given.

OrderAcknowledgementItem

itemAcknowledgements: OrderItemAcknowledgement[]

This is used to indicate acknowledged quantity.

OrderAcknowledgementItem

itemSequenceNumber?: string

Line item sequence number for the item.

OrderAcknowledgementItem

listPrice?: Money

OrderAcknowledgementItem

netCost?: Money

OrderAcknowledgementItem

orderedQuantity: ItemQuantity

OrderAcknowledgementItem

vendorProductIdentifier?: string

The vendor selected product identification of the item. Should be the same as was sent in the purchase order.

OrderAcknowledgementItem