| Name | Type | Description | Notes |
|---|---|---|---|
| api_calls | List[ApiCall] | [optional] | |
| process_seqid | int | [optional] | |
| total_bytes_requested | int | [optional] | |
| type | str | ||
| value | str | [optional] | |
| value_name | str | [optional] | |
| write_count | int | [optional] |
from revengai.models.report_event import ReportEvent
# TODO update the JSON string below
json = "{}"
# create an instance of ReportEvent from a JSON string
report_event_instance = ReportEvent.from_json(json)
# print the JSON string representation of the object
print(ReportEvent.to_json())
# convert the object into a dict
report_event_dict = report_event_instance.to_dict()
# create an instance of ReportEvent from a dict
report_event_from_dict = ReportEvent.from_dict(report_event_dict)