| Name | Type | Description | Notes |
|---|---|---|---|
| events | List[ReportEvent] | [optional] | |
| path | str |
fromrevengai.models.file_activity_entryimportFileActivityEntry# TODO update the JSON string belowjson="{}"# create an instance of FileActivityEntry from a JSON stringfile_activity_entry_instance=FileActivityEntry.from_json(json)
# print the JSON string representation of the objectprint(FileActivityEntry.to_json())
# convert the object into a dictfile_activity_entry_dict=file_activity_entry_instance.to_dict()
# create an instance of FileActivityEntry from a dictfile_activity_entry_from_dict=FileActivityEntry.from_dict(file_activity_entry_dict)