Module Values_2.SearchContactsTimeRangeSource

A structure of time range that you want to search results.

Sourcetype nonrec t = {
  1. type_ : SearchContactsTimeRangeType.t;
    (*

    The type of timestamp to search.

    *)
  2. startTime : Values_0.Timestamp.t;
    (*

    The start time of the time range.

    *)
  3. endTime : Values_0.Timestamp.t;
    (*

    The end time of the time range.

    *)
}
Sourceval context_ : string
Sourceval make : type_:SearchContactsTimeRangeType.t -> startTime:Values_0.Timestamp.t -> endTime:Values_0.Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Timestamp of Values_0.Timestamp.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