Module Values_0.APIKeyConnectionMetadataSource

Configuration for API key-based authentication to external services.

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

    The base URL endpoint for the external service.

    *)
  2. apiKey : APIKey.t;
    (*

    The API key used for authentication.

    *)
  3. email : Email.t option;
    (*

    The email address associated with the API key, if required.

    *)
}
Sourceval context_ : string
Sourceval make : ?email:??? -> baseEndpoint:Endpoint.t -> apiKey:APIKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of 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