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

SignupNewUserResponse

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

Response of signing up new user, creating anonymous user or anonymous user reauth.

interface SignupNewUserResponse {
displayName?: string;
email?: string;
expiresIn?: bigint;
idToken?: string;
kind?: string;
localId?: string;
refreshToken?: string;
}

§Properties

§
displayName?: string
[src]

The name of the user.

§
email?: string
[src]

The email of the user.

§
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#SignupNewUserResponse".

§
localId?: string
[src]

The RP local ID of the user.

§
refreshToken?: string
[src]

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