mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
913 B
913 B
AgentLabel
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| label_id | str | Label Id. | [optional] |
| name | str | Name of the label. | [optional] |
Example
from thousandeyes_sdk.agents.models.agent_label import AgentLabel
# TODO update the JSON string below
json = "{}"
# create an instance of AgentLabel from a JSON string
agent_label_instance = AgentLabel.from_json(json)
# print the JSON string representation of the object
print(AgentLabel.to_json())
# convert the object into a dict
agent_label_dict = agent_label_instance.to_dict()
# create an instance of AgentLabel from a dict
agent_label_from_dict = AgentLabel.from_dict(agent_label_dict)