Module Values.TimestampRangeSource

Specifies a time range for filtering certificates.

Sourcetype nonrec t = {
  1. start : TStamp.t option;
    (*

    The start of the time range. This value is inclusive.

    *)
  2. end_ : TStamp.t option;
    (*

    The end of the time range. This value is inclusive.

    *)
}
Sourceval make : ?start:??? -> ?end_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of TStamp.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