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
§
Type extends FactorType = FactorType
[src]