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

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)

Example

from revengai.models.analysis_log_entry import AnalysisLogEntry

# TODO update the JSON string below
json = "{}"
# create an instance of AnalysisLogEntry from a JSON string
analysis_log_entry_instance = AnalysisLogEntry.from_json(json)
# print the JSON string representation of the object
print(AnalysisLogEntry.to_json())

# convert the object into a dict
analysis_log_entry_dict = analysis_log_entry_instance.to_dict()
# create an instance of AnalysisLogEntry from a dict
analysis_log_entry_from_dict = AnalysisLogEntry.from_dict(analysis_log_entry_dict)

[Back to Model list] [Back to API list] [Back to README]