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>
30 lines
1.2 KiB
Markdown
30 lines
1.2 KiB
Markdown
# DashboardScheduleCronSpecBaseNot
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**repeat** | [**DashboardScheduleOneTimeRepeatType**](DashboardScheduleOneTimeRepeatType.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.dashboards.models.dashboard_schedule_cron_spec_base_not import DashboardScheduleCronSpecBaseNot
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of DashboardScheduleCronSpecBaseNot from a JSON string
|
|
dashboard_schedule_cron_spec_base_not_instance = DashboardScheduleCronSpecBaseNot.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(DashboardScheduleCronSpecBaseNot.to_json())
|
|
|
|
# convert the object into a dict
|
|
dashboard_schedule_cron_spec_base_not_dict = dashboard_schedule_cron_spec_base_not_instance.to_dict()
|
|
# create an instance of DashboardScheduleCronSpecBaseNot from a dict
|
|
dashboard_schedule_cron_spec_base_not_from_dict = DashboardScheduleCronSpecBaseNot.from_dict(dashboard_schedule_cron_spec_base_not_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)
|
|
|
|
|