@auth0/auth0-acul-react - v1.0.0
    Preparing search index...

    Interface Identifier

    Describes a configured identifier field (e.g. email, phone, or username) for use in a signup form or authentication flow.

    const emailIdentifier: Identifier = {
    type: 'email',
    required: true
    };
    interface Identifier {
        type: ScreenIdentifierType;
        required: boolean;
    }
    Index

    Properties

    Properties

    The type of identifier, such as 'email', 'phone', or 'username'.

    IdentifierType

    required: boolean

    Whether this identifier is required for signup.