mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.4 KiB
1.4 KiB
ApiDashboardAsw
Alert suppression window shown in a widget.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Identifier of the alert suppression window. | [optional] |
| name | str | Name of the alert suppression window. | [optional] |
| test_ids | List[str] | [optional] | |
| start_times | List[datetime] | [optional] | |
| duration_in_seconds | int | [optional] | |
| repeat | AswRepeat | [optional] | |
| repeat_every | int | [optional] | |
| repeat_unit | AswRepeatUnit | [optional] |
Example
from dashboards.models.api_dashboard_asw import ApiDashboardAsw
# TODO update the JSON string below
json = "{}"
# create an instance of ApiDashboardAsw from a JSON string
api_dashboard_asw_instance = ApiDashboardAsw.from_json(json)
# print the JSON string representation of the object
print(ApiDashboardAsw.to_json())
# convert the object into a dict
api_dashboard_asw_dict = api_dashboard_asw_instance.to_dict()
# create an instance of ApiDashboardAsw from a dict
api_dashboard_asw_from_dict = ApiDashboardAsw.from_dict(api_dashboard_asw_dict)