Module Values.BatchUnameErrorResponseItemSource

Contains error information for a username hash lookup that failed in a batch uname lookup request.

Sourcetype nonrec t = {
  1. field : GenericString.t option;
    (*

    The field that caused the error.

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

    A description of why the username hash lookup failed.

    *)
  3. uname : Uname.t option;
    (*

    The username hash that failed to be looked up.

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