/**
 * VRt.Routing [RT]
 *
 * The version of the OpenAPI document: 7.16.2673
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { GeoSettingsRouting } from './geoSettings';
import { RoutingMatrixWaypointRouting } from './routingMatrixWaypoint';
import { TransportTypeRouting } from './transportType';
/**
 * Task for calculating a matrix.
 */
export interface MatrixTaskRouting {
    [key: string]: any | any;
    /**
     * Array of geographical points to calculate the distances and times between them. The for all matrices (with different `transport_type`) must be in the same order.
     */
    waypoints: Array<RoutingMatrixWaypointRouting>;
    transport_type?: TransportTypeRouting;
    geo_settings?: GeoSettingsRouting;
    /**
     * Departure date and time according to the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6).
     */
    departure_time?: string | null;
    /**
     * The name of the dataset. A technical field that does not affect calculation.
     */
    dataset_name?: string;
}
