Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

AIDecompInverseStringMapItem

Properties

Name Type Description Notes
addr NumericAddr
string str

Example

from revengai.models.ai_decomp_inverse_string_map_item import AIDecompInverseStringMapItem

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

# convert the object into a dict
ai_decomp_inverse_string_map_item_dict = ai_decomp_inverse_string_map_item_instance.to_dict()
# create an instance of AIDecompInverseStringMapItem from a dict
ai_decomp_inverse_string_map_item_from_dict = AIDecompInverseStringMapItem.from_dict(ai_decomp_inverse_string_map_item_dict)

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