Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 965 Bytes

File metadata and controls

30 lines (21 loc) · 965 Bytes

StatusOutput

Properties

Name Type Description Notes
analysis_id int The ID corresponding to the checked status
analysis_status str The status of the checked analysis

Example

from revengai.models.status_output import StatusOutput

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

# convert the object into a dict
status_output_dict = status_output_instance.to_dict()
# create an instance of StatusOutput from a dict
status_output_from_dict = StatusOutput.from_dict(status_output_dict)

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