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

ZendeskConnectorProfileCredentials

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

The connector-specific profile credentials required when using Zendesk.

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

§Properties

§
accessToken?: string | null
[src]

The credentials used to access protected Zendesk 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.