An item in a package.

Item

interface Item {
    dangerousGoodsDetails?: DangerousGoodsDetails;
    description?: string;
    directFulfillmentItemIdentifiers?: DirectFulfillmentItemIdentifiers;
    invoiceDetails?: InvoiceDetails;
    isHazmat?: boolean;
    itemIdentifier?: string;
    itemValue?: Currency;
    liquidVolume?: LiquidVolume;
    productType?: string;
    quantity: number;
    serialNumbers?: string[];
    weight?: Weight;
}

Properties

dangerousGoodsDetails?: DangerousGoodsDetails

Item

description?: string

The product description of the item.

Item

directFulfillmentItemIdentifiers?: DirectFulfillmentItemIdentifiers

Item

invoiceDetails?: InvoiceDetails

Item

isHazmat?: boolean

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

Item

itemIdentifier?: string

A unique identifier for an item provided by the client.

Item

itemValue?: Currency

Item

liquidVolume?: LiquidVolume

Item

productType?: string

The product type of the item.

Item

quantity: number

The number of units. This value is required.

Item

serialNumbers?: string[]

A list of unique serial numbers in an Amazon package that can be used to guarantee non-fraudulent items. The number of serial numbers in the list must be less than or equal to the quantity of items being shipped. Only applicable when channel source is Amazon.

Item

weight?: Weight

Item