Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MarketoConnectorProfileCredentials

import type { MarketoConnectorProfileCredentials } from "https://aws-api.deno.dev/v0.4/services/appflow.ts?docs=full";

The connector-specific profile credentials required by Marketo.

interface MarketoConnectorProfileCredentials {
accessToken?: string | null;
clientId: string;
clientSecret: string;
oAuthRequest?: ConnectorOAuthRequest | null;
}

§Properties

§
accessToken?: string | null
[src]

The credentials used to access protected Marketo resources.

§
clientId: string
[src]

The identifier for the desired client.

§
clientSecret: string
[src]

The client secret used by the OAuth client to authenticate to the authorization server.

§
oAuthRequest?: ConnectorOAuthRequest | null
[src]

The OAuth requirement needed to request security tokens from the connector endpoint.