mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
31 lines
913 B
Markdown
31 lines
913 B
Markdown
# AgentLabel
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**label_id** | **str** | Label Id. | [optional]
|
|
**name** | **str** | Name of the label. | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
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)
|
|
```
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|