UpdateUserPassword

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
val currentPassword: String? = null

The current sha1-hashed password.

Link copied to clipboard
val currentPw: String? = null

The current plain text password.

Link copied to clipboard
val newPw: String? = null

The new plain text password.

Link copied to clipboard

A value indicating whether to reset the password.