Module Values.SAPODataConnectorProfileCredentialsSource

The connector-specific profile credentials required when using SAPOData.

Sourcetype nonrec t = {
  1. basicAuthCredentials : BasicAuthCredentials.t option;
    (*

    The SAPOData basic authentication credentials.

    *)
  2. oAuthCredentials : OAuthCredentials.t option;
    (*

    The SAPOData OAuth type authentication credentials.

    *)
}
Sourceval make : ?basicAuthCredentials:??? -> ?oAuthCredentials:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of Username.t | `Structure of (string * [> `String of AuthCode.t ]) list ]) list ]) 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