ImportHumanUserResponse constructor

ImportHumanUserResponse({
  1. String? userId,
  2. ObjectDetails? details,
  3. ImportHumanUserResponse_PasswordlessRegistration? passwordlessRegistration,
})

Implementation

factory ImportHumanUserResponse({
  $core.String? userId,
  $7.ObjectDetails? details,
  ImportHumanUserResponse_PasswordlessRegistration? passwordlessRegistration,
}) {
  final _result = create();
  if (userId != null) {
    _result.userId = userId;
  }
  if (details != null) {
    _result.details = details;
  }
  if (passwordlessRegistration != null) {
    _result.passwordlessRegistration = passwordlessRegistration;
  }
  return _result;
}