/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.26.3024 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { BoxCompatibilitiesUniversal } from './boxCompatibilities'; import { BoxLimitsUniversal } from './boxLimits'; import { AttributeUniversal } from './attribute'; import { CapacityUniversal } from './capacity'; /** * A transport box capable to hold a cargo. */ export interface BoxUniversal { [key: string]: any | any; /** * Unique box key used to identify the cargo placement in boxes. */ key: string; capacity?: CapacityUniversal | null; compatibilities?: BoxCompatibilitiesUniversal | null; limits?: BoxLimitsUniversal | null; /** * Attributes. Used to add service information. */ attributes?: Array; }