UpdateCustomPasswordComplexityPolicyRequest constructor

UpdateCustomPasswordComplexityPolicyRequest({
  1. Int64? minLength,
  2. bool? hasUppercase,
  3. bool? hasLowercase,
  4. bool? hasNumber,
  5. bool? hasSymbol,
})

Implementation

factory UpdateCustomPasswordComplexityPolicyRequest({
  $fixnum.Int64? 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;
}