mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.1 KiB
1.1 KiB
WebTransactionTests
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| tests | **List[UnexpandedWebTransactionTest]** | [optional] | |
| links | SelfLinks | [optional] |
Example
from thousandeyes_sdk.tests.models.web_transaction_tests import WebTransactionTests
# TODO update the JSON string below
json = "{}"
# create an instance of WebTransactionTests from a JSON string
web_transaction_tests_instance = WebTransactionTests.from_json(json)
# print the JSON string representation of the object
print(WebTransactionTests.to_json())
# convert the object into a dict
web_transaction_tests_dict = web_transaction_tests_instance.to_dict()
# create an instance of WebTransactionTests from a dict
web_transaction_tests_from_dict = WebTransactionTests.from_dict(web_transaction_tests_dict)