UpdateUserPassword

@Serializable
data class UpdateUserPassword(val currentPassword: String? = null, val currentPw: String? = null, val newPw: String? = null, val resetPassword: Boolean)

The update user password request body.

Constructors

Link copied to clipboard
constructor(currentPassword: String? = null, currentPw: String? = null, newPw: String? = null, resetPassword: Boolean)

Properties

Link copied to clipboard
@SerialName(value = "CurrentPassword")
val currentPassword: String?

The current sha1-hashed password.

Link copied to clipboard
@SerialName(value = "CurrentPw")
val currentPw: String?

The current plain text password.

Link copied to clipboard
@SerialName(value = "NewPw")
val newPw: String?

The new plain text password.

Link copied to clipboard
@SerialName(value = "ResetPassword")
val resetPassword: Boolean

A value indicating whether to reset the password.