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

NameTypeDescriptionNotes
analysis_idintID of created analysis
binary_idintID of created binary

Example

fromrevengai.models.analysis_create_responseimportAnalysisCreateResponse# TODO update the JSON string belowjson="{}"# create an instance of AnalysisCreateResponse from a JSON stringanalysis_create_response_instance=AnalysisCreateResponse.from_json(json)
# print the JSON string representation of the objectprint(AnalysisCreateResponse.to_json())
# convert the object into a dictanalysis_create_response_dict=analysis_create_response_instance.to_dict()
# create an instance of AnalysisCreateResponse from a dictanalysis_create_response_from_dict=AnalysisCreateResponse.from_dict(analysis_create_response_dict)

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