/**
 * VRt.Packer [PC]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { TracedataPacker } from './tracedata';
import { PackStatisticsPacker } from './packStatistics';
import { CalculationInfoPacker } from './calculationInfo';
import { UnpackedItemsPacker } from './unpackedItems';
import { EntityWarningPacker } from './entityWarning';
import { PackageLayoutPacker } from './packageLayout';
/**
 * Packing result.
 */
export interface PackResultPacker {
    [key: string]: any | any;
    tracedata: TracedataPacker;
    /**
     * A product layout plan as a list of packaging locations. The first level contains a list of pallet stacks.
     */
    blueprint: Array<PackageLayoutPacker>;
    statistics: PackStatisticsPacker;
    /**
     * List of warnings. Depending on the flag `calculation_settings.treat_warnings_as_errors` - triggered checks are interpreted as errors or result in the removal of incorrect data from the calculation.
     */
    warnings?: Array<EntityWarningPacker>;
    unpacked_items?: UnpackedItemsPacker;
    /**
     * Calculation progress as a percentage. The progress displays the current number of completed steps.
     */
    calculation_progress: number;
    calculation_info: CalculationInfoPacker;
}
