mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
31 lines
1.2 KiB
Markdown
31 lines
1.2 KiB
Markdown
# InternetInsightsApiAffectedTest
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**id** | **int** | | [optional]
|
|
**name** | **str** | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.internet_insights.models.internet_insights_api_affected_test import InternetInsightsApiAffectedTest
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of InternetInsightsApiAffectedTest from a JSON string
|
|
internet_insights_api_affected_test_instance = InternetInsightsApiAffectedTest.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(InternetInsightsApiAffectedTest.to_json())
|
|
|
|
# convert the object into a dict
|
|
internet_insights_api_affected_test_dict = internet_insights_api_affected_test_instance.to_dict()
|
|
# create an instance of InternetInsightsApiAffectedTest from a dict
|
|
internet_insights_api_affected_test_from_dict = InternetInsightsApiAffectedTest.from_dict(internet_insights_api_affected_test_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)
|
|
|
|
|