You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sub event Object ### Description The SubEvent object is used to represent a subevent. ### Usage Example Fetch from the LIST Events endpoint.
Properties
Name
Type
Description
Notes
sub_event_type
str
The subevent type.
Example
fromopal_security.models.sub_eventimportSubEvent# TODO update the JSON string belowjson="{}"# create an instance of SubEvent from a JSON stringsub_event_instance=SubEvent.from_json(json)
# print the JSON string representation of the objectprint(SubEvent.to_json())
# convert the object into a dictsub_event_dict=sub_event_instance.to_dict()
# create an instance of SubEvent from a dictsub_event_from_dict=SubEvent.from_dict(sub_event_dict)