| Name | Type | Description | Notes |
|---|
| level | str | Severity | |
| source | str | Component that emitted the line | |
| text | str | Log line text | |
| timestamp | datetime | When the line was emitted (UTC) | |
fromrevengai.models.analysis_log_entryimportAnalysisLogEntry# TODO update the JSON string belowjson="{}"# create an instance of AnalysisLogEntry from a JSON stringanalysis_log_entry_instance=AnalysisLogEntry.from_json(json)
# print the JSON string representation of the objectprint(AnalysisLogEntry.to_json())
# convert the object into a dictanalysis_log_entry_dict=analysis_log_entry_instance.to_dict()
# create an instance of AnalysisLogEntry from a dictanalysis_log_entry_from_dict=AnalysisLogEntry.from_dict(analysis_log_entry_dict)[Back to Model list][Back to API list][Back to README]