Module Values.DocumentMetadataSource

Information about the document, discovered during text extraction.

Sourcetype nonrec t = {
  1. pages : Integer.t option;
    (*

    Number of pages in the document.

    *)
  2. extractedCharacters : ListOfExtractedCharacters.t option;
    (*

    List of pages in the document, with the number of characters extracted from each page.

    *)
}
Sourceval make : ?pages:??? -> ?extractedCharacters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Integer of Integer.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