thousandeyes-sdk-python/thousandeyes-sdk-event-detection/docs/AgentEventGrouping.md
2026-07-28 15:43:23 +00:00

30 lines
1.1 KiB
Markdown

# AgentEventGrouping
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**agent_id** | **str** | Agent identifier (for agent events). Represents the machine ID for Endpoint Agents or the virtual agent ID for Cloud and Enterprise Agents'. | [optional] [readonly]
## Example
```python
from thousandeyes_sdk.event_detection.models.agent_event_grouping import AgentEventGrouping
# TODO update the JSON string below
json = "{}"
# create an instance of AgentEventGrouping from a JSON string
agent_event_grouping_instance = AgentEventGrouping.from_json(json)
# print the JSON string representation of the object
print(AgentEventGrouping.to_json())
# convert the object into a dict
agent_event_grouping_dict = agent_event_grouping_instance.to_dict()
# create an instance of AgentEventGrouping from a dict
agent_event_grouping_from_dict = AgentEventGrouping.from_dict(agent_event_grouping_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)