Describes a configured identifier field (e.g. email, phone, or username)
for use in a signup form or authentication flow.
Example
export interface Identifier { /** * The type of identifier, such as `'email'`, `'phone'`, or `'username'`. * * @see IdentifierType */ type: IdentifierType; /** * Whether this identifier is required for signup. */ required: boolean;}