Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

AnalysisCreateResponse

Properties

Name Type Description Notes
analysis_id int ID of created analysis
binary_id int ID of created binary

Example

from revengai.models.analysis_create_response import AnalysisCreateResponse

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

# convert the object into a dict
analysis_create_response_dict = analysis_create_response_instance.to_dict()
# create an instance of AnalysisCreateResponse from a dict
analysis_create_response_from_dict = AnalysisCreateResponse.from_dict(analysis_create_response_dict)

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