thousandeyes-sdk-python/endpoint/labels_api/docs/Label.md
2023-12-11 09:29:15 +00:00

1.1 KiB

Label

A label definition.

Properties

Name Type Description Notes
id str Label identifier. [optional] [readonly]
name str The label name. [optional]
color str UI color [optional]
match_type MatchType [optional]
filters **List[Filter]** The filters combined using the matchType to determine the label's match. [optional]

Example

from labels_api.models.label import Label

# TODO update the JSON string below
json = "{}"
# create an instance of Label from a JSON string
label_instance = Label.from_json(json)
# print the JSON string representation of the object
print Label.to_json()

# convert the object into a dict
label_dict = label_instance.to_dict()
# create an instance of Label from a dict
label_form_dict = label.from_dict(label_dict)

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