@veeroute/lss-packer-angular
Version:
OpenAPI client for @veeroute/lss-packer-angular
37 lines (36 loc) • 902 B
TypeScript
/**
* 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 { PackageStatisticsPacker } from './packageStatistics';
/**
* General statistics for packing scheme.
*/
export interface PackStatisticsPacker {
[key: string]: any | any;
/**
* The total number of products (taking into account the number of goods in one group).
*/
products_count: number;
/**
* The total number of packages.
*/
packages_count: number;
/**
* Total weight in kilograms.
*/
total_mass: number;
/**
* The total volume of all packed goods in cubic meters.
*/
total_volume: number;
/**
* Statistics on used packages.
*/
package_statistics: Array<PackageStatisticsPacker>;
}