Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1018 Bytes

File metadata and controls

31 lines (22 loc) · 1018 Bytes

ScheduleRequest

Properties

Name Type Description Notes
rel_obj_id str [optional]
crontab str When to schedule tasks
paused bool Pause this schedule [optional]

Example

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]