thousandeyes-sdk-python/thousandeyes-sdk-alerts/docs/Repeat.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.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)

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