mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.5 KiB
1.5 KiB
ApiMultiSearchFilterApiTestTableFilterKey
A multi search filter key within the Multi-Metric table widget. The key represents the filter name, and the value specifies the filter value.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| key | TestTableFilterKey | [optional] | |
| value | str | [optional] |
Example
from thousandeyes_sdk.dashboards.models.api_multi_search_filter_api_test_table_filter_key import ApiMultiSearchFilterApiTestTableFilterKey
# TODO update the JSON string below
json = "{}"
# create an instance of ApiMultiSearchFilterApiTestTableFilterKey from a JSON string
api_multi_search_filter_api_test_table_filter_key_instance = ApiMultiSearchFilterApiTestTableFilterKey.from_json(json)
# print the JSON string representation of the object
print(ApiMultiSearchFilterApiTestTableFilterKey.to_json())
# convert the object into a dict
api_multi_search_filter_api_test_table_filter_key_dict = api_multi_search_filter_api_test_table_filter_key_instance.to_dict()
# create an instance of ApiMultiSearchFilterApiTestTableFilterKey from a dict
api_multi_search_filter_api_test_table_filter_key_from_dict = ApiMultiSearchFilterApiTestTableFilterKey.from_dict(api_multi_search_filter_api_test_table_filter_key_dict)