Module Values.CalculateRouteMatrixSummarySource

A summary of the calculated route matrix.

Sourcetype nonrec t = {
  1. dataSource : String_.t option;
    (*

    The data provider of traffic and road network data used to calculate the routes. Indicates one of the available providers: Esri Grab Here For more information about data providers, see Amazon Location Service data providers.

    *)
  2. routeCount : CalculateRouteMatrixSummaryRouteCountInteger.t option;
    (*

    The count of cells in the route matrix. Equal to the number of DeparturePositions multiplied by the number of DestinationPositions.

    *)
  3. errorCount : CalculateRouteMatrixSummaryErrorCountInteger.t option;
    (*

    The count of error results in the route matrix. If this number is 0, all routes were calculated successfully.

    *)
  4. distanceUnit : DistanceUnit.t option;
    (*

    The unit of measurement for route distances.

    *)
}
Sourceval make : ?dataSource:??? -> ?routeCount:??? -> ?errorCount:??? -> ?distanceUnit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of CalculateRouteMatrixSummaryRouteCountInteger.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t