| Name | Type | Description | Notes |
|---|---|---|---|
| asm | List[str] | The ordered assembly strings for this chunk | |
| id | int | ID of the block | |
| min_addr | int | The minimum vaddr of the block | |
| max_addr | int | The maximum vaddr of the block | |
| destinations | List[FunctionBlockDestinationResponse] | The potential execution flow destinations from this block | |
| comment | str | [optional] |
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)