Updated inventory details for an item.

ItemDetails

interface ItemDetails {
    availableQuantity: ItemQuantity;
    buyerProductIdentifier?: string;
    isObsolete?: boolean;
    vendorProductIdentifier?: string;
}

Properties

availableQuantity: ItemQuantity

ItemDetails

buyerProductIdentifier?: string

The buyer selected product identification of the item. Either buyerProductIdentifier or vendorProductIdentifier should be submitted.

ItemDetails

isObsolete?: boolean

When true, the item is permanently unavailable.

ItemDetails

vendorProductIdentifier?: string

The vendor selected product identification of the item. Either buyerProductIdentifier or vendorProductIdentifier should be submitted.

ItemDetails