/** * 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 { CargoPlacementLastmile } from './cargoPlacement'; import { TripJobLastmile } from './tripJob'; /** * Action on the order. */ export interface TripActionLastmile { /** * Key of the order with which an action is taken. */ order_key: string; /** * Key of the demand with which an action is taken. */ demand_key: string; /** * Key of the event at which an action is taken. */ event_key?: string; /** * Key of the location at which an action is taken. */ location_key: string; /** * List of works, each to be performed during a `job_time` time window. */ todolist?: Array; /** * List of cargo placements. */ cargo_placements?: Array; /** * Attributes, used to add service information that does not affect planning. */ attributes?: Set; }