RemoveHumanLinkedIDPRequest constructor
Implementation
factory RemoveHumanLinkedIDPRequest({
$core.String? userId,
$core.String? idpId,
$core.String? linkedUserId,
}) {
final $result = create();
if (userId != null) {
$result.userId = userId;
}
if (idpId != null) {
$result.idpId = idpId;
}
if (linkedUserId != null) {
$result.linkedUserId = linkedUserId;
}
return $result;
}