Module Values.ConditionsSource

The conditions including range, object count, and threshold for the calculated attribute.

Sourcetype nonrec t = {
  1. range : Range.t option;
    (*

    The relative time period over which data is included in the aggregation.

    *)
  2. objectCount : ObjectCount.t option;
    (*

    The number of profile objects used for the calculated attribute.

    *)
  3. threshold : Threshold.t option;
    (*

    The threshold for the calculated attribute.

    *)
}
Sourceval make : ?range:??? -> ?objectCount:??? -> ?threshold:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ObjectCount.t | `Structure of (string * [> `Enum of string | `Integer of Value.t | `String of String1To255.t | `Structure of (string * [> `Integer of ValueRangeStart.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