Module Values.GetUserRequestSource

Retrieves detailed information about a specific user in a Wickr network, including their profile, status, and activity history.

Sourcetype nonrec t = {
  1. networkId : NetworkId.t;
    (*

    The ID of the Wickr network containing the user.

    *)
  2. userId : UserId.t;
    (*

    The unique identifier of the user to retrieve.

    *)
  3. startTime : SyntheticTimestamp_epoch_seconds.t option;
    (*

    The start time for filtering the user's last activity. Only activity after this timestamp will be considered. Time is specified in epoch seconds.

    *)
  4. endTime : SyntheticTimestamp_epoch_seconds.t option;
    (*

    The end time for filtering the user's last activity. Only activity before this timestamp will be considered. Time is specified in epoch seconds.

    *)
}
Sourceval context_ : string
Sourceval make : ?startTime:??? -> ?endTime:??? -> networkId:NetworkId.t -> userId:UserId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NetworkId.t | `Timestamp of SyntheticTimestamp_epoch_seconds.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