thousandeyes-sdk-python/thousandeyes-sdk-admin/docs/UserEvent.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

37 lines
1.4 KiB
Markdown

# 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]**](Resource.md) | | [optional]
## Example
```python
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)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)