mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 08:03:56 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.3 KiB
1.3 KiB
DashboardScheduleDateEndCondition
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| end_condition_type | str | Identifies a schedule that ends on a specified date. | |
| value | int | Unix timestamp in seconds when the recurrence ends. |
Example
from thousandeyes_sdk.dashboards.models.dashboard_schedule_date_end_condition import DashboardScheduleDateEndCondition
# TODO update the JSON string below
json = "{}"
# create an instance of DashboardScheduleDateEndCondition from a JSON string
dashboard_schedule_date_end_condition_instance = DashboardScheduleDateEndCondition.from_json(json)
# print the JSON string representation of the object
print(DashboardScheduleDateEndCondition.to_json())
# convert the object into a dict
dashboard_schedule_date_end_condition_dict = dashboard_schedule_date_end_condition_instance.to_dict()
# create an instance of DashboardScheduleDateEndCondition from a dict
dashboard_schedule_date_end_condition_from_dict = DashboardScheduleDateEndCondition.from_dict(dashboard_schedule_date_end_condition_dict)