Skip to content

Latest commit

History

History
30 lines (21 loc) · 958 Bytes

File metadata and controls

30 lines (21 loc) · 958 Bytes

AnalysisLogMessage

Properties

NameTypeDescriptionNotes
messagestr
timestr

Example

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]