Values.GetUserResponseSourceRetrieves detailed information about a specific user in a Wickr network, including their profile, status, and activity history.
type nonrec t = {userId : UserId.t option;The unique identifier of the user.
*)firstName : SensitiveString.t option;The first name of the user.
*)lastName : SensitiveString.t option;The last name of the user.
*)username : GenericString.t option;The email address or username of the user.
*)isAdmin : Boolean.t option;Indicates whether the user has administrator privileges in the network.
*)suspended : Boolean.t option;Indicates whether the user is currently suspended.
*)status : Integer.t option;The current status of the user (1 for pending, 2 for active).
*)lastActivity : Integer.t option;The timestamp of the user's last activity in the network, specified in epoch seconds.
*)lastLogin : Integer.t option;The timestamp of the user's last login to the network, specified in epoch seconds.
*)securityGroupIds : SecurityGroupIdList.t option;A list of security group IDs to which the user belongs.
*)}type nonrec error = [ | `BadRequestError of BadRequestError.t| `ForbiddenError of ForbiddenError.t| `InternalServerError of InternalServerError.t| `RateLimitError of RateLimitError.t| `ResourceNotFoundError of ResourceNotFoundError.t| `ValidationError of ValidationError.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `BadRequestError of BadRequestError.t
| `ForbiddenError of ForbiddenError.t
| `InternalServerError of InternalServerError.t
| `RateLimitError of RateLimitError.t
| `ResourceNotFoundError of ResourceNotFoundError.t
| `UnauthorizedError of UnauthorizedError.t
| `Unknown_operation_error of string * string option
| `ValidationError of ValidationError.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `BadRequestError of BadRequestError.t
| `ForbiddenError of ForbiddenError.t
| `InternalServerError of InternalServerError.t
| `RateLimitError of RateLimitError.t
| `ResourceNotFoundError of ResourceNotFoundError.t
| `UnauthorizedError of UnauthorizedError.t
| `Unknown_operation_error of string * string option
| `ValidationError of ValidationError.t ]