Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

AnalysisLogEntry

Properties

NameTypeDescriptionNotes
levelstrSeverity
sourcestrComponent that emitted the line
textstrLog line text
timestampdatetimeWhen the line was emitted (UTC)

Example

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]