ResetPasswordParams

@Serializable
data class ResetPasswordParams(val password: String, val signOutOfOtherSessions: Boolean = false)

Parameters for resetting a user's password during the sign-in process.

Constructors

Link copied to clipboard
constructor(password: String, signOutOfOtherSessions: Boolean = false)

Properties

Link copied to clipboard

The new password to set for the user.

Link copied to clipboard
@SerialName(value = "sign_out_of_other_sessions")
val signOutOfOtherSessions: Boolean

Whether to sign out of all other sessions when the password is reset.