mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 22:36:52 +00:00
31 lines
1.2 KiB
Markdown
31 lines
1.2 KiB
Markdown
# ApiCatalogProviderResponse
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**providers** | [**List[ApiCatalogProvider]**](ApiCatalogProvider.md) | List of catalog providers. | [optional]
|
|
**links** | [**SelfLinks**](SelfLinks.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.internet_insights.models.api_catalog_provider_response import ApiCatalogProviderResponse
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of ApiCatalogProviderResponse from a JSON string
|
|
api_catalog_provider_response_instance = ApiCatalogProviderResponse.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(ApiCatalogProviderResponse.to_json())
|
|
|
|
# convert the object into a dict
|
|
api_catalog_provider_response_dict = api_catalog_provider_response_instance.to_dict()
|
|
# create an instance of ApiCatalogProviderResponse from a dict
|
|
api_catalog_provider_response_from_dict = ApiCatalogProviderResponse.from_dict(api_catalog_provider_response_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)
|
|
|
|
|