Contains information about a box that is used in the inbound plan. The box is a container that holds multiple items.

Box

interface Box {
    boxId?: string;
    contentInformationSource?: BoxContentInformationSource;
    destinationRegion?: Region;
    dimensions?: Dimensions;
    items?: Item[];
    packageId: string;
    quantity?: number;
    templateName?: string;
    weight?: Weight;
}

Properties

boxId?: string

The ID provided by Amazon that identifies a given box. This ID is comprised of the external shipment ID (which is generated after transportation has been confirmed) and the index of the box.

Box

contentInformationSource?: BoxContentInformationSource

Box

destinationRegion?: Region

Box

dimensions?: Dimensions

Box

items?: Item[]

Items contained within the box.

Box

packageId: string

Primary key to uniquely identify a Package (Box or Pallet).

Box

quantity?: number

The number of containers where all other properties like weight or dimensions are identical.

Box

templateName?: string

Template name of the box.

Box

weight?: Weight

Box