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

VerifyPasswordResponse

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

Request of verifying the password.

interface VerifyPasswordResponse {
displayName?: string;
email?: string;
expiresIn?: bigint;
idToken?: string;
kind?: string;
localId?: string;
oauthAccessToken?: string;
oauthAuthorizationCode?: string;
oauthExpireIn?: number;
photoUrl?: string;
refreshToken?: string;
registered?: boolean;
}

§Properties

§
displayName?: string
[src]

The name of the user.

§
email?: string
[src]

The email returned by the IdP. NOTE: The federated login user may not own the email.

§
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.

§
kind?: string
[src]

The fixed string "identitytoolkit#VerifyPasswordResponse".

§
localId?: string
[src]

The RP local ID if it's already been mapped to the IdP account identified by the federated ID.

§
oauthAccessToken?: string
[src]

The OAuth2 access token.

§
oauthAuthorizationCode?: string
[src]

The OAuth2 authorization code.

§
oauthExpireIn?: number
[src]

The lifetime in seconds of the OAuth2 access token.

§
photoUrl?: string
[src]

The URI of the user's photo at IdP

§
refreshToken?: string
[src]

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

§
registered?: boolean
[src]

Whether the email is registered.