/** * 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'; /** * Change coefficients in driving speed and time in a certain time period. */ export interface TrafficFactorDelivery { time_window: TimeWindowDelivery; /** * Distance factor. */ length_multiplier?: number; /** * Increasing the distance by this number, in meters. */ length_additive?: number; /** * Time factor. */ time_multiplier?: number; /** * Increasing the time by this number, in meters. */ time_additive?: number; }