The schedule of auto-update configured by admin.
| Name | Type | Description | Notes |
|---|---|---|---|
| cron | str | [optional] | |
| delay | int | delay in days | [optional] |
| duration | int | duration in minutes | [optional] |
| last_updated | datetime | last time when the updated finished (success or failed, exclude cancelled), null if job haven't finished once yet. | [optional] |
| timezone | str | [optional] |
from okta.models.auto_update_schedule import AutoUpdateSchedule
# TODO update the JSON string below
json = "{}"
# create an instance of AutoUpdateSchedule from a JSON string
auto_update_schedule_instance = AutoUpdateSchedule.from_json(json)
# print the JSON string representation of the object
print(AutoUpdateSchedule.to_json())
# convert the object into a dict
auto_update_schedule_dict = auto_update_schedule_instance.to_dict()
# create an instance of AutoUpdateSchedule from a dict
auto_update_schedule_from_dict = AutoUpdateSchedule.from_dict(auto_update_schedule_dict)