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

EmailLinkSigninResponse

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

Response of email signIn.

interface EmailLinkSigninResponse {
email?: string;
expiresIn?: bigint;
idToken?: string;
isNewUser?: boolean;
kind?: string;
localId?: string;
refreshToken?: string;
}

§Properties

§
email?: string
[src]

The user's email.

§
expiresIn?: bigint
[src]

Expiration time of STS id token in seconds.

§
idToken?: string
[src]

The STS id token to login the newly signed in user.

§
isNewUser?: boolean
[src]

Whether the user is new.

§
kind?: string
[src]

The fixed string "identitytoolkit#EmailLinkSigninResponse".

§
localId?: string
[src]

The RP local ID of the user.

§
refreshToken?: string
[src]

The refresh token for the signed in user.