You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The vaddr of the destination where the execution flow continues from
Example
fromrevengai.models.function_block_destination_responseimportFunctionBlockDestinationResponse# TODO update the JSON string belowjson="{}"# create an instance of FunctionBlockDestinationResponse from a JSON stringfunction_block_destination_response_instance=FunctionBlockDestinationResponse.from_json(json)
# print the JSON string representation of the objectprint(FunctionBlockDestinationResponse.to_json())
# convert the object into a dictfunction_block_destination_response_dict=function_block_destination_response_instance.to_dict()
# create an instance of FunctionBlockDestinationResponse from a dictfunction_block_destination_response_from_dict=FunctionBlockDestinationResponse.from_dict(function_block_destination_response_dict)