Module Values.RouteVehicleNoticeSource

Notices are additional information returned that indicate issues that occurred during route calculation.

Sourcetype nonrec t = {
  1. code : RouteVehicleNoticeCode.t option;
    (*

    Code corresponding to the issue.

    *)
  2. details : RouteVehicleNoticeDetailList.t option;
    (*

    Additional details of the notice.

    *)
  3. impact : RouteNoticeImpact.t option;
    (*

    Impact corresponding to the issue. While Low impact notices can be safely ignored, High impact notices must be evaluated further to determine the impact.

    *)
}
Sourceval make : ?code:??? -> ?details:??? -> ?impact:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of SensitiveString.t | `Structure of (string * [> `Boolean of SensitiveBoolean.t | `Enum of string | `List of [> `Enum of string ] list | `Long of DimensionCentimeters.t | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of RouteNoticeDetailRangeMinInteger.t | `Long of WeightKilograms.t ]) list ]) list ]) list ] list ]) 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