/** * 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 { TimeWindowDelivery } from './timeWindow'; /** * Assigned order * `order_time` - start and end time of working on the order at the location. * `location_time` - time spent by the performer at the location (can\'t be narrower than `order_time`). */ export interface TripActionDelivery { /** * Key of the order being fulfilled now. */ order_key: string; /** * Warehouse key, where an action is being performed now. If specified, some work is going at a warehouse. If not specified, some work is going at a client. */ warehouse_key?: string; order_time: TimeWindowDelivery; location_time: TimeWindowDelivery; }