Get Random Password Result
data class GetRandomPasswordResult(val excludeCharacters: String? = null, val excludeLowercase: Boolean? = null, val excludeNumbers: Boolean? = null, val excludePunctuation: Boolean? = null, val excludeUppercase: Boolean? = null, val id: String, val includeSpace: Boolean? = null, val passwordLength: Int? = null, val randomPassword: String, val requireEachIncludedType: Boolean? = null)
A collection of values returned by getRandomPassword.
Constructors
Link copied to clipboard
constructor(excludeCharacters: String? = null, excludeLowercase: Boolean? = null, excludeNumbers: Boolean? = null, excludePunctuation: Boolean? = null, excludeUppercase: Boolean? = null, id: String, includeSpace: Boolean? = null, passwordLength: Int? = null, randomPassword: String, requireEachIncludedType: Boolean? = null)