/** * 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 { DemandUniversal } from './demand'; import { OrderCompatibilitiesUniversal } from './orderCompatibilities'; import { AttributeUniversal } from './attribute'; import { CargoUniversal } from './cargo'; /** * The order for delivery/transportation, contains a list of demands. */ export interface OrderUniversal { [key: string]: any | any; /** * Order key, unique identifier. */ key: string; /** * Demands list. */ demands: Array; /** * The list of cargoes referred to by the demands of this order. The list must be empty if all demands in the order are of type `WORK`. */ cargos?: Array; compatibilities?: OrderCompatibilitiesUniversal | null; /** * Name, information field. */ name?: string; /** * Attributes. Used to add service information. */ attributes?: Array; }