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

GoogleAnalyticsConnectorProfileCredentials

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

The connector-specific profile credentials required by Google Analytics.

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

§Properties

§
accessToken?: string | null
[src]

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

§
refreshToken?: string | null
[src]

The credentials used to acquire new access tokens. This is required only for OAuth2 access tokens, and is not required for OAuth1 access tokens.