| Name |
Type |
Description |
Notes |
| rel_obj_id |
str |
|
[optional] |
| crontab |
str |
When to schedule tasks |
|
| paused |
bool |
Pause this schedule |
[optional] |
from authentik_client.models.schedule_request import ScheduleRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ScheduleRequest from a JSON string
schedule_request_instance = ScheduleRequest.from_json(json)
# print the JSON string representation of the object
print(ScheduleRequest.to_json())
# convert the object into a dict
schedule_request_dict = schedule_request_instance.to_dict()
# create an instance of ScheduleRequest from a dict
schedule_request_from_dict = ScheduleRequest.from_dict(schedule_request_dict)
[Back to Model list] [Back to API list] [Back to README]