Module Values.BatchLookupUserUnameRequestSource

Looks 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.

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

    The ID of the Wickr network where the users will be looked up.

    *)
  2. unames : Unames.t;
    (*

    A list of username hashes (unames) to look up. Each uname is a unique identifier for a user's username. Maximum 50 unames per batch request.

    *)
  3. clientToken : ClientToken.t option;
    (*

    A unique identifier for this request to ensure idempotency.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> networkId:NetworkId.t -> unames:Unames.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of GenericString.t ] list | `String of NetworkId.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