Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

FunctionBlockDestinationResponse

Properties

NameTypeDescriptionNotes
destination_block_idint
flowtypestrThe type of execution flow between chunks
vaddrstrThe 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)

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