Module Values_1.BasicAuthConnectionMetadataSource

Metadata for basic authentication using username and password.

Sourcetype nonrec t = {
  1. baseEndpoint : Values_0.Endpoint.t;
    (*

    The base URL endpoint for the external service.

    *)
  2. username : Values_0.ActionUserName.t;
    (*

    The username for basic authentication.

    *)
  3. password : Values_0.ActionPassword.t;
    (*

    The password for basic authentication.

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