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

GenerateAccessTokenResponse

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

Response message for generating an EUC for the instance owner.

interface GenerateAccessTokenResponse {
access_token?: string;
expires_in?: number;
scope?: string;
token_type?: string;
}

§Properties

§
access_token?: string
[src]

Short-lived access token string which may be used to access Google APIs.

§
expires_in?: number
[src]

The time in seconds when the access token expires. Typically that's 3600.

§
scope?: string
[src]

Space-separated list of scopes contained in the returned token. https://cloud.google.com/docs/authentication/token-types#access-contents

§
token_type?: string
[src]

Type of the returned access token (e.g. "Bearer"). It specifies how the token must be used. Bearer tokens may be used by any entity without proof of identity.