Module Values.RouteMatrixTrafficOptionsSource

Traffic related options.

Sourcetype nonrec t = {
  1. flowEventThresholdOverride : DurationSeconds.t option;
    (*

    Duration for which flow traffic is considered valid. For this period, the flow traffic is used over historical traffic data. Flow traffic refers to congestion, which changes very quickly. Duration in seconds for which flow traffic event would be considered valid. While flow traffic event is valid it will be used over the historical traffic data.

    *)
  2. usage : TrafficUsage.t option;
    (*

    Determines if traffic should be used or ignored while calculating the route. Default value: UseTrafficData

    *)
}
Sourceval make : ?flowEventThresholdOverride:??? -> ?usage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of DurationSeconds.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