{
    "Function": "updateLockTimestamp",
    "File": "contracts/NestedRecords.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "onlyFactory"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function updateLockTimestamp(uint256 _nftId, uint256 _timestamp) external onlyFactory {\n        require(\n            _timestamp > records[_nftId].lockTimestamp,\n            \"NestedRecords::increaseLockTimestamp: Can't decrease timestamp\"\n        );\n        records[_nftId].lockTimestamp = _timestamp;\n        emit LockTimestampIncreased(_nftId, _timestamp);\n    }"
}