/**
 * VRt.Studio [ST]
 *
 * 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 { RoutingMatrixWaypointStudio } from './routingMatrixWaypoint';
/**
 * Routing matrix. Contains durations and distances between points.
 */
export interface RoutingMatrixStudio {
    [key: string]: any | any;
    /**
     * Array of geographical points with distances and times calculated between them.
     */
    waypoints: Array<RoutingMatrixWaypointStudio>;
    /**
     * 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<Array<number>>;
    /**
     * 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<Array<number>>;
}
