docs-devsite/auth.multifactorinfo.md
Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
A structure containing the information of a second factor entity.
<b>Signature:</b>
export interface MultiFactorInfo
| Property | Type | Description |
|---|---|---|
| displayName | string | null | The user friendly name of the current second factor. |
| enrollmentTime | string | The enrollment date of the second factor formatted as a UTC string. |
| factorId | (typeof FactorIdMap<!-- -->)[keyof typeof FactorIdMap<!-- -->] | The identifier of the second factor. |
| uid | string | The multi-factor enrollment ID. |
The user friendly name of the current second factor.
<b>Signature:</b>
readonly displayName?: string | null;
The enrollment date of the second factor formatted as a UTC string.
<b>Signature:</b>
readonly enrollmentTime: string;
The identifier of the second factor.
<b>Signature:</b>
readonly factorId: (typeof FactorIdMap)[keyof typeof FactorIdMap];
The multi-factor enrollment ID.
<b>Signature:</b>
readonly uid: string;