Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

GenerationStatusList

Properties

Name Type Description Notes
total_count int Total number of functions in analysis [optional] [default to 0]
total_data_types_count int Total number of functions with data types [optional] [default to 0]
items List[FunctionDataTypesStatus] List of function data types information

Example

from revengai.models.generation_status_list import GenerationStatusList

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

# convert the object into a dict
generation_status_list_dict = generation_status_list_instance.to_dict()
# create an instance of GenerationStatusList from a dict
generation_status_list_from_dict = GenerationStatusList.from_dict(generation_status_list_dict)

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