Type alias CredentialFlags

CredentialFlags: {
    backupEligible: boolean;
    backupState: boolean;
    userPresent: boolean;
    userVerified: boolean;
}

Flags associated with a credential

Type declaration

  • backupEligible: boolean

    Indicates the credential is able to be backed up and/or sync'd between devices. This should NEVER change.

  • backupState: boolean

    Indicates the credential has been backed up and/or sync'd. This value can change but it's recommended that RP's keep track of this value.

  • userPresent: boolean

    Indicates the users presence.

  • userVerified: boolean

    Indicates the user performed verification.

Generated using TypeDoc