/** * 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 { ActualizeSettingsLastmile } from './actualizeSettings'; import { TransportLastmile } from './transport'; import { TripLastmile } from './trip'; import { HardlinkLastmile } from './hardlink'; import { ShiftLastmile } from './shift'; /** * Task for the trips actualization. */ export interface ActualizeTaskLastmile { /** * 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 routes that need to be actualized. */ trips: Array; facts?: FactsLastmile; settings?: ActualizeSettingsLastmile; }