/** * 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 { CargoRotationTypeUniversal } from './cargoRotationType'; /** * Cargo [compatibilities](#section/Description/Compatibilities). */ export interface CargoCompatibilitiesUniversal { [key: string]: any | any; /** * Width in meters, used to check the transport box capacity. */ width?: number; /** * Height in meters, used to check the transport box capacity. */ height?: number; /** * Length in meters, used to check the transport box capacity. */ length?: number; /** * List of possibilities of a object rotations (90 degree step): * `ALL` - can rotate by any axis * `YAW` - can yaw * `PITCH` - can pitch * `ROLL` - can roll Empty list means object rotations is prohibited. More about [cargo placement](#section/Description/Cargo-placement). */ rotation?: Array; /** * A list of tags that define a property or requirement. */ box_restrictions?: Array; /** * A list of tags that define a property or requirement. */ cargo_features?: Array; /** * A list of tags that define a property or requirement. */ cargo_restrictions?: Array; }