Module Values.InsightTimeRangeSource

Specifies the time range for filtering insights.

Sourcetype nonrec t = {
  1. from : Long.t;
    (*

    The start of the time range, in epoch milliseconds.

    *)
  2. to_ : Long.t;
    (*

    The end of the time range, in epoch milliseconds.

    *)
}
Sourceval context_ : string
Sourceval make : from:Long.t -> to_:Long.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.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