ImportHumanUserRequest_IDP constructor
Implementation
factory ImportHumanUserRequest_IDP({
$core.String? configId,
$core.String? externalUserId,
$core.String? displayName,
}) {
final result = create();
if (configId != null) result.configId = configId;
if (externalUserId != null) result.externalUserId = externalUserId;
if (displayName != null) result.displayName = displayName;
return result;
}