Module Values.AnalyzeIDDetectionsSource

Used to contain the information detected by an AnalyzeID operation.

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

    Text of either the normalized field or value associated with it.

    *)
  2. normalizedValue : NormalizedValue.t option;
    (*

    Only returned for dates, returns the type of value detected and the date written in a more machine readable way.

    *)
  3. confidence : Percent.t option;
    (*

    The confidence score of the detected text.

    *)
}
Sourceval make : ?text:??? -> ?normalizedValue:??? -> ?confidence:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Percent.t | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) 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