thousandeyes-sdk-python/thousandeyes-sdk-internet-insights/docs/InternetInsightsApiAffectedAgent.md
2024-09-25 07:39:02 +00:00

31 lines
1.2 KiB
Markdown

# InternetInsightsApiAffectedAgent
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **int** | | [optional]
**name** | **str** | | [optional]
## Example
```python
from thousandeyes_sdk.internet_insights.models.internet_insights_api_affected_agent import InternetInsightsApiAffectedAgent
# TODO update the JSON string below
json = "{}"
# create an instance of InternetInsightsApiAffectedAgent from a JSON string
internet_insights_api_affected_agent_instance = InternetInsightsApiAffectedAgent.from_json(json)
# print the JSON string representation of the object
print(InternetInsightsApiAffectedAgent.to_json())
# convert the object into a dict
internet_insights_api_affected_agent_dict = internet_insights_api_affected_agent_instance.to_dict()
# create an instance of InternetInsightsApiAffectedAgent from a dict
internet_insights_api_affected_agent_from_dict = InternetInsightsApiAffectedAgent.from_dict(internet_insights_api_affected_agent_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)