SignInIdentifierBuilder

Builder for sign-in with identifier.

Use this builder to specify the identifier for starting a sign-in flow. Only one of email, phone, or username should be set.

Example usage:

clerk.auth.signIn { email = "user@email.com" }
// or
clerk.auth.signIn { phone = "+1234567890" }
// or
clerk.auth.signIn { username = "johndoe" }

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard

The email address to sign in with.

Link copied to clipboard

The phone number to sign in with.

Link copied to clipboard

The username to sign in with.