thousandeyes-sdk-python/test_results/docs/AppLinksLinks.md

31 lines
948 B
Markdown

# AppLinksLinks
A links object containing the ThousandEyes App link
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**app_link** | [**Link**](Link.md) | | [optional]
## Example
```python
from test_results.models.app_links_links import AppLinksLinks
# TODO update the JSON string below
json = "{}"
# create an instance of AppLinksLinks from a JSON string
app_links_links_instance = AppLinksLinks.from_json(json)
# print the JSON string representation of the object
print(AppLinksLinks.to_json())
# convert the object into a dict
app_links_links_dict = app_links_links_instance.to_dict()
# create an instance of AppLinksLinks from a dict
app_links_links_from_dict = AppLinksLinks.from_dict(app_links_links_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)