Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 778 Bytes

File metadata and controls

29 lines (20 loc) · 778 Bytes

Logs

Properties

Name Type Description Notes
logs str Full logs of an analysis of an analysis_id

Example

from revengai.models.logs import Logs

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

# convert the object into a dict
logs_dict = logs_instance.to_dict()
# create an instance of Logs from a dict
logs_from_dict = Logs.from_dict(logs_dict)

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