SignUpUpdateParams

sealed interface SignUpUpdateParams

Inheritors

Types

Link copied to clipboard
@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, val legalAccepted: Boolean? = 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.