PasswordPolicy

@JsonSerializable
data class PasswordPolicy(val MinimumLength: Int? = null, val RequireLowercase: Boolean? = null, val RequireNumbers: Boolean? = null, val RequireSymbols: Boolean? = null, val RequireUppercase: Boolean? = null, val TemporaryPasswordValidityDays: Int? = null)

Constructors

Link copied to clipboard
constructor(MinimumLength: Int? = null, RequireLowercase: Boolean? = null, RequireNumbers: Boolean? = null, RequireSymbols: Boolean? = null, RequireUppercase: Boolean? = null, TemporaryPasswordValidityDays: Int? = null)

Properties

Link copied to clipboard
val MinimumLength: Int? = null
Link copied to clipboard
Link copied to clipboard
val RequireNumbers: Boolean? = null
Link copied to clipboard
val RequireSymbols: Boolean? = null
Link copied to clipboard
Link copied to clipboard