Standard

@Serializable
data class Standard(val emailAddress: String? = null, val password: String? = null, val firstName: String? = null, val lastName: String? = null, val username: String? = null, val phoneNumber: String? = null) : SignUp.SignUpUpdateParams

Standard sign-up update strategy, allowing the user to provide common details such as email, password, and personal information. The update parameters are just a mirror of the create parameters.

Parameters

emailAddress

The user's email address (optional).

password

The user's password (optional).

firstName

The user's first name (optional).

lastName

The user's last name (optional).

username

The user's username (optional).

phoneNumber

The user's phone number in E.164 format (optional).

Constructors

Link copied to clipboard
constructor(emailAddress: String? = null, password: String? = null, firstName: String? = null, lastName: String? = null, username: String? = null, phoneNumber: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "email_address")
val emailAddress: String? = null
Link copied to clipboard
@SerialName(value = "first_name")
val firstName: String? = null
Link copied to clipboard
@SerialName(value = "last_name")
val lastName: String? = null
Link copied to clipboard
val password: String? = null
Link copied to clipboard
@SerialName(value = "phone_number")
val phoneNumber: String? = null
Link copied to clipboard
val username: String? = null