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

GoogleCloudIntegrationsV1alphaAccessToken

import type { GoogleCloudIntegrationsV1alphaAccessToken } from "https://googleapis.deno.dev/v1/integrations:v1.ts";

The access token represents the authorization of a specific application to access specific parts of a user’s data.

interface GoogleCloudIntegrationsV1alphaAccessToken {
accessToken?: string;
accessTokenExpireTime?: Date;
refreshToken?: string;
refreshTokenExpireTime?: Date;
tokenType?: string;
}

§Properties

§
accessToken?: string
[src]

The access token encapsulating the security identity of a process or thread.

§
accessTokenExpireTime?: Date
[src]

Required. The approximate time until the access token retrieved is valid.

§
refreshToken?: string
[src]

If the access token will expire, use the refresh token to obtain another access token.

§
refreshTokenExpireTime?: Date
[src]

The approximate time until the refresh token retrieved is valid.

§
tokenType?: string
[src]

Only support "bearer" token in v1 as bearer token is the predominant type used with OAuth 2.0.