Module Values.SplitDocumentSource

Contains information about the pages of a document, defined by logical boundary.

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

    The index for a given document in a DocumentGroup of a specific Type.

    *)
  2. pages : PageList.t option;
    (*

    An array of page numbers for a for a given document, ordered by logical boundary.

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