An Amazon order item identifier and a quantity.

Export

Item

interface Item {
    DangerousGoodsDetails?: DangerousGoodsDetails;
    IsHazmat?: boolean;
    ItemDescription?: string;
    ItemLevelSellerInputsList?: AdditionalSellerInputs[];
    ItemWeight?: Weight;
    LiquidVolume?: LiquidVolume;
    OrderItemId: string;
    Quantity: number;
    TransparencyCodeList?: string[];
}

Properties

DangerousGoodsDetails?: DangerousGoodsDetails

Memberof

Item

IsHazmat?: boolean

When true, the item qualifies as hazardous materials (hazmat). Defaults to false.

Memberof

Item

ItemDescription?: string

The description of the item.

Memberof

Item

ItemLevelSellerInputsList?: AdditionalSellerInputs[]

A list of additional seller input pairs required to purchase shipping.

Memberof

Item

ItemWeight?: Weight

Memberof

Item

LiquidVolume?: LiquidVolume

Memberof

Item

OrderItemId: string

An Amazon-defined identifier for an individual item in an order.

Memberof

Item

Quantity: number

The number of items.

Memberof

Item

TransparencyCodeList?: string[]

A list of transparency codes.

Memberof

Item