Module Values.UserMetadataSource

Contains metadata about a user member, including the username and email address.

Sourcetype nonrec t = {
  1. username : String_.t option;
    (*

    The username of the user.

    *)
  2. email : SensitiveEmail.t option;
    (*

    The email address of the user.

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