/** * 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 { CargoCompatibilitiesUniversal } from './cargoCompatibilities'; import { CapacityUniversal } from './capacity'; /** * Cargo. Regardless of capacity, cargo can only move inside the transport box. */ export interface CargoUniversal { [key: string]: any | any; /** * Cargo key, unique identifier. */ key: string; capacity?: CapacityUniversal | null; compatibilities?: CargoCompatibilitiesUniversal | null; /** * The key of the transport box in which the cargo is already located. Applicable only for cargo that is in the order with the type `DROP_FROM_BOX`. For other order types, the key must be empty. */ target_box_key?: string | null; }