thousandeyes-sdk-python/thousandeyes-sdk-dashboards/docs/DashboardScheduleCronSpecBase.md
api-team-automation[bot] f9d21e46b5
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#188)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-08-27 14:20:49 +01:00

34 lines
1.5 KiB
Markdown

# DashboardScheduleCronSpecBase
Common properties for a dashboard snapshot schedule recurrence.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**start_time** | **int** | Schedule start time as a Unix timestamp in seconds. |
**zone_code** | **str** | An IANA time zone identifier used to interpret &#x60;startTime&#x60; and recurrence. For example, &#x60;America/Los_Angeles&#x60;. |
**repeat** | [**DashboardScheduleRepeat**](DashboardScheduleRepeat.md) | |
**end_repeat** | [**DashboardScheduleEndCondition**](DashboardScheduleEndCondition.md) | | [optional]
## Example
```python
from thousandeyes_sdk.dashboards.models.dashboard_schedule_cron_spec_base import DashboardScheduleCronSpecBase
# TODO update the JSON string below
json = "{}"
# create an instance of DashboardScheduleCronSpecBase from a JSON string
dashboard_schedule_cron_spec_base_instance = DashboardScheduleCronSpecBase.from_json(json)
# print the JSON string representation of the object
print(DashboardScheduleCronSpecBase.to_json())
# convert the object into a dict
dashboard_schedule_cron_spec_base_dict = dashboard_schedule_cron_spec_base_instance.to_dict()
# create an instance of DashboardScheduleCronSpecBase from a dict
dashboard_schedule_cron_spec_base_from_dict = DashboardScheduleCronSpecBase.from_dict(dashboard_schedule_cron_spec_base_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)