@veeroute/lss-packer-angular
Version:
OpenAPI client for @veeroute/lss-packer-angular
39 lines (38 loc) • 1.08 kB
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 { DimensionsPacker } from './dimensions';
import { AttributePacker } from './attribute';
/**
* Product. Can be rotated 90 degrees around the vertical axis.
*/
export interface ProductPacker {
[key: string]: any | any;
/**
* Product key (SKU).
*/
key: string;
/**
* Number of products.
*/
count?: number;
dimensions: DimensionsPacker;
/**
* The maximum permissible top load that this product can withstand, in kg/m2.
*/
max_pressure?: number;
/**
* List of keys of compatible packages. If the list is empty, then all packages are considered compatible. The list must be either empty or must contain the keys of all mixboxes.
*/
compatible_package_keys?: Array<string>;
/**
* Attributes. Used to add service information.
*/
attributes?: Array<AttributePacker>;
}