Module Values.AnomalyDateIntervalSource

The time period for an anomaly.

Sourcetype nonrec t = {
  1. startDate : YearMonthDay.t;
    (*

    The first date an anomaly was observed.

    *)
  2. endDate : YearMonthDay.t option;
    (*

    The last date an anomaly was observed.

    *)
}
Sourceval context_ : string
Sourceval make : ?endDate:??? -> startDate:YearMonthDay.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of YearMonthDay.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