@veeroute/lss-studio-angular
Version:
OpenAPI client for @veeroute/lss-studio-angular
41 lines (40 loc) • 1.11 kB
TypeScript
/**
* 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 { CargoStudio } from './cargo';
import { AttributeStudio } from './attribute';
import { DemandStudio } from './demand';
import { OrderCompatibilitiesStudio } from './orderCompatibilities';
/**
* The order for delivery/transportation, contains a list of demands.
*/
export interface OrderStudio {
[key: string]: any | any;
/**
* Order key, unique identifier.
*/
key: string;
/**
* Demands list.
*/
demands: Array<DemandStudio>;
/**
* 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<CargoStudio>;
compatibilities?: OrderCompatibilitiesStudio | null;
/**
* Name, information field.
*/
name?: string;
/**
* Attributes. Used to add service information.
*/
attributes?: Array<AttributeStudio>;
}