Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.41 KB

File metadata and controls

33 lines (24 loc) · 1.41 KB

FunctionBlocksResponse

Response for returning disassembly of a function.

Properties

NameTypeDescriptionNotes
blocksList[FunctionBlockResponse]Disassembly is broken into control flow blocks
local_variablesList[FunctionLocalVariableResponse]Local variables associated with this function
paramsList[FunctionParamResponse]Params associated with this function
overview_commentstr[optional]

Example

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)

[Back to Model list][Back to API list][Back to README]