Interface WebAuthnPlatformAuthenticationMethod

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

Hierarchy

  • WebAuthnAuthenticationMethodBase
    • WebAuthnPlatformAuthenticationMethod

Properties

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