/** * 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 { TimeWindowLastmile } from './timeWindow'; /** * Possible event. Combines the geographical location and the time window, when a demand can be completed. */ export interface PossibleEventLastmile { /** * Event key, unique ID. */ key?: string; /** * Location key, where this event is possible. */ location_key: string; /** * Event execution time in minutes. */ duration?: number; /** * Reward for the event. */ reward?: number; time_window: TimeWindowLastmile; soft_time_window?: TimeWindowLastmile; }