@veeroute/lss-packer-angular
Version:
OpenAPI client for @veeroute/lss-packer-angular
32 lines (31 loc) • 849 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 { PackSettingsPacker } from './packSettings';
import { PackagePacker } from './package';
import { ProductPacker } from './product';
/**
* Initial task.
*/
export interface PackTaskPacker {
[key: string]: any | any;
/**
* List of products.
*/
products: Array<ProductPacker>;
/**
* List of packages. It is obligatory to have at least one package of each type (SLOT, PALLET, MIXBOX).
*/
packages: Array<PackagePacker>;
pack_settings?: PackSettingsPacker;
/**
* The name of the dataset. A technical field that does not affect calculation.
*/
dataset_name?: string;
}