thousandeyes-sdk-python/test_results_api/docs/AppLinksLinks.md
2023-12-11 09:29:15 +00:00

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)

[Back to Model list] [Back to API list] [Back to README]