thousandeyes-sdk-python/thousandeyes-sdk-instant-tests/docs/TestTag.md
Miguel Pragosa 23bfb1d946
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#158)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-06-23 11:11:56 +01:00

1.0 KiB

TestTag

Properties

Name Type Description Notes
id str Unique tag ID. [optional]
key str Tag key. For example, &quot;Location&quot; or &quot;Department&quot;. [optional]
value str Tag value. For example, &quot;San Francisco&quot; or &quot;Engineering&quot;. [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]