Module Values.RoadSnapNoticeSource

Notices provide information around factors that may have influenced snapping in a manner atypical to the standard use cases.

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

    Code corresponding to the issue.

    *)
  2. title : SensitiveString.t option;
    (*

    The notice title.

    *)
  3. tracePointIndexes : RoadSnapTracePointIndexList.t option;
    (*

    TracePoint indices for which the provided notice code corresponds to.

    *)
}
Sourceval make : ?code:??? -> ?title:??? -> ?tracePointIndexes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Integer of Integer.t ] list | `String of SensitiveString.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