Module Values.BatchUnameSuccessResponseItemSource

Contains information about a username hash that was successfully resolved in a batch uname lookup operation.

Sourcetype nonrec t = {
  1. uname : Uname.t option;
    (*

    The username hash that was successfully resolved.

    *)
  2. username : GenericString.t option;
    (*

    The email address or username corresponding to the username hash.

    *)
}
Sourceval make : ?uname:??? -> ?username:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Uname.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