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
TestTemplateCollection
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| templates | **List[TestTemplate]** | [optional] | |
| links | TestTemplateCollectionLinks | [optional] |
Example
from test_templates_api.models.test_template_collection import TestTemplateCollection
# TODO update the JSON string below
json = "{}"
# create an instance of TestTemplateCollection from a JSON string
test_template_collection_instance = TestTemplateCollection.from_json(json)
# print the JSON string representation of the object
print TestTemplateCollection.to_json()
# convert the object into a dict
test_template_collection_dict = test_template_collection_instance.to_dict()
# create an instance of TestTemplateCollection from a dict
test_template_collection_form_dict = test_template_collection.from_dict(test_template_collection_dict)