IDPUserLink constructor
IDPUserLink({})
Implementation
factory IDPUserLink({
$core.String? userId,
$core.String? idpId,
$core.String? idpName,
$core.String? providedUserId,
$core.String? providedUserName,
IDPType? idpType,
}) {
final $result = create();
if (userId != null) {
$result.userId = userId;
}
if (idpId != null) {
$result.idpId = idpId;
}
if (idpName != null) {
$result.idpName = idpName;
}
if (providedUserId != null) {
$result.providedUserId = providedUserId;
}
if (providedUserName != null) {
$result.providedUserName = providedUserName;
}
if (idpType != null) {
$result.idpType = idpType;
}
return $result;
}