Module Values_1.WebProxyCredentialsSource

The credentials for authenticating with a web proxy server.

Sourcetype nonrec t = {
  1. webProxyUsername : DbUsername.t;
    (*

    The username for authenticating with the web proxy server.

    *)
  2. webProxyPassword : Password.t;
    (*

    The password for authenticating with the web proxy server.

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