Module Values.LendingDetectionSource

The results extracted for a lending document.

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

    The text extracted for a detected value in a lending document.

    *)
  2. selectionStatus : SelectionStatus.t option;
    (*

    The selection status of a selection element, such as an option button or check box.

    *)
  3. geometry : Geometry.t option;
  4. confidence : Percent.t option;
    (*

    The confidence level for the text of a detected value in a lending document.

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