Module Values.AnalyticsBinKeySource

An object containing the criterion by which to bin the results and the value that defines that bin.

Sourcetype nonrec t = {
  1. name : AnalyticsBinByName.t option;
    (*

    The criterion by which to bin the results.

    *)
  2. value : AnalyticsBinValue.t option;
    (*

    The value of the criterion that defines the bin.

    *)
}
Sourceval make : ?name:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of AnalyticsBinValue.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