Module Values.AggregationOutputSource

The aggregation for an attribute.

Sourcetype nonrec t = {
  1. attribute : Attribute.t option;
    (*

    The attribute for this aggregation.

    *)
  2. displayValue : AggregationDisplayValue.t option;
    (*

    The display value of the aggregation output item.

    *)
  3. items : AggregationOutputItems.t option;
    (*

    A list of aggregation output items.

    *)
}
Sourceval make : ?attribute:??? -> ?displayValue:??? -> ?items:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Integer.t | `String of AggregationAttributeValue.t ]) list ] list | `String of Attribute.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