Response for returning disassembly of a function.
| Name | Type | Description | Notes |
|---|---|---|---|
| blocks | List[FunctionBlockResponse] | Disassembly is broken into control flow blocks | |
| local_variables | List[FunctionLocalVariableResponse] | Local variables associated with this function | |
| params | List[FunctionParamResponse] | Params associated with this function | |
| overview_comment | str | [optional] |
fromrevengai.models.function_blocks_responseimportFunctionBlocksResponse# TODO update the JSON string belowjson="{}"# create an instance of FunctionBlocksResponse from a JSON stringfunction_blocks_response_instance=FunctionBlocksResponse.from_json(json)
# print the JSON string representation of the objectprint(FunctionBlocksResponse.to_json())
# convert the object into a dictfunction_blocks_response_dict=function_blocks_response_instance.to_dict()
# create an instance of FunctionBlocksResponse from a dictfunction_blocks_response_from_dict=FunctionBlocksResponse.from_dict(function_blocks_response_dict)