Module Values_0.AggFunctionSource

The definition of an Agg function.

Sourcetype nonrec t = {
  1. aggregation : AggType.t option;
    (*

    The aggregation of an Agg function.

    *)
  2. aggregationFunctionParameters : AggFunctionParamMap.t option;
    (*

    The aggregation parameters for an Agg function.

    *)
  3. period : TopicTimeGranularity.t option;
    (*

    The period of an Agg function.

    *)
  4. periodField : LimitedString.t option;
    (*

    The period field for an Agg function.

    *)
}
Sourceval make : ?aggregation:??? -> ?aggregationFunctionParameters:??? -> ?period:??? -> ?periodField:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of AggFunctionParamKey.t ] * [> `String of AggFunctionParamValue.t ]) list | `String of LimitedString.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