/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.26.3024 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { TimeWindowUniversal } from './timeWindow'; /** * Possible event. Combines the geographical location and the time window, when a demand can be completed. */ export interface PossibleEventUniversal { [key: string]: any | any; /** * Event key, unique identifier. */ key: string; /** * Location key, where this event is possible. */ location_key: string; /** * Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations). */ duration?: string; /** * Reward for completing this event. */ reward?: number; /** * A hard time window within which an event must occur. The window duration cannot be less than the `duration` of the event. Cannot be violated during planning. */ hard_time_window: TimeWindowUniversal; soft_time_window?: TimeWindowUniversal | null; }