mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
1.9 KiB
1.9 KiB
ApiContextFilterResponse
Response containing dashboard filter settings and context details.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| context | **List[ApiDataSourceFilters]** | List of filters to be applied to a dashboard. | |
| aid | str | Account group ID of the filter. | |
| id | str | Unique ID of the dashboard filter. | |
| name | str | The name of the dashboard filter, this must be unique. | |
| description | str | An optional description of the filter. | [optional] |
| created_by | ApiDashboardFilterUserDetails | [optional] | |
| modified_date | datetime | Timestamp when the filter was last modified. | [optional] |
| created_date | datetime | Timestamp when the filter was created. | [optional] |
| modified_by | ApiDashboardFilterUserDetails | [optional] | |
| links | SelfLinks | [optional] |
Example
from thousandeyes_sdk.dashboards.models.api_context_filter_response import ApiContextFilterResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ApiContextFilterResponse from a JSON string
api_context_filter_response_instance = ApiContextFilterResponse.from_json(json)
# print the JSON string representation of the object
print(ApiContextFilterResponse.to_json())
# convert the object into a dict
api_context_filter_response_dict = api_context_filter_response_instance.to_dict()
# create an instance of ApiContextFilterResponse from a dict
api_context_filter_response_from_dict = ApiContextFilterResponse.from_dict(api_context_filter_response_dict)