Interface TotpAuthenticationMethod

interface TotpAuthenticationMethod {
    confirmed: boolean;
    created_at: string;
    id: string;
    last_auth_at?: string;
    name?: string;
    type: "totp";
    usage: ("primary" | "secondary")[];
}

Hierarchy

  • AuthenticationMethodWithMetadata
    • TotpAuthenticationMethod

Properties

confirmed: boolean
created_at: string
id: string
last_auth_at?: string
name?: string
type: "totp"
usage: ("primary" | "secondary")[]