Module Values.LineItemGroupSource

A grouping of tables which contain LineItems, with each table identified by the table's LineItemGroupIndex.

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

    The number used to identify a specific table in a document. The first table encountered will have a LineItemGroupIndex of 1, the second 2, etc.

    *)
  2. lineItems : LineItemList.t option;
    (*

    The breakdown of information on a particular line of a table.

    *)
}
Sourceval make : ?lineItemGroupIndex:??? -> ?lineItems:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of UInteger.t | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of UInteger.t | `List of [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ] list | `Structure of (string * [> `Float of Percent.t | `String of String_.t | `Structure of (string * [> `Float of Angle.t | `List of [> `Structure of (string * [> `Float of Float_.t ]) list ] list | `Structure of (string * [> `Float of Float_.t ]) list ]) list ]) list ]) 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