| Name | Type | Description | Notes |
|---|
| message | str | | |
| time | str | | |
fromrevengai.models.analysis_log_messageimportAnalysisLogMessage# TODO update the JSON string belowjson="{}"# create an instance of AnalysisLogMessage from a JSON stringanalysis_log_message_instance=AnalysisLogMessage.from_json(json)
# print the JSON string representation of the objectprint(AnalysisLogMessage.to_json())
# convert the object into a dictanalysis_log_message_dict=analysis_log_message_instance.to_dict()
# create an instance of AnalysisLogMessage from a dictanalysis_log_message_from_dict=AnalysisLogMessage.from_dict(analysis_log_message_dict)[Back to Model list][Back to API list][Back to README]