AMREntry
An authentication methord reference (AMR) entry.
An entry designates what method was used by the user to verify their identity and at what time.
interface AMREntry {
method:
| "password"
| "otp"
| "oauth"
| "mfa/totp"
| (string & {});
timestamp: number;
}