thousandeyes-sdk-python/thousandeyes-sdk-dashboards/docs/ApiContextFilterRequest.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.3 KiB

ApiContextFilterRequest

Request containing dashboard filter name, description and context details.

Properties

Name Type Description Notes
context **List[ApiDataSourceFilters]** List of filters to be applied to a dashboard.
name str The name of the dashboard filter, this must be unique.
description str An optional description of the filter. [optional]

Example

from thousandeyes_sdk.dashboards.models.api_context_filter_request import ApiContextFilterRequest

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

# convert the object into a dict
api_context_filter_request_dict = api_context_filter_request_instance.to_dict()
# create an instance of ApiContextFilterRequest from a dict
api_context_filter_request_from_dict = ApiContextFilterRequest.from_dict(api_context_filter_request_dict)

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