Module Values.AnomalyObjectSource

Contains information about the unusual anomalies.

Sourcetype nonrec t = {
  1. profileType : ProfileType.t option;
    (*

    The type of behavior of the profile.

    *)
  2. profileSubtype : ProfileSubtype.t option;
    (*

    The frequency of the anomaly.

    *)
  3. observations : Observations.t option;
    (*

    The recorded value.

    *)
}
Sourceval make : ?profileType:??? -> ?profileSubtype:??? -> ?observations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `List of [> `String of String_.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