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

SetAccountInfoResponse

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

Respone of setting the account information.

interface SetAccountInfoResponse {
displayName?: string;
email?: string;
emailVerified?: boolean;
expiresIn?: bigint;
idToken?: string;
kind?: string;
localId?: string;
newEmail?: string;
passwordHash?: Uint8Array;
photoUrl?: string;
providerUserInfo?: {
displayName?: string;
federatedId?: string;
photoUrl?: string;
providerId?: string;
}
[]
;
refreshToken?: string;
}

§Properties

§
displayName?: string
[src]

The name of the user.

§
email?: string
[src]

The email of the user.

§
emailVerified?: boolean
[src]

If email has been verified.

§
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 id token to login the newly sign up user.

§
kind?: string
[src]

The fixed string "identitytoolkit#SetAccountInfoResponse".

§
localId?: string
[src]

The local ID of the user.

§
newEmail?: string
[src]

The new email the user attempts to change to.

§
passwordHash?: Uint8Array
[src]

The user's hashed password.

§
photoUrl?: string
[src]

The photo url of the user.

§
providerUserInfo?: {
displayName?: string;
federatedId?: string;
photoUrl?: string;
providerId?: string;
}
[]
[src]

The user's profiles at the associated IdPs.

§
refreshToken?: string
[src]

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