thousandeyes-sdk-python/alerts/docs/Repeat.md

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

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