{
    "Function": "decreaseRedeemOrder",
    "File": "src/gateway/Gateway.sol",
    "Parent Contracts": [
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [
        "Messages",
        "RouterLike"
    ],
    "Internal Calls": [
        "_addressToBytes32",
        "onlyInvestmentManager",
        "pauseable"
    ],
    "Library Calls": [
        "formatDecreaseRedeemOrder"
    ],
    "Low-Level Calls": [],
    "Code": "function decreaseRedeemOrder(\n        uint64 poolId,\n        bytes16 trancheId,\n        address investor,\n        uint128 currency,\n        uint128 trancheTokenAmount\n    ) public onlyInvestmentManager pauseable {\n        outgoingRouter.send(\n            Messages.formatDecreaseRedeemOrder(\n                poolId, trancheId, _addressToBytes32(investor), currency, trancheTokenAmount\n            )\n        );\n    }"
}