mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 16:13:55 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
32 lines
1.4 KiB
Markdown
32 lines
1.4 KiB
Markdown
# DashboardScheduleCustomRepeat
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**repeat_every** | **int** | Interval count for custom recurrence. |
|
|
**days_of_week** | **List[int]** | Days of the week for custom weekly recurrence (`1` = Monday through `7` = Sunday). | [optional]
|
|
**repeat_unit** | [**DashboardScheduleCustomRepeatUnit**](DashboardScheduleCustomRepeatUnit.md) | |
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.dashboards.models.dashboard_schedule_custom_repeat import DashboardScheduleCustomRepeat
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of DashboardScheduleCustomRepeat from a JSON string
|
|
dashboard_schedule_custom_repeat_instance = DashboardScheduleCustomRepeat.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(DashboardScheduleCustomRepeat.to_json())
|
|
|
|
# convert the object into a dict
|
|
dashboard_schedule_custom_repeat_dict = dashboard_schedule_custom_repeat_instance.to_dict()
|
|
# create an instance of DashboardScheduleCustomRepeat from a dict
|
|
dashboard_schedule_custom_repeat_from_dict = DashboardScheduleCustomRepeat.from_dict(dashboard_schedule_custom_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)
|
|
|
|
|