{
    "Function": "decreaseRedeemRequest",
    "File": "src/InvestmentManager.sol",
    "Parent Contracts": [
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [
        "LiquidityPoolLike",
        "PoolManagerLike",
        "GatewayLike",
        "LiquidityPoolLike",
        "LiquidityPoolLike",
        "LiquidityPoolLike"
    ],
    "Internal Calls": [
        "_toUint128",
        "require(bool,string)",
        "auth"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function decreaseRedeemRequest(uint256 _trancheTokenAmount, address user) public auth {\n        uint128 trancheTokenAmount = _toUint128(_trancheTokenAmount);\n        LiquidityPoolLike liquidityPool = LiquidityPoolLike(msg.sender);\n        require(liquidityPool.checkTransferRestriction(address(0), user, 0), \"InvestmentManager/not-a-member\");\n        gateway.decreaseRedeemOrder(\n            liquidityPool.poolId(),\n            liquidityPool.trancheId(),\n            user,\n            poolManager.currencyAddressToId(liquidityPool.asset()),\n            trancheTokenAmount\n        );\n    }"
}