/** * 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 { ValidationLastmile } from './validation'; import { PlanInfoLastmile } from './planInfo'; import { PlanStatisticsLastmile } from './planStatistics'; import { TripLastmile } from './trip'; import { TraceDataLastmile } from './traceData'; import { UnplannedOrderLastmile } from './unplannedOrder'; /** * Planning result. It can be intermediate (during the calculation process) and complete (after the calculation is completed). */ export interface PlanResultLastmile { tracedata?: TraceDataLastmile; /** * Schedule of trips assigned to performers. */ trips: Array; statistics?: PlanStatisticsLastmile | null; /** * Validations list. */ validations?: Array; /** * Unassigned orders list. */ unplanned_orders?: Array; /** * Planning progress as a percentage. The progress displays the current number of completed steps. */ progress?: number; info?: PlanInfoLastmile; }