/** * 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 { TripActionDelivery } from './tripAction'; import { TimeWindowDelivery } from './timeWindow'; /** * A trip is a set of works (`actions`) assigned to the specific performer. The trip start and end times are specified in `trip_time`. */ export interface TripDelivery { /** * Unique trip ID. */ key: string; trip_time: TimeWindowDelivery; /** * Performer\'s key. */ performer_key: string; /** * List of actions on orders. */ actions?: Array; /** * Keys list for orders, assigned to the performer, but not scheduled for a specific time. */ waitlist?: Set; }