ImportHumanUserResponse constructor
ImportHumanUserResponse({
- String? userId,
- ObjectDetails? details,
- 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;
}