Module Values.IdentityDocumentSource

The structure that lists each document processed in an AnalyzeID operation.

Sourcetype nonrec t = {
  1. documentIndex : UInteger.t option;
    (*

    Denotes the placement of a document in the IdentityDocument list. The first document is marked 1, the second 2 and so on.

    *)
  2. identityDocumentFields : IdentityDocumentFieldList.t option;
    (*

    The structure used to record information extracted from identity documents. Contains both normalized field and value of the extracted text.

    *)
  3. blocks : BlockList.t option;
    (*

    Individual word recognition, as returned by document detection.

    *)
}
Sourceval make : ?documentIndex:??? -> ?identityDocumentFields:??? -> ?blocks:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of UInteger.t | `List of [> `Structure of (string * [> `Enum of string | `Float of Percent.t | `Integer of UInteger.t | `List of [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `String of NonEmptyString.t ] list ]) list ] list | `String of String_.t | `Structure of (string * [> `Float of Percent.t | `List of [> `String of QueryPage.t | `Structure of (string * [> `Float of Float_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `Float of Float_.t | `String of String_.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