An item that is associated with an order item. For example, a tire installation service that is purchased with tires.

AssociatedItem

interface AssociatedItem {
    AssociationType?: "VALUE_ADD_SERVICE";
    OrderId?: string;
    OrderItemId?: string;
}

Properties

AssociationType?: "VALUE_ADD_SERVICE"

AssociatedItem

OrderId?: string

The order item's order identifier, in 3-7-7 format.

AssociatedItem

OrderItemId?: string

An Amazon-defined item identifier for the associated item.

AssociatedItem