Module Values.AnalyticsSessionResultSource

An object containing the results for the session metrics you requested and the bin and/or group(s) they refer to, if applicable.

Sourcetype nonrec t = {
  1. binKeys : AnalyticsBinKeys.t option;
    (*

    A list of objects containing the criteria you requested for binning results and the values of the bins.

    *)
  2. groupByKeys : AnalyticsSessionGroupByKeys.t option;
    (*

    A list of objects containing the criteria you requested for grouping results and the values of the bins.

    *)
  3. metricsResults : AnalyticsSessionMetricResults.t option;
    (*

    A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the method by which to organize the results.

    *)
}
Sourceval make : ?binKeys:??? -> ?groupByKeys:??? -> ?metricsResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of AnalyticsMetricValue.t | `Enum of string | `Long of AnalyticsBinValue.t | `String of AnalyticsGroupByValue.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