mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
1.1 KiB
1.1 KiB
Repeat
Repeat options.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| type | RepeatType | [optional] | |
| interval_type | IntervalType | [optional] | |
| interval_length | int | Number of `intervalTypes` to wait before reactivating the alert suppression window. | [optional] |
| days_of_week | **List[DaysOfWeek]** | [optional] |
Example
from thousandeyes_sdk.alerts.models.repeat import Repeat
# TODO update the JSON string below
json = "{}"
# create an instance of Repeat from a JSON string
repeat_instance = Repeat.from_json(json)
# print the JSON string representation of the object
print(Repeat.to_json())
# convert the object into a dict
repeat_dict = repeat_instance.to_dict()
# create an instance of Repeat from a dict
repeat_from_dict = Repeat.from_dict(repeat_dict)