/** * Veeroute.Lastmile * Veeroute Lastmile 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 { FactsLastmile } from './facts'; import { PerformerLastmile } from './performer'; import { OrderLastmile } from './order'; import { AdvancedLocationLastmile } from './advancedLocation'; import { ReplanSettingsLastmile } from './replanSettings'; import { TransportLastmile } from './transport'; import { TripLastmile } from './trip'; import { HardlinkLastmile } from './hardlink'; import { ShiftLastmile } from './shift'; /** * Task for replanning */ export interface ReplanTaskLastmile { /** * List of locations used for orders and shifts. */ locations: Array; /** * Orders list. */ orders: Array; /** * Available performers list. */ performers: Array; /** * Available vehicles list. */ transports: Array; /** * List of work shifts for performers and vehicles. */ shifts: Array; /** * Assignments list. */ hardlinks?: Array; /** * Existing trips that have to be replanned. */ trips: Array; facts?: FactsLastmile; settings?: ReplanSettingsLastmile; }