Values.BatchLookupUserUnameResponseSourceLooks up multiple user usernames from their unique username hashes (unames). This operation allows you to retrieve the email addresses associated with a list of username hashes.
type nonrec t = {message : GenericString.t option;A message indicating the overall result of the batch lookup operation.
*)successful : BatchUnameSuccessResponseItems.t option;A list of successfully resolved username hashes with their corresponding email addresses.
*)failed : BatchUnameErrorResponseItems.t option;A list of username hash lookup attempts that failed, including error details explaining why each lookup failed.
*)}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 ]val to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `String of Uname.t ]) list ] list
| `String of GenericString.t ])
list ]