mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
952 B
952 B
AppLinksLinks
A links object containing the ThousandEyes App link
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| app_link | Link | [optional] |
Example
from test_results_api.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_form_dict = app_links_links.from_dict(app_links_links_dict)