Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 930 Bytes

Schedule.md

File metadata and controls

32 lines (23 loc) · 930 Bytes

Schedule

Properties

Name Type Description Notes
id int [optional]
cron_format str [optional]
project_id int [optional]
template_id int [optional]

Example

from semaphore_api.models.schedule import Schedule

# TODO update the JSON string below
json = "{}"
# create an instance of Schedule from a JSON string
schedule_instance = Schedule.from_json(json)
# print the JSON string representation of the object
print(Schedule.to_json())

# convert the object into a dict
schedule_dict = schedule_instance.to_dict()
# create an instance of Schedule from a dict
schedule_from_dict = Schedule.from_dict(schedule_dict)

[Back to Model list] [Back to API list] [Back to README]