{
    "Function": "setProposal",
    "File": "contracts/mocks/MockVoteStorage.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setProposal(\n        uint256 choice,\n        uint256 timestamp,\n        string memory version,\n        string memory proposal,\n        string memory space,\n        string memory voteType\n    ) external {\n        Vote memory vote = Vote(timestamp, choice, version, space, voteType);\n        proposals[proposal] = vote;\n    }"
}