Input information for a given box.

BoxInput

interface BoxInput {
    contentInformationSource: BoxContentInformationSource;
    dimensions: Dimensions;
    items?: ItemInput[];
    quantity: number;
    weight: Weight;
}

Properties

contentInformationSource: BoxContentInformationSource

BoxInput

dimensions: Dimensions

BoxInput

items?: ItemInput[]

The items and their quantity in the box. This must be empty if the box contentInformationSource is BARCODE_2D or MANUAL_PROCESS.

BoxInput

quantity: number

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

BoxInput

weight: Weight

BoxInput