Module Values.UsernamePasswordSource

The username and password of a connection.

Sourcetype nonrec t = {
  1. password : Password.t;
    (*

    The password of a connection.

    *)
  2. username : Username.t;
    (*

    The username of a connection.

    *)
}
Sourceval context_ : string
Sourceval make : password:Password.t -> username:Username.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Password.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