UpdatePasswordComplexityPolicyRequest constructor
UpdatePasswordComplexityPolicyRequest({})
Implementation
factory UpdatePasswordComplexityPolicyRequest({
$core.int? minLength,
$core.bool? hasUppercase,
$core.bool? hasLowercase,
$core.bool? hasNumber,
$core.bool? hasSymbol,
}) {
final result = create();
if (minLength != null) result.minLength = minLength;
if (hasUppercase != null) result.hasUppercase = hasUppercase;
if (hasLowercase != null) result.hasLowercase = hasLowercase;
if (hasNumber != null) result.hasNumber = hasNumber;
if (hasSymbol != null) result.hasSymbol = hasSymbol;
return result;
}