Defines an item's input parameters.

ItemInput

interface ItemInput {
    expiration?: string;
    labelOwner: LabelOwner;
    manufacturingLotCode?: string;
    msku: string;
    prepOwner: PrepOwner;
    quantity: number;
}

Properties

expiration?: string

The expiration date of the MSKU. In ISO 8601 datetime format with pattern YYYY-MM-DD. Items with the same MSKU but different expiration dates cannot go into the same box.

ItemInput

labelOwner: LabelOwner

ItemInput

manufacturingLotCode?: string

The manufacturing lot code.

ItemInput

msku: string

The merchant SKU, a merchant-supplied identifier of a specific SKU.

ItemInput

prepOwner: PrepOwner

ItemInput

quantity: number

The number of units of the specified MSKU that will be shipped.

ItemInput