| Name | Type | Description | Notes |
|---|---|---|---|
| logs | str | Full logs of an analysis of an analysis_id |
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)