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

ExchangeAuthCodeRequest

import type { ExchangeAuthCodeRequest } from "https://googleapis.deno.dev/v1/connectors:v2.ts";

ExchangeAuthCodeRequest currently includes the auth code data.

interface ExchangeAuthCodeRequest {
authCodeData?: AuthCodeData;
executionConfig?: ExecutionConfig;
oauth2Config?: OAuth2Config;
}

§Properties

§
authCodeData?: AuthCodeData
[src]

Optional. AuthCodeData contains the data the runtime requires to exchange for access and refresh tokens. If the data is not provided, the runtime will read the data from the secret manager.

§
executionConfig?: ExecutionConfig
[src]

ExecutionConfig contains the configuration for the execution of the request.

§
oauth2Config?: OAuth2Config
[src]

OAuth2Config contains the OAuth2 config for the connection.