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

1.5 KiB

V7EndpointLabelsPost201Response

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]
links SelfLinksLinks [optional]

Example

from labels_api.models.v7_endpoint_labels_post201_response import V7EndpointLabelsPost201Response

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

# convert the object into a dict
v7_endpoint_labels_post201_response_dict = v7_endpoint_labels_post201_response_instance.to_dict()
# create an instance of V7EndpointLabelsPost201Response from a dict
v7_endpoint_labels_post201_response_form_dict = v7_endpoint_labels_post201_response.from_dict(v7_endpoint_labels_post201_response_dict)

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