/**
 * 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 { CargoCompatibilitiesStudio } from './cargoCompatibilities';
import { CapacityStudio } from './capacity';
/**
 * Cargo. Regardless of capacity, cargo can only move inside the transport box.
 */
export interface CargoStudio {
    [key: string]: any | any;
    /**
     * Cargo key, unique identifier.
     */
    key: string;
    capacity?: CapacityStudio | null;
    compatibilities?: CargoCompatibilitiesStudio | 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;
}
