UNPKG

@veeroute/lss-studio-angular

Version:

OpenAPI client for @veeroute/lss-studio-angular

30 lines (29 loc) 1.08 kB
/** * 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 { HardlinkElementStudio } from './hardlinkElement'; import { AttributeStudio } from './attribute'; /** * Assignment required to associate entities in a single group. It can consist of two or more entities. Example: * driver assignment to the transport (connection between the performer\'s shifts and the transport). * order assignment to the performer (link the order to a performer\'s shift). * specifying the need to perform multiple orders during a single trip (linking orders to deliver them within one trip). */ export interface HardlinkStudio { [key: string]: any | any; /** * Hardlink key. */ key: string; /** * List of items in the assignment group. */ links: Array<HardlinkElementStudio>; /** * Attributes. Used to add service information. */ attributes?: Array<AttributeStudio>; }