thousandeyes-sdk-python/thousandeyes-sdk-agents/docs/AgentTag.md
2026-04-23 12:42:13 +00:00

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)

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