Values.GetUserRequestSourceRetrieves detailed information about a specific user in a Wickr network, including their profile, status, and activity history.
type nonrec t = {networkId : NetworkId.t;The ID of the Wickr network containing the user.
*)userId : UserId.t;The unique identifier of the user to retrieve.
*)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.
*)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.
*)}val make :
?startTime:??? ->
?endTime:??? ->
networkId:NetworkId.t ->
userId:UserId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of NetworkId.t
| `Timestamp of SyntheticTimestamp_epoch_seconds.t ])
list ]