Interface RecoveryCodeAuthenticationMethod

interface RecoveryCodeAuthenticationMethod {
    confirmed: boolean;
    created_at: string;
    id: string;
    last_auth_at?: string;
    type: "recovery-code";
    usage: ("primary" | "secondary")[];
}

Hierarchy

  • Omit<AuthenticationMethodWithMetadata, "name">
    • RecoveryCodeAuthenticationMethod

Properties

confirmed: boolean
created_at: string
id: string
last_auth_at?: string
type: "recovery-code"
usage: ("primary" | "secondary")[]