Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

AIDecompInverseFunctionMapItem

Properties

Name Type Description Notes
addr NumericAddr
is_external bool
name str

Example

from revengai.models.ai_decomp_inverse_function_map_item import AIDecompInverseFunctionMapItem

# TODO update the JSON string below
json = "{}"
# create an instance of AIDecompInverseFunctionMapItem from a JSON string
ai_decomp_inverse_function_map_item_instance = AIDecompInverseFunctionMapItem.from_json(json)
# print the JSON string representation of the object
print(AIDecompInverseFunctionMapItem.to_json())

# convert the object into a dict
ai_decomp_inverse_function_map_item_dict = ai_decomp_inverse_function_map_item_instance.to_dict()
# create an instance of AIDecompInverseFunctionMapItem from a dict
ai_decomp_inverse_function_map_item_from_dict = AIDecompInverseFunctionMapItem.from_dict(ai_decomp_inverse_function_map_item_dict)

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