mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
867 B
867 B
UserEvents
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| audit_events | **List[UserEvent]** | [optional] |
Example
from admin_api.models.user_events import UserEvents
# TODO update the JSON string below
json = "{}"
# create an instance of UserEvents from a JSON string
user_events_instance = UserEvents.from_json(json)
# print the JSON string representation of the object
print UserEvents.to_json()
# convert the object into a dict
user_events_dict = user_events_instance.to_dict()
# create an instance of UserEvents from a dict
user_events_form_dict = user_events.from_dict(user_events_dict)