Interface WebAuthnRoamingAuthenticationMethod

interface WebAuthnRoamingAuthenticationMethod {
    confirmed: boolean;
    created_at: string;
    id: string;
    key_id?: string;
    last_auth_at?: string;
    name?: string;
    public_key?: string;
    type: "webauthn-roaming";
    usage: ("primary" | "secondary")[];
}

Hierarchy

  • WebAuthnAuthenticationMethodBase
    • WebAuthnRoamingAuthenticationMethod

Properties

confirmed: boolean
created_at: string
id: string
key_id?: string
last_auth_at?: string
name?: string
public_key?: string
type: "webauthn-roaming"
usage: ("primary" | "secondary")[]