UNPKG

@veeroute/lss-studio-angular

Version:

OpenAPI client for @veeroute/lss-studio-angular

26 lines (25 loc) 717 B
/** * VRt.Studio [ST] * * 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 { BoxLimitsStudio } from './boxLimits'; import { BoxCompatibilitiesStudio } from './boxCompatibilities'; import { CapacityStudio } from './capacity'; /** * A transport box capable to hold a cargo. */ export interface BoxStudio { [key: string]: any | any; /** * Unique box key used to identify the cargo placement in boxes. */ key: string; capacity?: CapacityStudio | null; compatibilities?: BoxCompatibilitiesStudio | null; limits?: BoxLimitsStudio | null; }