mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
1.4 KiB
1.4 KiB
UserEvent
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| aid | str | A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. | [optional] |
| account_group_name | str | Account group name | [optional] |
| var_date | datetime | UTC event date (ISO date-time format). | [optional] |
| event | str | Event type. | [optional] |
| ip_address | str | Source IP address of the user. | [optional] |
| uid | str | Unique id representing the user. | [optional] |
| user | str | The name and email address of the user. | [optional] |
| resources | **List[Resource]** | [optional] |
Example
from thousandeyes_sdk.admin.models.user_event import UserEvent
# TODO update the JSON string below
json = "{}"
# create an instance of UserEvent from a JSON string
user_event_instance = UserEvent.from_json(json)
# print the JSON string representation of the object
print(UserEvent.to_json())
# convert the object into a dict
user_event_dict = user_event_instance.to_dict()
# create an instance of UserEvent from a dict
user_event_from_dict = UserEvent.from_dict(user_event_dict)