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

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)

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