/** * 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 { TransportTypeUniversal } from './transportType'; import { TransportCompatibilitiesUniversal } from './transportCompatibilities'; import { TransportShiftUniversal } from './transportShift'; import { AttributeUniversal } from './attribute'; import { BoxUniversal } from './box'; import { TransportLimitsUniversal } from './transportLimits'; /** * Transport. Used by performer for relocating and cargo transfer. */ export interface TransportUniversal { [key: string]: any | any; /** * Transport key, unique identifier. */ key: string; /** * List of working shifts of transport. */ shifts: Array; transport_type?: TransportTypeUniversal; /** * A list of transport boxes that can accommodate the cargo. */ boxes?: Array; compatibilities?: TransportCompatibilitiesUniversal | null; limits?: TransportLimitsUniversal | null; /** * Name, information field. */ name?: string; /** * Attributes. Used to add service information. */ attributes?: Array; }