ResetByExistingPasswordParameters

data class ResetByExistingPasswordParameters(    val organizationId: String,     val emailAddress: String,     val existingPassword: String,     val newPassword: String,     val sessionDurationMinutes: UInt = Constants.DEFAULT_SESSION_TIME_MINUTES)

Data class used for wrapping parameters used with Passwords StrengthCheck endpoint

Constructors

Link copied to clipboard
fun ResetByExistingPasswordParameters(    organizationId: String,     emailAddress: String,     existingPassword: String,     newPassword: String,     sessionDurationMinutes: UInt = Constants.DEFAULT_SESSION_TIME_MINUTES)

Properties

Link copied to clipboard
val emailAddress: String

is the member's email address

Link copied to clipboard
val existingPassword: String
Link copied to clipboard
val newPassword: String
Link copied to clipboard
val organizationId: String

is the member's organization ID

Link copied to clipboard
val sessionDurationMinutes: UInt