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

Factor

A MFA factor.

interface Factor {
created_at: string;
factor_type: "totp" | string;
friendly_name?: string;
id: string;
status: "verified" | "unverified";
updated_at: string;
}

§Properties

§
created_at: string
[src]
§
factor_type: "totp" | string
[src]

Type of factor. Only totp supported with this version but may change in future versions.

§
friendly_name?: string
[src]

Friendly name of the factor, useful to disambiguate between multiple factors.

§
id: string
[src]

ID of the factor.

§
status: "verified" | "unverified"
[src]

Factor's status.

§
updated_at: string
[src]