/** * Veeroute.Delivery * Veeroute Delivery API * * The version of the OpenAPI document: 3.15.183137 * Contact: support@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CapacityDelivery } from './capacity'; /** * A vehicle compartment capable to hold a cargo. `capacity` - the compartment capacity, which limits the maximum amount for all `capacity` fields of *all* the cargoes. `max_size` - `capacity` fields limitation for *one* cargo. */ export interface BoxDelivery { /** * Compartment key, a unique ID used to identify the cargo placement in compartments. */ key: string; capacity?: CapacityDelivery | null; max_size?: CapacityDelivery | null; /** * Width in meters. */ width?: number; /** * Height in meters. */ height?: number; /** * Length in meters. */ length?: number; /** * Compartment features list that determines compatibility with the cargo. */ features?: Set; }