/** * 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 { AttributeUniversal } from './attribute'; /** * Geodata usage settings. */ export interface GeoSettingsUniversal { [key: string]: any | any; /** * Geodata provider: * `VRT` - geo-data and traffic jams from Veeroute, work all over the world. A specific provider may be specified for a specific region, availability depending on customer settings. */ geo_provider?: string; /** * Use toll roads. */ toll_roads?: boolean; /** * Use ferry crossing. */ ferry_crossing?: boolean; /** * Accounting for traffic during the route planning. */ traffic_jams?: boolean; /** * Use for calculating straight line distances. If `false` is specified, distances are calculated by roads. When this parameter is enabled, geo-provider not used and traffic (`traffic_jams`) is automatically disabled. */ flight_distance?: boolean; /** * Attributes. Used to add service information. */ attributes?: Array; }