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

UserInfo

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

Template for an individual account info.

interface UserInfo {
createdAt?: bigint;
customAttributes?: string;
customAuth?: boolean;
disabled?: boolean;
displayName?: string;
email?: string;
emailVerified?: boolean;
lastLoginAt?: bigint;
localId?: string;
passwordHash?: Uint8Array;
passwordUpdatedAt?: number;
phoneNumber?: string;
photoUrl?: string;
providerUserInfo?: {
displayName?: string;
email?: string;
federatedId?: string;
phoneNumber?: string;
photoUrl?: string;
providerId?: string;
rawId?: string;
screenName?: string;
}
[]
;
rawPassword?: string;
salt?: Uint8Array;
screenName?: string;
validSince?: bigint;
version?: number;
}

§Properties

§
createdAt?: bigint
[src]

User creation timestamp.

§
customAttributes?: string
[src]

The custom attributes to be set in the user's id token.

§
customAuth?: boolean
[src]

Whether the user is authenticated by the developer.

§
disabled?: boolean
[src]

Whether the user is disabled.

§
displayName?: string
[src]

The name of the user.

§
email?: string
[src]

The email of the user.

§
emailVerified?: boolean
[src]

Whether the email has been verified.

§
lastLoginAt?: bigint
[src]

last login timestamp.

§
localId?: string
[src]

The local ID of the user.

§
passwordHash?: Uint8Array
[src]

The user's hashed password.

§
passwordUpdatedAt?: number
[src]

The timestamp when the password was last updated.

§
phoneNumber?: string
[src]

User's phone number.

§
photoUrl?: string
[src]

The URL of the user profile photo.

§
providerUserInfo?: {
displayName?: string;
email?: string;
federatedId?: string;
phoneNumber?: string;
photoUrl?: string;
providerId?: string;
rawId?: string;
screenName?: string;
}
[]
[src]

The IDP of the user.

§
rawPassword?: string
[src]

The user's plain text password.

§
salt?: Uint8Array
[src]

The user's password salt.

§
screenName?: string
[src]

User's screen name at Twitter or login name at Github.

§
validSince?: bigint
[src]

Timestamp in seconds for valid login token.

§
version?: number
[src]

Version of the user's password.