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

NameTypeDescriptionNotes
analysis_idintThe ID corresponding to the checked status
analysis_statusstrThe status of the checked analysis

Example

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]