MonoCloud Management SDK
    Preparing search index...

    User Passkey: Represents a registered passkey used for passwordless authentication by the user.

    UserPasskey

    interface UserPasskey {
        aa_guid: string;
        backup_eligibility: boolean;
        backup_state: boolean;
        name?: string | null;
        passkey_id: string;
        public_key: string;
        user_agent: string;
        user_present: boolean;
        user_verified: boolean;
    }
    Index

    Properties

    aa_guid: string

    Authenticator Attestation GUID (AAGUID) identifying the authenticator model.

    UserPasskey

    backup_eligibility: boolean

    Indicates whether the passkey is eligible for backup and multi-device use.

    UserPasskey

    backup_state: boolean

    Indicates whether the passkey is currently backed up by the authenticator.

    UserPasskey

    name?: string | null

    Human-readable name assigned to the passkey.

    UserPasskey

    passkey_id: string

    Unique identifier of the passkey as provided by the authenticator.

    UserPasskey

    public_key: string

    Public key material associated with the passkey.

    UserPasskey

    user_agent: string

    User agent of the device used to register the passkey.

    UserPasskey

    user_present: boolean

    Indicates whether user presence was verified during passkey authentication.

    UserPasskey

    user_verified: boolean

    Indicates whether user verification (such as biometrics or PIN) was performed during authentication.

    UserPasskey