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

Factor

A MFA factor.

type Factor<Type extends FactorType = FactorType, Status extends FactorVerificationStatus = (FactorVerificationStatuses)[number]> = {
id: string;
friendly_name?: string;
factor_type: Type;
status: Status;
created_at: string;
updated_at: string;
}
;

§Type Parameters

§
Status extends FactorVerificationStatus = (FactorVerificationStatuses)[number]
[src]

§Type

§
{
id: string;
friendly_name?: string;
factor_type: Type;
status: Status;
created_at: string;
updated_at: string;
}
[src]