thousandeyes-sdk-python/thousandeyes-sdk-instant-tests/docs/TestTag.md
2026-06-19 11:09:40 +00:00

1.0 KiB

TestTag

Properties

Name Type Description Notes
id str Unique tag ID. [optional]
key str Tag key. For example, "Location" or "Department". [optional]
value str Tag value. For example, "San Francisco" or "Engineering". [optional]

Example

from thousandeyes_sdk.instant_tests.models.test_tag import TestTag

# TODO update the JSON string below
json = "{}"
# create an instance of TestTag from a JSON string
test_tag_instance = TestTag.from_json(json)
# print the JSON string representation of the object
print(TestTag.to_json())

# convert the object into a dict
test_tag_dict = test_tag_instance.to_dict()
# create an instance of TestTag from a dict
test_tag_from_dict = TestTag.from_dict(test_tag_dict)

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