mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-06-19 17:36:51 +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
AgentTag
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | 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.agents.models.agent_tag import AgentTag
# TODO update the JSON string below
json = "{}"
# create an instance of AgentTag from a JSON string
agent_tag_instance = AgentTag.from_json(json)
# print the JSON string representation of the object
print(AgentTag.to_json())
# convert the object into a dict
agent_tag_dict = agent_tag_instance.to_dict()
# create an instance of AgentTag from a dict
agent_tag_from_dict = AgentTag.from_dict(agent_tag_dict)