Skip to content

Latest commit

History

History
34 lines (25 loc) · 1.34 KB

File metadata and controls

34 lines (25 loc) · 1.34 KB

FunctionBlockResponse

Properties

NameTypeDescriptionNotes
asmList[str]The ordered assembly strings for this chunk
idintID of the block
min_addrintThe minimum vaddr of the block
max_addrintThe maximum vaddr of the block
destinationsList[FunctionBlockDestinationResponse]The potential execution flow destinations from this block
commentstr[optional]

Example

fromrevengai.models.function_block_responseimportFunctionBlockResponse# TODO update the JSON string belowjson="{}"# create an instance of FunctionBlockResponse from a JSON stringfunction_block_response_instance=FunctionBlockResponse.from_json(json)
# print the JSON string representation of the objectprint(FunctionBlockResponse.to_json())
# convert the object into a dictfunction_block_response_dict=function_block_response_instance.to_dict()
# create an instance of FunctionBlockResponse from a dictfunction_block_response_from_dict=FunctionBlockResponse.from_dict(function_block_response_dict)

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