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

34 lines
1.1 KiB
Markdown

# Repeat
Repeat options.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | [**RepeatType**](RepeatType.md) | | [optional]
**interval_type** | [**IntervalType**](IntervalType.md) | | [optional]
**interval_length** | **int** | Number of `intervalTypes` to wait before reactivating the alert suppression window. | [optional]
**days_of_week** | [**List[DaysOfWeek]**](DaysOfWeek.md) | | [optional]
## Example
```python
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)