/** * 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 { RoutingMatrixWaypointUniversal } from './routingMatrixWaypoint'; /** * Routing matrix. Contains durations and distances between points. */ export interface RoutingMatrixUniversal { [key: string]: any | any; /** * Array of geographical points with distances and times calculated between them. */ waypoints: Array; /** * Routes length between two neighbors locations, in meters. The values in the array are ordered according to the elements order in the `waypoints` parameter. Each matrix row is an array of distances from the desired point to every other point. A negative value (-1) means that it is not possible to drive between the specified locations. */ distances: Array>; /** * An array of route durations between points, in seconds. The values in the array are ordered according to the order of the elements in the `waypoints` parameter. Each row of the matrix is an array of travel times from the desired point to each other point. A negative value (-1) means that it is impossible to travel between the specified points. */ durations: Array>; }