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

GetOobConfirmationCodeResponse

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

Response of getting a code for user confirmation (reset password, change email etc.).

interface GetOobConfirmationCodeResponse {
email?: string;
kind?: string;
oobCode?: string;
}

§Properties

§
email?: string
[src]

The email address that the email is sent to.

§
kind?: string
[src]

The fixed string "identitytoolkit#GetOobConfirmationCodeResponse".

§
oobCode?: string
[src]

The code to be send to the user.