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

IdentitytoolkitRelyingpartySetAccountInfoRequest

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

Request to set the account information.

interface IdentitytoolkitRelyingpartySetAccountInfoRequest {
captchaChallenge?: string;
captchaResponse?: string;
createdAt?: bigint;
customAttributes?: string;
delegatedProjectNumber?: bigint;
deleteAttribute?: string[];
deleteProvider?: string[];
disableUser?: boolean;
displayName?: string;
email?: string;
emailVerified?: boolean;
idToken?: string;
instanceId?: string;
lastLoginAt?: bigint;
localId?: string;
oobCode?: string;
password?: string;
phoneNumber?: string;
photoUrl?: string;
provider?: string[];
returnSecureToken?: boolean;
upgradeToFederatedLogin?: boolean;
validSince?: bigint;
}

§Properties

§
captchaChallenge?: string
[src]

The captcha challenge.

§
captchaResponse?: string
[src]

Response to the captcha.

§
createdAt?: bigint
[src]

The timestamp when the account is created.

§
customAttributes?: string
[src]

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

§
delegatedProjectNumber?: bigint
[src]

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration.

§
deleteAttribute?: string[]
[src]

The attributes users request to delete.

§
deleteProvider?: string[]
[src]

The IDPs the user request to delete.

§
disableUser?: boolean
[src]

Whether to disable the user.

§
displayName?: string
[src]

The name of the user.

§
email?: string
[src]

The email of the user.

§
emailVerified?: boolean
[src]

Mark the email as verified or not.

§
idToken?: string
[src]

The GITKit token of the authenticated user.

§
instanceId?: string
[src]

Instance id token of the app.

§
lastLoginAt?: bigint
[src]

Last login timestamp.

§
localId?: string
[src]

The local ID of the user.

§
oobCode?: string
[src]

The out-of-band code of the change email request.

§
password?: string
[src]

The new password of the user.

§
phoneNumber?: string
[src]

Privileged caller can update user with specified phone number.

§
photoUrl?: string
[src]

The photo url of the user.

§
provider?: string[]
[src]

The associated IDPs of the user.

§
returnSecureToken?: boolean
[src]

Whether return sts id token and refresh token instead of gitkit token.

§
upgradeToFederatedLogin?: boolean
[src]

Mark the user to upgrade to federated login.

§
validSince?: bigint
[src]

Timestamp in seconds for valid login token.