Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.13 KB

File metadata and controls

36 lines (27 loc) · 1.13 KB

ReportEvent

Properties

Name Type Description Notes
api_calls List[ApiCall] [optional]
count int [optional]
desired_access List[str] [optional]
process_seqid int [optional]
total_bytes int [optional]
type str
value str [optional]
value_name str [optional]

Example

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)

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