Module Values.DocumentGroupSource

Summary information about documents grouped by the same document type.

Sourcetype nonrec t = {
  1. type_ : NonEmptyString.t option;
    (*

    The type of document that Amazon Textract has detected. See Analyze Lending Response Objects for a list of all types returned by Textract.

    *)
  2. splitDocuments : SplitDocumentList.t option;
    (*

    An array that contains information about the pages of a document, defined by logical boundary.

    *)
  3. detectedSignatures : DetectedSignatureList.t option;
    (*

    A list of the detected signatures found in a document group.

    *)
  4. undetectedSignatures : UndetectedSignatureList.t option;
    (*

    A list of any expected signatures not found in a document group.

    *)
}
Sourceval make : ?type_:??? -> ?splitDocuments:??? -> ?detectedSignatures:??? -> ?undetectedSignatures:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of UInteger.t | `List of [> `Integer of UInteger.t ] list ]) list ] list | `String of NonEmptyString.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