@beyondidentity/bi-sdk-react-native
    Preparing search index...

    Interface PasskeyIdentity

    Identity information associated with a Passkey. An Identity is a unique identifier that may be used by an end-user to gain access governed by Beyond Identity. An Identity is created at the Realm level. An end-user may have multiple identities. A Realm can have many Identities.

    interface PasskeyIdentity {
        displayName?: string;
        emailAddress?: string;
        externalId?: string;
        id: string;
        username: string;
    }
    Index

    Properties

    displayName?: string

    The display name of the identity.

    emailAddress?: string

    The primary email address of the identity.

    externalId?: string

    The external Id address of the identity.

    id: string

    The unique identifier of the identity..

    username: string

    The username of the identity.