/**
 * 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 { PackageTypePacker } from './packageType';
/**
 * Statistics for package.
 */
export interface PackageStatisticsPacker {
    [key: string]: any | any;
    /**
     * Package key, unique identifier.
     */
    package_key: string;
    package_type: PackageTypePacker;
    /**
     * The total number of packages.
     */
    count: number;
    /**
     * The maximum weight of goods that this package can hold (in total for all packages of the specified key and type), in kilograms.
     */
    max_container_mass: number;
    /**
     * The maximum volume of goods that this package can hold (total for all packages of the specified key and type), in cubic meters.
     */
    max_container_volume: number;
    /**
     * Utilization by mass (in fractions) - the ratio of the loaded mass to the maximum possible (excluding weight of packages).
     */
    utilization_by_mass: number;
    /**
     * Utilization by volume (in fractions) - the ratio of the loaded volume to the maximum possible (excluding volume of packages).
     */
    utilization_by_volume: number;
}
