Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.03 KB

File metadata and controls

42 lines (33 loc) · 2.03 KB

FunctionMappingFull

Properties

Name Type Description Notes
inverse_string_map Dict[str, InverseStringMapItem]
inverse_function_map Dict[str, InverseFunctionMapItem]
unmatched_functions Dict[str, InverseValue]
unmatched_custom_types Dict[str, InverseValue]
unmatched_strings Dict[str, InverseValue]
unmatched_vars Dict[str, InverseValue]
unmatched_go_to_labels Dict[str, InverseValue]
unmatched_custom_function_pointers Dict[str, InverseValue]
unmatched_variadic_lists Dict[str, InverseValue]
unmatched_enums Dict[str, InverseValue]
unmatched_global_vars Dict[str, InverseValue]
fields Dict[str, Dict[str, InverseValue]]
unmatched_external_vars Dict[str, InverseValue] No longer provided. [optional]
user_override_mappings Dict[str, str] [optional]

Example

from revengai.models.function_mapping_full import FunctionMappingFull

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

# convert the object into a dict
function_mapping_full_dict = function_mapping_full_instance.to_dict()
# create an instance of FunctionMappingFull from a dict
function_mapping_full_from_dict = FunctionMappingFull.from_dict(function_mapping_full_dict)

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