thousandeyes-sdk-python/dashboards/docs/ApiContextFilterResponse.md

1.9 KiB

ApiContextFilterResponse

Response containing dashboard filter settings and context details.

Properties

Name Type Description Notes
links SelfLinksLinks [optional]
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]

Example

from 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)

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