SignUpUpdateParams

sealed interface SignUpUpdateParams

Parameters for updating an existing sign-up with additional information. These parameters mirror the create parameters and allow modification of sign-up data.

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) : 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.