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

VerifyCustomTokenResponse

import type { VerifyCustomTokenResponse } from "https://googleapis.deno.dev/v1/identitytoolkit:v3.ts";

Response from verifying a custom token

interface VerifyCustomTokenResponse {
expiresIn?: bigint;
idToken?: string;
isNewUser?: boolean;
kind?: string;
refreshToken?: string;
}

§Properties

§
expiresIn?: bigint
[src]

If idToken is STS id token, then this field will be expiration time of STS id token in seconds.

§
idToken?: string
[src]

The GITKit token for authenticated user.

§
isNewUser?: boolean
[src]

True if it's a new user sign-in, false if it's a returning user.

§
kind?: string
[src]

The fixed string "identitytoolkit#VerifyCustomTokenResponse".

§
refreshToken?: string
[src]

If idToken is STS id token, then this field will be refresh token.