UNPKG

@veeroute/lss-packer-angular

Version:

OpenAPI client for @veeroute/lss-packer-angular

32 lines (31 loc) 837 B
/** * 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 { PackageTypePacker } from './packageType'; import { AttributePacker } from './attribute'; import { CoordinatesPacker } from './coordinates'; /** * Package. */ export interface PackagePacker { [key: string]: any | any; /** * Package key, unique identifier. */ key: string; type: PackageTypePacker; body_dimensions: DimensionsPacker; container_dimensions: DimensionsPacker; container_coordinates: CoordinatesPacker; /** * Attributes. Used to add service information. */ attributes?: Array<AttributePacker>; }