@veeroute/lss-packer-angular
Version:
OpenAPI client for @veeroute/lss-packer-angular
29 lines (28 loc) • 846 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 { ProductLayoutPacker } from './productLayout';
import { DimensionsPacker } from './dimensions';
import { CoordinatesPacker } from './coordinates';
/**
* The layout of the group of same (by key) product in the package. Product group - virtual package that combines the same (by key) product inside another package.
*/
export interface ProductGroupLayoutPacker {
[key: string]: any | any;
/**
* Package key.
*/
product_key: string;
coordinates: CoordinatesPacker;
dimensions: DimensionsPacker;
/**
* List of product layouts.
*/
product_layouts: Array<ProductLayoutPacker>;
}