/** * 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 { WaypointDelivery } from './waypoint'; /** * Time-distance matrix. */ export interface RoutingMatrixDelivery { /** * Array of geographical points with distances and times calculated between them. */ waypoints: Array; /** * Routes length between two neighbour 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. */ distances: Array>; /** * Array of route durations between two neighbour locations, in minutes. 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. */ durations: Array>; }