mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 08:56:50 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.0 KiB
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)