Module Values.TableExcerptSource

An excerpt from a table within a document. The table excerpt displays up to five columns and three rows, depending on how many table cells are relevant to the query and how many columns are available in the original table. The top most relevant cell is displayed in the table excerpt, along with the next most relevant cells.

Sourcetype nonrec t = {
  1. rows : TableRowList.t option;
    (*

    A list of rows in the table excerpt.

    *)
  2. totalNumberOfRows : Integer.t option;
    (*

    A count of the number of rows in the original table within the document.

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