Module Values.PardotConnectorProfileCredentialsSource

The connector-specific profile credentials required when using Salesforce Pardot.

Sourcetype nonrec t = {
  1. accessToken : AccessToken.t option;
    (*

    The credentials used to access protected Salesforce Pardot resources.

    *)
  2. refreshToken : RefreshToken.t option;
    (*

    The credentials used to acquire new access tokens.

    *)
  3. oAuthRequest : ConnectorOAuthRequest.t option;
  4. clientCredentialsArn : ClientCredentialsArn.t option;
    (*

    The secret manager ARN, which contains the client ID and client secret of the connected app.

    *)
}
Sourceval make : ?accessToken:??? -> ?refreshToken:??? -> ?oAuthRequest:??? -> ?clientCredentialsArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccessToken.t | `Structure of (string * [> `String of AuthCode.t ]) 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