mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
948 B
948 B
AppLinksLinks
A links object containing the ThousandEyes App link
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| app_link | Link | [optional] |
Example
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)