Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

File metadata and controls

30 lines (21 loc) · 1.24 KB

ListImportedFunctionsOutputBody

Properties

Name Type Description Notes
imported_functions List[ImportedFunctionEntry]
total_count int Total imported functions for the binary, ignoring pagination.

Example

from revengai.models.list_imported_functions_output_body import ListImportedFunctionsOutputBody

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

# convert the object into a dict
list_imported_functions_output_body_dict = list_imported_functions_output_body_instance.to_dict()
# create an instance of ListImportedFunctionsOutputBody from a dict
list_imported_functions_output_body_from_dict = ListImportedFunctionsOutputBody.from_dict(list_imported_functions_output_body_dict)

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