/** * Veeroute.Delivery * Veeroute Delivery 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 { OrderDelivery } from './order'; import { PerformerDelivery } from './performer'; import { FactsDelivery } from './facts'; import { TripDelivery } from './trip'; import { ActualizeSettingsDelivery } from './actualizeSettings'; import { WarehouseDelivery } from './warehouse'; /** * Task for the trips actualization. */ export interface ActualizeTaskDelivery { /** * List of warehouses for cargo pickup or drop. */ warehouses: Array; /** * Orders list. */ orders: Array; /** * List of performers, with their working schedule and vehicle characteristics. */ performers: Array; /** * Existing routes that need to be actualized. */ trips: Array; facts?: FactsDelivery; settings?: ActualizeSettingsDelivery; }