| Name | Type | Description | Notes |
|---|
| analysis_id | int | The ID corresponding to the checked status | |
| analysis_status | str | The status of the checked analysis | |
fromrevengai.models.status_outputimportStatusOutput# TODO update the JSON string belowjson="{}"# create an instance of StatusOutput from a JSON stringstatus_output_instance=StatusOutput.from_json(json)
# print the JSON string representation of the objectprint(StatusOutput.to_json())
# convert the object into a dictstatus_output_dict=status_output_instance.to_dict()
# create an instance of StatusOutput from a dictstatus_output_from_dict=StatusOutput.from_dict(status_output_dict)[Back to Model list][Back to API list][Back to README]