ImportHumanUserResponse constructor

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

Implementation

factory ImportHumanUserResponse({
  $core.String? userId,
  $2.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;
}