@veeroute/lss-routing-angular
Version:
OpenAPI client for @veeroute/lss-routing-angular
41 lines (40 loc) • 1.24 kB
TypeScript
/**
* VRt.Routing [RT]
*
* The version of the OpenAPI document: 7.18.2755
* Contact: servicedesk@veeroute.com
*
* NOTE: This class is auto generated by OpenAPI Generator.
* Do not edit the class manually.
*/
import { AttributeRouting } from './attribute';
/**
* Geodata usage settings.
*/
export interface GeoSettingsRouting {
[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<AttributeRouting>;
}