Contains input information about a pallet to be used in the inbound plan.

PalletInput

interface PalletInput {
    dimensions?: Dimensions;
    quantity: number;
    stackability?: Stackability;
    weight?: Weight;
}

Properties

dimensions?: Dimensions

PalletInput

quantity: number

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

PalletInput

stackability?: Stackability

PalletInput

weight?: Weight

PalletInput