onvif
    Preparing search index...

    Interface CredentialIdentifier

    A credential identifier is a card number, unique card information, PIN or biometric information such as fingerprint, iris, vein, face recognition, that can be validated in an access point.

    interface CredentialIdentifier {
        exemptedFromAuthentication: boolean;
        type: CredentialIdentifierType;
        value: unknown;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    exemptedFromAuthentication: boolean

    If set to true, this credential identifier is not considered for authentication. For example if the access point requests Card plus PIN, and the credential identifier of type PIN is exempted from authentication, then the access point will not prompt for the PIN.

    Contains the details of the credential identifier type. Is of type CredentialIdentifierType.

    value: unknown

    The value of the identifier in hexadecimal representation.