Module Values.AnalyticsBinBySpecificationSource

Contains the time metric, interval, and method by which to bin the analytics data.

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

    Specifies the time metric by which to bin the analytics data.

    *)
  2. interval : AnalyticsInterval.t;
    (*

    Specifies the interval of time by which to bin the analytics data.

    *)
  3. order : AnalyticsSortOrder.t option;
    (*

    Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the default order is by the key of the bin in descending order.

    *)
}
Sourceval context_ : string
Sourceval make : ?order:??? -> name:AnalyticsBinByName.t -> interval:AnalyticsInterval.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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