mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
934 B
934 B
Filter
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| key | FilterType | [optional] | |
| values | List[str] | [optional] | |
| mode | LabelFilterMode | [optional] |
Example
from thousandeyes_sdk.endpoint_labels.models.filter import Filter
# TODO update the JSON string below
json = "{}"
# create an instance of Filter from a JSON string
filter_instance = Filter.from_json(json)
# print the JSON string representation of the object
print(Filter.to_json())
# convert the object into a dict
filter_dict = filter_instance.to_dict()
# create an instance of Filter from a dict
filter_from_dict = Filter.from_dict(filter_dict)