mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
1.1 KiB
1.1 KiB
LabelRequest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Label identifier. | [optional] [readonly] |
| name | str | The label name. | |
| color | str | UI color | [optional] |
| match_type | MatchType | ||
| filters | **List[Filter]** | The filters combined using the matchType to determine the label's match. |
Example
from thousandeyes_sdk.endpoint_labels.models.label_request import LabelRequest
# TODO update the JSON string below
json = "{}"
# create an instance of LabelRequest from a JSON string
label_request_instance = LabelRequest.from_json(json)
# print the JSON string representation of the object
print(LabelRequest.to_json())
# convert the object into a dict
label_request_dict = label_request_instance.to_dict()
# create an instance of LabelRequest from a dict
label_request_from_dict = LabelRequest.from_dict(label_request_dict)